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

Packages that use BackgroundComponent
bibliothek.gui.dock.action The components dealing with the logic of DockActions. 
bibliothek.gui.dock.displayer Classes and interfaces that are needed by the DockableDisplayer
bibliothek.gui.dock.dockable Some classes related to Dockable
bibliothek.gui.dock.station Elements needed by various implementations of the DockStation interface. 
bibliothek.gui.dock.station.flap Elements that are related to the FlapDockStation
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.tab This package contains a generic implementation of a "tabbed-pane". 
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.title Elements needed to paint the title of a Dockable
bibliothek.gui.dock.util Distribution of information in a global scale and methods available from everywhere. 
 

Uses of BackgroundComponent in bibliothek.gui.dock.action
 

Subinterfaces of BackgroundComponent in bibliothek.gui.dock.action
 interface DockActionBackgroundComponent
          Represents the background of a Component that somehow paints a DockAction.
 

Uses of BackgroundComponent in bibliothek.gui.dock.displayer
 

Subinterfaces of BackgroundComponent in bibliothek.gui.dock.displayer
 interface DisplayerBackgroundComponent
          A BackgroundComponent represents a DockableDisplayer.
 

Uses of BackgroundComponent in bibliothek.gui.dock.dockable
 

Subinterfaces of BackgroundComponent in bibliothek.gui.dock.dockable
 interface DockableBackgroundComponent
          A BackgroundComponent that represents a Dockable.
 

Uses of BackgroundComponent in bibliothek.gui.dock.station
 

Subinterfaces of BackgroundComponent in bibliothek.gui.dock.station
 interface StationBackgroundComponent
          A BackgroundComponent representing a DockStation.
 

Uses of BackgroundComponent in bibliothek.gui.dock.station.flap
 

Subinterfaces of BackgroundComponent in bibliothek.gui.dock.station.flap
 interface FlapWindowBackgroundComponent
          An UIValue that represents a FlapWindow.
 

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

Subinterfaces of BackgroundComponent in bibliothek.gui.dock.station.screen.window
 interface ScreenDockWindowBackgroundComponent
          This UIValue represents a ScreenDockWindow.
 

Classes in bibliothek.gui.dock.station.screen.window that implement BackgroundComponent
protected  class DisplayerScreenDockWindow.Background
          The algorithm that paints the background of this window.
 

Uses of BackgroundComponent in bibliothek.gui.dock.station.stack.tab
 

Subinterfaces of BackgroundComponent in bibliothek.gui.dock.station.stack.tab
 interface TabPaneBackgroundComponent
          A BackgroundComponent that represents a TabPane.
 interface TabPaneChildBackgroundComponent
          A BackgroundComponent representing a child component of a TabPane.
 interface TabPaneMenuBackgroundComponent
          A BackgroundComponent representing a TabMenu on a TabPane.
 interface TabPaneTabBackgroundComponent
          A BackgroundComponent representing a Tab on a TabPane.
 

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

Methods in bibliothek.gui.dock.themes.basic.action that return BackgroundComponent
 BackgroundComponent BasicButtonModel.getBackgroundComponent()
          Gets the source of BasicButtonModel.getBackground().
 

Methods in bibliothek.gui.dock.themes.basic.action with parameters of type BackgroundComponent
 void BasicButtonModel.setBackground(BackgroundPaint background, BackgroundComponent backgroundComponent)
          Sets the algorithm which should be used to paint the background of the owner.
 

Uses of BackgroundComponent in bibliothek.gui.dock.title
 

Subinterfaces of BackgroundComponent in bibliothek.gui.dock.title
 interface DockTitleBackgroundComponent
          Represents the background of a DockTitle.
 

Uses of BackgroundComponent in bibliothek.gui.dock.util
 

Classes in bibliothek.gui.dock.util that implement BackgroundComponent
 class BackgroundAlgorithm
          A utility class for managing BackgroundPaint, BackgroundComponent and PaintableComponent at the same time.
 

Methods in bibliothek.gui.dock.util with parameters of type BackgroundComponent
 void BackgroundPaint.install(BackgroundComponent component)
          Informs this paint that is will be used by component.
 void BackgroundPaint.paint(BackgroundComponent background, PaintableComponent paintable, Graphics g)
          Paints the background component using the graphics context g.
 void BackgroundPaint.uninstall(BackgroundComponent component)
          Informs this paint that it is no longer used by component.
 

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