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

Packages that use DockTitleFactory
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.eclipse.stack.tab Various components needed to paint and manage the tab which is visible on a EclipseTabPane
bibliothek.extension.gui.dock.theme.flat Various graphical and logical components needed to paint the layout when FlatTheme is active. 
bibliothek.extension.gui.dock.theme.smooth Contains elements to paint a DockTitle which smoothly changes its color. 
bibliothek.gui The high level interfaces of the framework and the most often used classes. 
bibliothek.gui.dock.common.theme Classes related to the DockThemes. 
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.nostack Elements needed by the NoStackTheme
bibliothek.gui.dock.title Elements needed to paint the title of a Dockable
 

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.
 

Fields in bibliothek.extension.gui.dock.theme.bubble declared as DockTitleFactory
static DockTitleFactory BubbleButtonDockTitle.FACTORY
          A factory which creates new BubbleButtonDockTitles.
 

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

Classes in bibliothek.extension.gui.dock.theme.eclipse that implement DockTitleFactory
 class EclipseDockTitleFactory
          A DockTitleFactory that calls another factory but only if the method EclipseThemeConnector.getTitleBarKind(bibliothek.gui.DockStation, Dockable) returns EclipseThemeConnector.TitleBar.BASIC for the Dockable whose title should be created.
 

Constructors in bibliothek.extension.gui.dock.theme.eclipse with parameters of type DockTitleFactory
EclipseDockTitleFactory(EclipseTheme theme, DockTitleFactory factory)
          Creates a new factory
 

Uses of DockTitleFactory in bibliothek.extension.gui.dock.theme.eclipse.stack.tab
 

Methods in bibliothek.extension.gui.dock.theme.eclipse.stack.tab that return DockTitleFactory
static DockTitleFactory BasicTabDockTitle.createFactory(EclipseTheme theme)
          Gets a new DockTitleFactory using theme as source of various properties.
 

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 SmoothDefaultButtonTitleFactory
          A factory creating new SmoothDefaultButtonTitles.
 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.
 

Uses of DockTitleFactory in bibliothek.gui.dock.common.theme
 

Methods in bibliothek.gui.dock.common.theme that return DockTitleFactory
 DockTitleFactory CDockTheme.getTitleFactory(DockController controller)
           
 

Uses of DockTitleFactory in bibliothek.gui.dock.themes
 

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.
 void BasicTheme.setTitleFactory(DockTitleFactory titleFactory, Priority priority)
          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 BasicDockTitle.FACTORY
          A factory for the BasicDockTitle.
static DockTitleFactory BasicDockTitleFactory.FACTORY
          An instance of this factory which can be used an any place
 

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.
 

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 the methods to the factory provided by the theme of the involved controller
 class DockTitleVersion
          A DockTitleVersion is a hint which DockTitleFactory has to be used to create one or more DockTitle for some Dockable.
 class NullTitleFactory
          A DockTitleFactory that does not create any titles.
 

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.getVersion(java.lang.String id, DockTitleFactory factory)
          Gets the handle with the key id.
 DockTitleVersion DockTitleManager.register(java.lang.String id, DockTitleFactory factory, Priority priority)
          Registers a factory for 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.