Uses of Interface
bibliothek.gui.dock.themes.ColorScheme

Packages that use ColorScheme
bibliothek.extension.gui.dock.theme Contains some DockThemes. 
bibliothek.extension.gui.dock.theme.bubble Various graphical and logical components used when BubbleTheme is active. 
bibliothek.extension.gui.dock.theme.eclipse Various graphical and logical components needed when the EclipseTheme 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.themes Contains an implementation of DockTheme and all classes which are neede by this theme. 
bibliothek.gui.dock.themes.basic Factories and classes used when the BasicTheme is active. 
bibliothek.gui.dock.themes.color The color subsystem allows each kind of element to get its colors from a central repository. 
 

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

Classes in bibliothek.extension.gui.dock.theme that implement ColorScheme
 class IdentifiedColorScheme
          A ColorScheme that is wrapped around another scheme.
 

Fields in bibliothek.extension.gui.dock.theme with type parameters of type ColorScheme
static PropertyKey<ColorScheme> BubbleTheme.BUBBLE_COLOR_SCHEME
          the key to set the ColorScheme of this theme
static PropertyKey<ColorScheme> EclipseTheme.ECLIPSE_COLOR_SCHEME
          Access to the ColorScheme used for this theme
static PropertyKey<ColorScheme> FlatTheme.FLAT_COLOR_SCHEME
          the key to set the ColorScheme of this theme
 

Constructors in bibliothek.extension.gui.dock.theme with parameters of type ColorScheme
IdentifiedColorScheme(String id, ColorScheme delegate)
          Creates a new scheme.
 

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

Classes in bibliothek.extension.gui.dock.theme.bubble that implement ColorScheme
 class BubbleColorScheme
          The standard color scheme for a BubbleTheme
 class SimpleBubbleColorScheme
          A color scheme that generates most of its colors from a small starting set of colors.
 

Fields in bibliothek.extension.gui.dock.theme.bubble declared as ColorScheme
static ColorScheme SimpleBubbleColorScheme.LOOK_AND_FEEL
          A scheme that uses colors from the LookAndFeel
 

Uses of ColorScheme in bibliothek.extension.gui.dock.theme.eclipse
 

Classes in bibliothek.extension.gui.dock.theme.eclipse that implement ColorScheme
 class EclipseColorScheme
          A ColorScheme used by the EclipseTheme.
 

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

Classes in bibliothek.extension.gui.dock.theme.flat that implement ColorScheme
 class FlatColorScheme
          A color scheme for FlatTheme.
 

Uses of ColorScheme in bibliothek.gui.dock.themes
 

Fields in bibliothek.gui.dock.themes with type parameters of type ColorScheme
static PropertyKey<ColorScheme> BasicTheme.BASIC_COLOR_SCHEME
          the key to set the ColorScheme of this theme
 

Methods in bibliothek.gui.dock.themes that return ColorScheme
 ColorScheme BasicTheme.getColorScheme()
          Gets the currently used color scheme
 

Methods in bibliothek.gui.dock.themes with parameters of type ColorScheme
 void BasicTheme.setColorScheme(ColorScheme colorScheme)
          Sets the currently used set of colors.
 

Method parameters in bibliothek.gui.dock.themes with type arguments of type ColorScheme
protected  void BasicTheme.setColorSchemeKey(PropertyKey<ColorScheme> key)
          Sets the key that will be used to read the ColorScheme of this theme from the DockProperties.
 

Uses of ColorScheme in bibliothek.gui.dock.themes.basic
 

Classes in bibliothek.gui.dock.themes.basic that implement ColorScheme
 class BasicColorScheme
          The ColorScheme that is used by the BasicTheme.
 

Uses of ColorScheme in bibliothek.gui.dock.themes.color
 

Classes in bibliothek.gui.dock.themes.color that implement ColorScheme
 class AbstractColorScheme
          This abstract ColorScheme stores listeners and UIProperties.
 class DefaultColorScheme
          The default implementation of ColorScheme just uses some maps to store its colors.
 class ExtendingColorScheme
          A ColorScheme that can be extended by additional ColorScheme.
 

Constructors in bibliothek.gui.dock.themes.color with parameters of type ColorScheme
ExtendingColorScheme(ColorScheme scheme, DockController controller)
          Creates a new scheme.