Uses of Interface
bibliothek.gui.dock.util.font.FontModifier

Packages that use FontModifier
bibliothek.extension.gui.dock.theme.bubble Various graphical and logical components used when BubbleTheme is active. 
bibliothek.extension.gui.dock.theme.flat Various graphical and logical components needed to paint the layout when FlatTheme is active. 
bibliothek.gui.dock.common A set of classes that can be used to create basic applications. 
bibliothek.gui.dock.common.event Various listeners and adapters that can be added to CControl, CDockable and other classes associated with them. 
bibliothek.gui.dock.common.intern.font Various implementations of FontBridge to transfer fonts stored in a FontMap
bibliothek.gui.dock.themes.font Implementations of DockFont to be used at different places (as described in the documentation for each item). 
bibliothek.gui.dock.title Elements needed to paint the title of a Dockable
bibliothek.gui.dock.util.font The font-subsystem is used to define the fonts that are used to paint text. 
bibliothek.gui.dock.util.swing Subclasses of swing-JComponents using the FontUpdater to modify their current font. 
 

Uses of FontModifier in bibliothek.extension.gui.dock.theme.bubble
 

Methods in bibliothek.extension.gui.dock.theme.bubble with parameters of type FontModifier
protected  void BubbleTab.BubbleTabFont.changed(FontModifier oldValue, FontModifier newValue)
           
 

Uses of FontModifier in bibliothek.extension.gui.dock.theme.flat
 

Methods in bibliothek.extension.gui.dock.theme.flat that return FontModifier
 FontModifier FlatTab.getFontModifier()
          Gets the font modifier of this tab.
 

Methods in bibliothek.extension.gui.dock.theme.flat with parameters of type FontModifier
 void FlatTab.setFontModifier(FontModifier modifier)
          Sets the modifier which modifies the font of this tab, this modifier may be replaced any time.
 

Uses of FontModifier in bibliothek.gui.dock.common
 

Methods in bibliothek.gui.dock.common that return FontModifier
 FontModifier FontMap.getFont(java.lang.String key)
          Gets the font which is associated with key.
 

Methods in bibliothek.gui.dock.common with parameters of type FontModifier
 void FontMap.setFont(java.lang.String key, FontModifier font)
          Sets the font for key.
 

Uses of FontModifier in bibliothek.gui.dock.common.event
 

Methods in bibliothek.gui.dock.common.event with parameters of type FontModifier
 void FontMapListener.fontChanged(FontMap map, java.lang.String key, FontModifier font)
          Called when a font changed.
 

Uses of FontModifier in bibliothek.gui.dock.common.intern.font
 

Methods in bibliothek.gui.dock.common.intern.font that return FontModifier
protected abstract  FontModifier FontTransmitter.get(FontModifier value, java.lang.String id, CDockable dockable)
          Transforms value into the form that should be used together with dockable.
protected  FontModifier ListFontTransmitter.get(FontModifier value, java.lang.String id, CDockable dockable)
           
protected  FontModifier ListFontTransmitter.get(FontModifier value, java.lang.String id, DockFont observer)
           
protected  FontModifier FontTransmitter.getFirstNonNull(FontMap map, java.lang.String... keys)
          Gets the first non- null color of map that matches a given key.
 

Methods in bibliothek.gui.dock.common.intern.font with parameters of type FontModifier
protected abstract  FontModifier FontTransmitter.get(FontModifier value, java.lang.String id, CDockable dockable)
          Transforms value into the form that should be used together with dockable.
protected  FontModifier ListFontTransmitter.get(FontModifier value, java.lang.String id, CDockable dockable)
           
protected  FontModifier ListFontTransmitter.get(FontModifier value, java.lang.String id, DockFont observer)
           
protected  void FontTransmitter.update(CDockable dockable, java.lang.String key, FontModifier value)
           
 

Uses of FontModifier in bibliothek.gui.dock.themes.font
 

Constructors in bibliothek.gui.dock.themes.font with parameters of type FontModifier
TabFont(java.lang.String id, DockStation station, Dockable dockable, FontModifier backup)
          Creates a new font
TabFont(java.lang.String id, Path kind, DockStation station, Dockable dockable, FontModifier backup)
          Creates a new font
TitleFont(java.lang.String id, DockTitle title, FontModifier backup)
          Creates a new title font.
TitleFont(java.lang.String id, DockTitle title, Path kind, FontModifier backup)
          Creates a new title font.
 

Uses of FontModifier in bibliothek.gui.dock.title
 

Methods in bibliothek.gui.dock.title with parameters of type FontModifier
protected  void AbstractDockTitle.addConditionalFont(java.lang.String id, Path kind, Condition condition, FontModifier backup)
          Adds a new conditional font to this title, the conditional font will be applied to AbstractDockTitle.setFont(Font) when its condition is met.
 void AbstractDockTitle.setFontModifier(FontModifier modifier)
           
 

Uses of FontModifier in bibliothek.gui.dock.util.font
 

Classes in bibliothek.gui.dock.util.font that implement FontModifier
 class ConstantFontModifier
          This FontModifier always returns the same Font
 class GenericFontModifier
          A FontModifier that can change a font in more than just one way.
 

Methods in bibliothek.gui.dock.util.font that return FontModifier
 FontModifier AbstractDockFont.font()
          Gets the FontModifier which is currently represented by this DockFont.
 

Constructors in bibliothek.gui.dock.util.font with parameters of type FontModifier
AbstractDockFont(java.lang.String id, FontModifier backup)
          Creates a new DockFont.
AbstractDockFont(java.lang.String id, Path kind, FontModifier backup)
          Creates a new DockFont.
 

Uses of FontModifier in bibliothek.gui.dock.util.swing
 

Methods in bibliothek.gui.dock.util.swing that return FontModifier
 FontModifier DComponent.getFontModifier()
          Gets the modifier which is used to update the font of this label.
 FontModifier DLabel.getFontModifier()
          Gets the modifier which is used to update the font of this label.
 FontModifier DPanel.getFontModifier()
          Gets the modifier which is used to update the font of this label.
 FontModifier FontUpdater.getFontModifier()
          Gets the modifier which is used to update the font of this label.
 FontModifier OrientedLabel.getFontModifier()
          Gets the font modifier of this label.
 

Methods in bibliothek.gui.dock.util.swing with parameters of type FontModifier
 void DComponent.setFontModifier(FontModifier modifier)
          Sets the modifier which is used to update the font of this label.
 void DLabel.setFontModifier(FontModifier modifier)
          Sets the modifier which is used to update the font of this label.
 void DPanel.setFontModifier(FontModifier modifier)
          Sets the modifier which is used to update the font of this label.
 void FontUpdater.setFontModifier(FontModifier modifier)
          Sets the modifier which is used to update the font of this label.
 void OrientedLabel.setFontModifier(FontModifier modifier)
          Sets the modifier for the current font.