Uses of Interface
bibliothek.gui.DockTheme

Packages that use DockTheme
bibliothek.extension.gui.dock.theme   
bibliothek.extension.gui.dock.theme.bubble   
bibliothek.extension.gui.dock.theme.flat   
bibliothek.gui   
bibliothek.gui.dock.station   
bibliothek.gui.dock.themes   
 

Uses of DockTheme in bibliothek.extension.gui.dock.theme
 

Classes in bibliothek.extension.gui.dock.theme that implement DockTheme
 class BubbleTheme
          A theme using a lot of eye-candy.
 class FlatTheme
          A theme that uses very few borders.
 class SmoothTheme
          This theme uses the SmoothDefaultTitleFactory to create some titles which smoothly changes their color.
 

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

Methods in bibliothek.extension.gui.dock.theme.bubble with parameters of type DockTheme
protected  StackDockStation BubbleCombiner.createStackDockStation(DockTheme theme)
          Creates a new StackDockStation which will be populated with two Dockables.
 

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

Methods in bibliothek.extension.gui.dock.theme.flat with parameters of type DockTheme
protected  StackDockStation FlatCombiner.createStackDockStation(DockTheme theme)
          Creates a new StackDockStation which will be populated with two Dockables.
 

Uses of DockTheme in bibliothek.gui
 

Fields in bibliothek.gui declared as DockTheme
private  DockTheme DockController.theme
          a theme describing the look of the stations
 

Methods in bibliothek.gui that return DockTheme
 DockTheme DockStation.getTheme()
          Gets the current theme of this station.
 DockTheme DockController.getTheme()
          Gets the current theme of this controller.
 

Methods in bibliothek.gui with parameters of type DockTheme
 void DockController.setTheme(DockTheme theme)
          Sets the theme of this controller.
 

Method parameters in bibliothek.gui with type arguments of type DockTheme
 void DockUI.registerTheme(java.lang.Class<? extends DockTheme> theme, java.util.ResourceBundle bundle)
          Registers a factory for theme.
 

Uses of DockTheme in bibliothek.gui.dock.station
 

Fields in bibliothek.gui.dock.station declared as DockTheme
private  DockTheme SplitDockStation.theme
          The theme of this station
private  DockTheme AbstractDockableStation.theme
          The theme of this station
private  DockTheme AbstractDockStation.theme
          The theme of this station
 

Methods in bibliothek.gui.dock.station that return DockTheme
 DockTheme SplitDockStation.getTheme()
           
 DockTheme AbstractDockableStation.getTheme()
           
 DockTheme AbstractDockStation.getTheme()
           
 

Constructors in bibliothek.gui.dock.station with parameters of type DockTheme
AbstractDockableStation(DockTheme theme)
          Constructs a new station and sets the theme.
StackDockStation(DockTheme theme)
          Constructs a new station and sets the theme.
 

Uses of DockTheme in bibliothek.gui.dock.themes
 

Classes in bibliothek.gui.dock.themes that implement DockTheme
 class BasicTheme
          A theme that does not install anything and uses the default-implementations off all factories.
 class NoStackTheme
          A DockTheme that wraps another theme and ensures that there is no StackDockStation in another StackDockStation.
 

Fields in bibliothek.gui.dock.themes declared as DockTheme
private  DockTheme NoStackTheme.base
          The delegate theme to get the basic factories
 

Fields in bibliothek.gui.dock.themes with type parameters of type DockTheme
private  java.lang.reflect.Constructor<? extends DockTheme> ThemePropertyFactory.constructor
          Default constructor of the theme
 

Methods in bibliothek.gui.dock.themes that return DockTheme
 DockTheme ThemeFactory.create()
          Creates a new theme.
 DockTheme ThemePropertyFactory.create()
           
 

Method parameters in bibliothek.gui.dock.themes with type arguments of type DockTheme
static ThemeFactory NoStackTheme.getFactory(java.lang.Class<? extends DockTheme> theme, java.util.ResourceBundle bundle, DockUI ui)
          Creates a ThemeFactory for this theme encapsulating another theme.
 

Constructors in bibliothek.gui.dock.themes with parameters of type DockTheme
NoStackTheme(DockTheme base)
          Creates a new theme
 

Constructor parameters in bibliothek.gui.dock.themes with type arguments of type DockTheme
ThemePropertyFactory(java.lang.Class<? extends DockTheme> theme)
          Creates a new factory.
ThemePropertyFactory(java.lang.Class<? extends DockTheme> theme, DockUI ui)
          Creates a new factory.
ThemePropertyFactory(java.lang.Class<? extends DockTheme> theme, java.util.ResourceBundle bundle)
          Creates a new factory.
ThemePropertyFactory(java.lang.Class<? extends DockTheme> theme, java.util.ResourceBundle bundle, DockUI ui)
          Creates a new factory.