Uses of Class
com.alee.extended.label.WebStyledLabel

Packages that use WebStyledLabel
com.alee.extended.label   
 

Uses of WebStyledLabel in com.alee.extended.label
 

Classes in com.alee.extended.label with type parameters of type WebStyledLabel
 class AdaptiveStyledLabelPainter<E extends WebStyledLabel>
          Simple StyledLabelPainter adapter class.
 interface StyledLabelPainter<E extends WebStyledLabel>
          Base interface for WebStyledLabel component painters.
 class WebStyledLabelPainter<E extends WebStyledLabel>
           
 

Fields in com.alee.extended.label declared as WebStyledLabel
protected  WebStyledLabel WebStyledLabelUI.label
           
 

Methods in com.alee.extended.label that return WebStyledLabel
 WebStyledLabel WebStyledLabel.changeFontSize(int change)
          Changes font size of the specified component.
 WebStyledLabel WebStyledLabel.setBoldFont()
          Sets bold font for the component.
 WebStyledLabel WebStyledLabel.setBoldFont(boolean apply)
          Sets bold font for the component.
 WebStyledLabel WebStyledLabel.setFontName(java.lang.String fontName)
          Sets component font name.
 WebStyledLabel WebStyledLabel.setFontSize(int fontSize)
          Sets component font size.
 WebStyledLabel WebStyledLabel.setFontSizeAndStyle(int fontSize, boolean bold, boolean italic)
          Sets font size and style for the specified component.
 WebStyledLabel WebStyledLabel.setFontSizeAndStyle(int fontSize, int style)
          Sets font size and style for the specified component.
 WebStyledLabel WebStyledLabel.setFontStyle(boolean bold, boolean italic)
          Sets component font style.
 WebStyledLabel WebStyledLabel.setFontStyle(int style)
          Sets component font style.
 WebStyledLabel WebStyledLabel.setItalicFont()
          Sets italic or plain font for the component.
 WebStyledLabel WebStyledLabel.setItalicFont(boolean apply)
          Sets italic or plain font for the component.
 WebStyledLabel WebStyledLabel.setMargin(java.awt.Insets margin)
          Sets label margin.
 WebStyledLabel WebStyledLabel.setMargin(int spacing)
          Sets label margin.
 WebStyledLabel WebStyledLabel.setMargin(int top, int left, int bottom, int right)
          Sets label margin.
 WebStyledLabel WebStyledLabel.setPainter(Painter painter)
          Sets label painter.
 WebStyledLabel WebStyledLabel.setPlainFont()
          Sets plain font for the component.
 WebStyledLabel WebStyledLabel.setPlainFont(boolean apply)
          Sets plain font for the component.
 

Methods in com.alee.extended.label with parameters of type WebStyledLabel
static void StyledLabelUtils.buildTextRanges(WebStyledLabel label, java.util.List<TextRange> textRanges)
          Parses label style ranges into text ranges.
static java.awt.Font StyledLabelUtils.getFont(WebStyledLabel label)
          Returns label custom font if exists or default label font otherwise.
static java.lang.String StyledLabelUtils.layoutCompoundLabel(WebStyledLabel label, java.lang.String text, javax.swing.Icon icon, int verticalAlignment, int horizontalAlignment, int verticalTextPosition, int horizontalTextPosition, java.awt.Rectangle viewR, java.awt.Rectangle iconR, java.awt.Rectangle textR, int textIconGap)
          Computes compound label icon and text positions relative to viewR rectangle.