Uses of Interface
bibliothek.gui.dock.util.BackgroundPaint

Packages that use BackgroundPaint
bibliothek.gui The high level interfaces of the framework and the most often used classes. 
bibliothek.gui.dock.station.screen.window Contains the window ( JDialog, JInternalDialog, etc..) that shows the children of a ScreenDockStation and the classes required to configure that window. 
bibliothek.gui.dock.station.stack.menu Contains an abstract implementation of CombinedMenu including helper classes. 
bibliothek.gui.dock.themes Contains an implementation of DockTheme and all classes which are neede by this theme. 
bibliothek.gui.dock.themes.basic.action Elements handling the view of DockActions.
They way from a DockAction to its view normally involves four objects: The DockAction itself, providing the basic set of properties A handler listening to changes of the action and forwarding the changes to the model. 
bibliothek.gui.dock.util Distribution of information in a global scale and methods available from everywhere. 
 

Uses of BackgroundPaint in bibliothek.gui
 

Fields in bibliothek.gui with type parameters of type BackgroundPaint
static PropertyKey<BackgroundPaint> DockTheme.BACKGROUND_PAINT
          A unique identifier for the DockProperties to access the current BackgroundPaint.
 

Uses of BackgroundPaint in bibliothek.gui.dock.station.screen.window
 

Methods in bibliothek.gui.dock.station.screen.window with parameters of type BackgroundPaint
 void DisplayerScreenDockWindow.Background.set(BackgroundPaint value)
           
 

Uses of BackgroundPaint in bibliothek.gui.dock.station.stack.menu
 

Methods in bibliothek.gui.dock.station.stack.menu with parameters of type BackgroundPaint
protected  void AbstractCombinedMenu.backgroundChanged(BackgroundPaint paint)
          Called if the background algorithm has been exchanged.
protected  void ButtonCombinedMenu.backgroundChanged(BackgroundPaint paint)
           
 

Uses of BackgroundPaint in bibliothek.gui.dock.themes
 

Fields in bibliothek.gui.dock.themes with type parameters of type BackgroundPaint
static TypedUIProperties.Type<BackgroundPaint> ThemeManager.BACKGROUND_PAINT_TYPE
          Identifier for the type BackgroundPaint
 

Methods in bibliothek.gui.dock.themes with parameters of type BackgroundPaint
 void ThemeManager.setBackgroundPaint(String id, BackgroundPaint value)
          Sets an algorithm that is used to paint the background of items which register an UIValue with an identifier of id.
 

Method parameters in bibliothek.gui.dock.themes with type arguments of type BackgroundPaint
 void ThemeManager.setBackgroundPaintBridge(Path kind, UIBridge<BackgroundPaint,UIValue<BackgroundPaint>> bridge)
          Sets the UIBridge that will transfer properties to those UIValues whose kind is either kind or a child of kind.
 void ThemeManager.setBackgroundPaintBridge(Path kind, UIBridge<BackgroundPaint,UIValue<BackgroundPaint>> bridge)
          Sets the UIBridge that will transfer properties to those UIValues whose kind is either kind or a child of kind.
 

Uses of BackgroundPaint in bibliothek.gui.dock.themes.basic.action
 

Methods in bibliothek.gui.dock.themes.basic.action that return BackgroundPaint
 BackgroundPaint BasicButtonModel.getBackground()
          Gets the algorithm which should be used to paint the background of components.
 

Methods in bibliothek.gui.dock.themes.basic.action with parameters of type BackgroundPaint
 void BasicButtonModelAdapter.backgroundChanged(BasicButtonModel model, BackgroundPaint oldBackground, BackgroundPaint newBackground)
           
 void BasicButtonModelListener.backgroundChanged(BasicButtonModel model, BackgroundPaint oldBackground, BackgroundPaint newBackground)
          Called when the background algorithm has been exchanged.
 void BasicButtonModel.setBackground(BackgroundPaint background, BackgroundComponent backgroundComponent)
          Sets the algorithm which should be used to paint the background of the owner.
 

Uses of BackgroundPaint in bibliothek.gui.dock.util
 

Fields in bibliothek.gui.dock.util declared as BackgroundPaint
static BackgroundPaint BackgroundPaint.SOLID
          Simple BackgroundPaint that will attempt to make any background opaque (not transparent)
static BackgroundPaint BackgroundPaint.TRANSPARENT
          Simple BackgroundPaint that will attempt to make any background transparent
 

Methods in bibliothek.gui.dock.util that return BackgroundPaint
 BackgroundPaint BackgroundAlgorithm.getPaint()
          Gets the BackgroundPaint of this UIValue.
 

Methods in bibliothek.gui.dock.util with parameters of type BackgroundPaint
 void BackgroundAlgorithm.set(BackgroundPaint value)
           
 

Constructors in bibliothek.gui.dock.util with parameters of type BackgroundPaint
AbstractPaintableComponent(BackgroundComponent background, Component component, BackgroundPaint paint)
          Creates a new paintable component.