Examples of RichTooltip


Examples of org.pushingpixels.flamingo.api.common.RichTooltip

   *            The new rich tooltip for the expand button of this ribbon
   *            band.
   * @see #getExpandButtonRichTooltip()
   */
  public void setExpandButtonRichTooltip(RichTooltip expandButtonRichTooltip) {
    RichTooltip old = this.expandButtonRichTooltip;
    this.expandButtonRichTooltip = expandButtonRichTooltip;
    this.firePropertyChange("expandButtonRichTooltip", old,
        this.expandButtonRichTooltip);
  }
View Full Code Here

Examples of org.pushingpixels.flamingo.api.common.RichTooltip

            tabButton.setBounds(x - finalWidth, y + 1, finalWidth,
                taskToggleButtonHeight - 1);
            x -= (finalWidth + tabButtonGap);
          }
          // show the tooltip with the full title
          RichTooltip tooltip = new RichTooltip();
          tooltip.setTitle(task.getTitle());
          tabButton.setActionRichTooltip(tooltip);
        }
        ((JComponent) c).putClientProperty(
            TaskToggleButtonsHostPanel.IS_SQUISHED, Boolean.TRUE);
      }
View Full Code Here

Examples of org.pushingpixels.flamingo.api.common.RichTooltip

   *            The rich tooltip of the application menu button.
   * @see #getApplicationMenuRichTooltip()
   * @see #setApplicationMenu(RibbonApplicationMenu)
   */
  public synchronized void setApplicationMenuRichTooltip(RichTooltip tooltip) {
    RichTooltip old = this.applicationMenuRichTooltip;
    this.applicationMenuRichTooltip = tooltip;
    this.firePropertyChange("applicationMenuRichTooltip", old,
        this.applicationMenuRichTooltip);
  }
View Full Code Here

Examples of org.pushingpixels.flamingo.api.common.RichTooltip

   *            The new rich tooltip for the expand button of this ribbon
   *            band.
   * @see #getExpandButtonRichTooltip()
   */
  public void setExpandButtonRichTooltip(RichTooltip expandButtonRichTooltip) {
    RichTooltip old = this.expandButtonRichTooltip;
    this.expandButtonRichTooltip = expandButtonRichTooltip;
    this.firePropertyChange("expandButtonRichTooltip", old,
        this.expandButtonRichTooltip);
  }
View Full Code Here

Examples of org.pushingpixels.flamingo.api.common.RichTooltip

          String demo = getStringOrNull(name+DEMO_SUFFIX);
          String doc = getStringOrNull(name+DOC_SUFFIX);
         
          if (doc != null)
            s = HyperLinkToolTip.helpTipText(s,help,demo, doc);
          b.setActionRichTooltip(new RichTooltip(" ", s));
        }
      } catch (MissingResourceException e) {
      }

     
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.