Package org.pushingpixels.flamingo.api.common

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


          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

Related Classes of org.pushingpixels.flamingo.api.common.RichTooltip

Copyright © 2018 www.massapicom. 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.