Uses of Interface
bibliothek.gui.dock.station.stack.StackDockComponent

Packages that use StackDockComponent
bibliothek.extension.gui.dock.theme.bubble Various graphical and logical components used when BubbleTheme is active. 
bibliothek.extension.gui.dock.theme.eclipse.displayer The DockableDisplayers that are used by the EclipseTheme
bibliothek.extension.gui.dock.theme.eclipse.stack An implementation of TabPane and supporting classes for the EclipseTheme
bibliothek.extension.gui.dock.theme.flat Various graphical and logical components needed to paint the layout when FlatTheme is active. 
bibliothek.gui.dock The five basic classes implementing Dockable and DockStation plus some supporting elements. 
bibliothek.gui.dock.station.stack Elements which are related to the StackDockStation
bibliothek.gui.dock.station.stack.tab This package contains a generic implementation of a "tabbed-pane". 
bibliothek.gui.dock.themes.basic Factories and classes used when the BasicTheme is active. 
 

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

Classes in bibliothek.extension.gui.dock.theme.bubble that implement StackDockComponent
 class BubbleStackDockComponent
          A StackDockComponent used by a BubbleTheme.
 

Methods in bibliothek.extension.gui.dock.theme.bubble with parameters of type StackDockComponent
 void BubbleTab.selectionChanged(StackDockComponent stack)
           
 void BubbleTab.tabChanged(StackDockComponent stack, Dockable dockable)
           
 

Uses of StackDockComponent in bibliothek.extension.gui.dock.theme.eclipse.displayer
 

Classes in bibliothek.extension.gui.dock.theme.eclipse.displayer that implement StackDockComponent
 class EclipseDockableDisplayer
          Deprecated. this class gets replaced by EclipseDockableDisplayer2, it is no longer used by the framework and only remains for backwards compatibility. This class will be removed in a future release.
 

Uses of StackDockComponent in bibliothek.extension.gui.dock.theme.eclipse.stack
 

Classes in bibliothek.extension.gui.dock.theme.eclipse.stack that implement StackDockComponent
 class EclipseTabPane
          The EclipseTabPane uses a generic TabPainter to create its tabs and to change its border.
 

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

Classes in bibliothek.extension.gui.dock.theme.flat that implement StackDockComponent
 class FlatTabPane
          A panel that works like a JTabbedPane, but the buttons to change between the children are smaller and "flatter" than the buttons of the JTabbedPane.
 

Uses of StackDockComponent in bibliothek.gui.dock
 

Methods in bibliothek.gui.dock that return StackDockComponent
protected  StackDockComponent StackDockStation.createStackDockComponent()
          Creates the StackDockComponent which will be shown on this station if the station has more then one child.
This method is called directly by the constructor.
 StackDockComponent StackDockStation.getStackComponent()
          Gets the currently used StackDockComponent
 

Methods in bibliothek.gui.dock with parameters of type StackDockComponent
 void StackDockStation.setStackComponent(StackDockComponent stackComponent)
          Sets the StackDockComponent which should be used by this station.
 

Uses of StackDockComponent in bibliothek.gui.dock.station.stack
 

Classes in bibliothek.gui.dock.station.stack that implement StackDockComponent
 class CombinedStackDockComponent<T extends CombinedTab,M extends CombinedMenu,I extends CombinedInfoComponent>
          A StackDockComponent which is a combination of other components.
This class also implements TabPane and thus supports the TabLayoutManager.
 class DefaultStackDockComponent
          The standard-implementation of StackDockComponent.
 

Methods in bibliothek.gui.dock.station.stack that return StackDockComponent
 StackDockComponent StackDockComponentFactory.create(StackDockComponentParent parent)
          Creates a new component for station.
 StackDockComponent StackDockComponentBorder.getStackComponent()
          Gets the StackDockComponent which is represented by this UIValue.
 

Methods in bibliothek.gui.dock.station.stack with parameters of type StackDockComponent
 void TabContentFilterListener.contentChanged(StackDockComponent component)
          Informs this listener that all icons, titles and tooltips of all children of component have changed.
 void StackDockComponentListener.selectionChanged(StackDockComponent stack)
          Called if the current selection on stack changed.
 void StackDockComponentRepresentative.setComponent(StackDockComponent component)
          Sets the factory that creates new DockElementRepresentatives.
 void StackDockComponentListener.tabChanged(StackDockComponent stack, Dockable dockable)
          Called if the result of getTabAt(int) changed for any index associated with dockable
 

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

Fields in bibliothek.gui.dock.station.stack.tab with type parameters of type StackDockComponent
protected  List<StackDockComponent> AbstractTabContentFilter.components
          all the components that are currently installed
 

Methods in bibliothek.gui.dock.station.stack.tab with parameters of type StackDockComponent
 TabContent AbstractTabContentFilter.filter(TabContent content, StackDockComponent component, Dockable dockable)
          This implementation just returns content.
 TabContent DefaultTabContentFilter.filter(TabContent content, StackDockComponent component, Dockable dockable)
           
 TabContent TabContentFilter.filter(TabContent content, StackDockComponent component, Dockable dockable)
          Filters the contents of a tab.
protected  void AbstractTabContentFilter.fireChanged(StackDockComponent component)
          Calls TabContentFilterListener.contentChanged(StackDockComponent) on all listeners that are currently installed.
 void AbstractTabContentFilter.install(StackDockComponent component)
           
 void TabContentFilter.install(StackDockComponent component)
          Informs this filter that it will be used by component.
protected  void AbstractTabContentFilter.selectionChanged(StackDockComponent component)
          Called if the selection of component changed.
protected  void DefaultTabContentFilter.selectionChanged(StackDockComponent component)
           
 void AbstractTabContentFilter.uninstall(StackDockComponent component)
           
 void TabContentFilter.uninstall(StackDockComponent component)
          Informs this filter that it is no longer used by component.
 

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

Classes in bibliothek.gui.dock.themes.basic that implement StackDockComponent
 class BasicStackDockComponent
          The BasicStackDockComponent is an implementation of StackDockComponent using a JTabbedPane.
 

Methods in bibliothek.gui.dock.themes.basic that return StackDockComponent
 StackDockComponent TabDecorator.getStackComponent()
          Gets the component which is used by this TabDecorator.
 

Constructors in bibliothek.gui.dock.themes.basic with parameters of type StackDockComponent
TabDisplayerCombinerTarget(DockableDisplayer displayer, StackDockComponent stack, CombinerSource source, Enforcement force)
          Creates a new target, clients should call TabDisplayerCombinerTarget.isValid() to check whether the new target can be executed.