Uses of Interface
bibliothek.gui.dock.station.split.SplitLayoutManager

Packages that use SplitLayoutManager
bibliothek.extension.gui.dock.station.split Optional helper functions to keep the size of Dockable even if the elements are moved around. 
bibliothek.gui.dock The five basic classes implementing Dockable and DockStation plus some supporting elements. 
bibliothek.gui.dock.common.intern.station Contains the CommonStation, various implementations of CommonStation and supporting classes. 
bibliothek.gui.dock.facile.station.split Support classes for SplitDockStation
bibliothek.gui.dock.station.split Elements which are needed by the SplitDockStation, and which are needed to interact with the station. 
 

Uses of SplitLayoutManager in bibliothek.extension.gui.dock.station.split
 

Classes in bibliothek.extension.gui.dock.station.split that implement SplitLayoutManager
 class LbSplitLayoutManager
          This SplitLayoutManager uses a SizeManager to find the size a Dockable should get when dropping onto the SplitDockStation.
 

Uses of SplitLayoutManager in bibliothek.gui.dock
 

Fields in bibliothek.gui.dock with type parameters of type SplitLayoutManager
static PropertyKey<SplitLayoutManager> SplitDockStation.LAYOUT_MANAGER
          Defines the behavior of a DockStation, how to react on a drop-event, how to react on resize and other things related to the layout.
 

Methods in bibliothek.gui.dock that return SplitLayoutManager
 SplitLayoutManager SplitDockStation.getSplitLayoutManager()
          Gets the layout manager which was explicitly set.
 

Methods in bibliothek.gui.dock with parameters of type SplitLayoutManager
 void SplitDockStation.setSplitLayoutManager(SplitLayoutManager manager)
          Sets a special SplitLayoutManager which this station has to use.
 

Uses of SplitLayoutManager in bibliothek.gui.dock.common.intern.station
 

Classes in bibliothek.gui.dock.common.intern.station that implement SplitLayoutManager
 class CLockedResizeLayoutManager
          A LockedResizeLayoutManager that looks out for CDockable.isResizeLockedVertically() and CDockable.isResizeLockedHorizontally().
 

Constructors in bibliothek.gui.dock.common.intern.station with parameters of type SplitLayoutManager
CLockedResizeLayoutManager(SplitLayoutManager delegate)
          Creates a new layout manager using delegate as delegate for all tasks that have to be carried out.
 

Uses of SplitLayoutManager in bibliothek.gui.dock.facile.station.split
 

Classes in bibliothek.gui.dock.facile.station.split that implement SplitLayoutManager
 class DelegatingSplitLayoutManager
          A SplitLayoutManager which delegates all its work to another manager.
 class LockedResizeLayoutManager<T>
          A SplitLayoutManager that can lock the size of some Dockables during resize.
 

Constructors in bibliothek.gui.dock.facile.station.split with parameters of type SplitLayoutManager
DelegatingSplitLayoutManager(SplitLayoutManager delegate)
          Creates a new manager
LockedResizeLayoutManager(SplitLayoutManager delegate)
          Creates a new manager.
 

Uses of SplitLayoutManager in bibliothek.gui.dock.station.split
 

Classes in bibliothek.gui.dock.station.split that implement SplitLayoutManager
 class DefaultSplitLayoutManager
          The default implementation of SplitLayoutManager.