Uses of Interface
bibliothek.gui.dock.title.DockTitleFactory

Packages that use DockTitleFactory
bibliothek.extension.gui.dock.theme.bubble   
bibliothek.extension.gui.dock.theme.flat   
bibliothek.extension.gui.dock.theme.smooth   
bibliothek.gui   
bibliothek.gui.dock.themes   
bibliothek.gui.dock.themes.basic   
bibliothek.gui.dock.themes.nostack   
bibliothek.gui.dock.title   
 

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

Classes in bibliothek.extension.gui.dock.theme.bubble that implement DockTitleFactory
 class BubbleDockTitleFactory
          A factory creating ordinary instances of BubbleDockTitle.
 class ReducedBubbleTitleFactory
          A factory creating instances of BubbleDockTitle.
 

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

Classes in bibliothek.extension.gui.dock.theme.flat that implement DockTitleFactory
 class FlatTitleFactory
          A factory that creates instances of BasicDockTitle, but changes their active and inactive right color to the Dockables background.
 

Uses of DockTitleFactory in bibliothek.extension.gui.dock.theme.smooth
 

Classes in bibliothek.extension.gui.dock.theme.smooth that implement DockTitleFactory
 class SmoothDefaultTitleFactory
          A DockTitleFactory which creates instances of SmoothDefaultTitle and SmoothDefaultStationTitle.
 

Uses of DockTitleFactory in bibliothek.gui
 

Methods in bibliothek.gui that return DockTitleFactory
 DockTitleFactory DockTheme.getTitleFactory(DockController controller)
          Gets the default DockTitleFactory which is used if no other factory is set.
To replace all factories, the method DockTitleManager.registerTheme(String, DockTitleFactory) should be used.
 

Uses of DockTitleFactory in bibliothek.gui.dock.themes
 

Fields in bibliothek.gui.dock.themes declared as DockTitleFactory
private  DockTitleFactory BasicTheme.titleFactory
          creates titles Dockables
 

Methods in bibliothek.gui.dock.themes that return DockTitleFactory
 DockTitleFactory BasicTheme.getTitleFactory(DockController controller)
           
 DockTitleFactory NoStackTheme.getTitleFactory(DockController controller)
           
 

Methods in bibliothek.gui.dock.themes with parameters of type DockTitleFactory
 void BasicTheme.setTitleFactory(DockTitleFactory titleFactory)
          Sets the DockTitleFactory of this station.
 

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

Classes in bibliothek.gui.dock.themes.basic that implement DockTitleFactory
 class BasicButtonTitleFactory
          A factory for the BasicButtonDockTitle
 class BasicDockTitleFactory
          A DockTitleFactory which created instances of BasicDockTitle and of BasicStationTitle.
 

Fields in bibliothek.gui.dock.themes.basic declared as DockTitleFactory
static DockTitleFactory BasicDockTitleFactory.FACTORY
          An instance of this factory which can be used an any place
static DockTitleFactory BasicDockTitle.FACTORY
          A factory for the BasicDockTitle.
 

Uses of DockTitleFactory in bibliothek.gui.dock.themes.nostack
 

Classes in bibliothek.gui.dock.themes.nostack that implement DockTitleFactory
 class NoStackTitleFactory
          A DockTitleFactory which does not create titles for StackDockStations but uses another factory as delegate to create titles for the other stations.
 

Fields in bibliothek.gui.dock.themes.nostack declared as DockTitleFactory
private  DockTitleFactory NoStackTitleFactory.base
          The delegate to create titles
 

Constructors in bibliothek.gui.dock.themes.nostack with parameters of type DockTitleFactory
NoStackTitleFactory(DockTitleFactory base)
          Creates a new factory
 

Uses of DockTitleFactory in bibliothek.gui.dock.title
 

Classes in bibliothek.gui.dock.title that implement DockTitleFactory
 class ControllerTitleFactory
          This factory delegates every call to its methods to the factory provided by the theme of the involved controller
 

Fields in bibliothek.gui.dock.title declared as DockTitleFactory
private  DockTitleFactory[] DockTitleVersion.factories
          the three slots for the factories
 

Methods in bibliothek.gui.dock.title that return DockTitleFactory
 DockTitleFactory DockTitleVersion.getFactory()
          Gets the factory with the highest priority
 DockTitleFactory DockTitleVersion.getFactory(Priority priority)
          Gets the factory with the given priority.
 

Methods in bibliothek.gui.dock.title with parameters of type DockTitleFactory
 DockTitleVersion DockTitleManager.register(java.lang.String id, DockTitleFactory factory, Priority priority)
          Registers a factory at the given key
 DockTitleVersion DockTitleManager.registerClient(java.lang.String id, DockTitleFactory factory)
          Registers a factory with client-priority
 DockTitleVersion DockTitleManager.registerDefault(java.lang.String id, DockTitleFactory factory)
          Registers a factory with default-priority
 DockTitleVersion DockTitleManager.registerTheme(java.lang.String id, DockTitleFactory factory)
          Registers a factory with theme-priority
 void DockTitleVersion.setFactory(DockTitleFactory factory, Priority priority)
          Stores factory at the slot priority.