Uses of Interface
bibliothek.gui.dock.station.screen.ScreenDockWindow

Packages that use ScreenDockWindow
bibliothek.gui.dock The five basic classes implementing Dockable and DockStation plus some supporting elements. 
bibliothek.gui.dock.security A package dealing with the issues of Applets and Wepstart-applications. 
bibliothek.gui.dock.station.screen Elements that are related to the ScreenDockStation
 

Uses of ScreenDockWindow in bibliothek.gui.dock
 

Methods in bibliothek.gui.dock that return ScreenDockWindow
protected  ScreenDockWindow ScreenDockStation.createWindow()
          Creates a new window which is associated with this station.
 ScreenDockWindow ScreenDockStation.getWindow(Dockable dockable)
          Searches the ScreenDockWindow which displays the dockable.
 ScreenDockWindow ScreenDockStation.getWindow(int index)
          Gets the index'th window of this station.
protected  ScreenDockWindow ScreenDockStation.searchCombineDockable(int x, int y, Dockable drop)
          Searches a window on the coordinates x/y which can be used to create a combination with drop.
 

Methods in bibliothek.gui.dock with parameters of type ScreenDockWindow
protected  void ScreenDockStation.deregister(Dockable dockable, ScreenDockWindow window)
          Invoked when a ScreenDockWindow is no longer needed.
protected  ScreenDockWindowHandle ScreenDockStation.register(Dockable dockable, Path placeholder, ScreenDockWindow window)
          Invoked after a new ScreenDockWindow has been created.
 

Uses of ScreenDockWindow in bibliothek.gui.dock.security
 

Classes in bibliothek.gui.dock.security that implement ScreenDockWindow
 class SecureAbstractScreenDockWindow
          An AbstractScreenDockWindow that uses a GlassedPane in order to catch all MouseEvents and to report them to the SecureMouseFocusObserver.
 class SecureScreenDockDialog
          The secure reimplementation of ScreenDockDialog.
 

Methods in bibliothek.gui.dock.security that return ScreenDockWindow
 ScreenDockWindow SecureScreenDockWindowFactory.createWindow(ScreenDockStation station)
           
 

Uses of ScreenDockWindow in bibliothek.gui.dock.station.screen
 

Classes in bibliothek.gui.dock.station.screen that implement ScreenDockWindow
 class AbstractScreenDockWindow
          This abstract implementation of ScreenDockWindow uses a DockableDisplayer to show the Dockable.
 class DisplayerScreenDockWindow
          A window that uses a DockableDisplayer to show the Dockable.
 class ScreenDockDialog
          An implementation of ScreenDockWindow which uses a JDialog.
 class ScreenDockFrame
          An implementation of ScreenDockWindow which uses a JFrame.
 

Methods in bibliothek.gui.dock.station.screen that return ScreenDockWindow
 ScreenDockWindow DefaultScreenDockWindowFactory.createWindow(ScreenDockStation station)
           
 ScreenDockWindow ScreenDockWindowFactory.createWindow(ScreenDockStation station)
          Creates a new window which will be used by station.
 ScreenDockWindow ScreenDockWindowHandle.getWindow()
          Gets the window which is represented by this handle.
 

Methods in bibliothek.gui.dock.station.screen with parameters of type ScreenDockWindow
protected  Rectangle HardBoundaryRestriction.boundsInDevice(ScreenDockWindow window, int x, int y, int width, int height, GraphicsDevice device)
          Calculates size and location of dialog such that it is in device.
 Rectangle BoundaryRestriction.check(ScreenDockWindow window)
          Calculates the bounds which window can have.
 Rectangle HardBoundaryRestriction.check(ScreenDockWindow window)
           
 Rectangle BoundaryRestriction.check(ScreenDockWindow window, Rectangle target)
          Calculates the bounds which window can have.
 Rectangle HardBoundaryRestriction.check(ScreenDockWindow window, Rectangle target)
           
 void ScreenDockWindowListener.fullscreenStateChanged(ScreenDockWindow window)
          This method is called after the windows fullscreen-state changed.
protected  GraphicsConfiguration HardBoundaryRestriction.getGraphicsConfiguration(ScreenDockWindow window)
          Searches the GraphicsConfiguration of window.
 boolean DefaultScreenDockFullscreenStrategy.isFullscreen(ScreenDockWindow window)
           
 boolean ScreenDockFullscreenStrategy.isFullscreen(ScreenDockWindow window)
          Tells whether window is in fullscreen mode.
 boolean DefaultScreenDockFullscreenStrategy.isFullscreen(ScreenDockWindow wrapper, Window window)
          Tells whether the frame or dialog window is in fullscreen mode.
protected  double HardBoundaryRestriction.measureBounds(ScreenDockWindow window, int x, int y, int width, int height, GraphicsDevice device)
          Checks how good window fits into the screen device
 void DefaultScreenDockFullscreenStrategy.setFullscreen(ScreenDockWindow window, boolean fullscreen)
           
 void ScreenDockFullscreenStrategy.setFullscreen(ScreenDockWindow window, boolean fullscreen)
          Changes the fullscreen mode of window, does nothing if this strategy cannot handle the type of window.
 void DefaultScreenDockFullscreenStrategy.setFullscreen(ScreenDockWindow wrapper, Window window, boolean fullscreen)
          Sets the fullscreen mode of window.
 void ScreenDockWindowListener.shapeChanged(ScreenDockWindow window)
          This method is called after the size and position of window changed.
 void ScreenDockWindowListener.visibilityChanged(ScreenDockWindow window)
          This method is called after the visibility state changed.
 void ScreenDockStationListener.windowDeregistering(ScreenDockStation station, Dockable dockable, ScreenDockWindow window)
          Called when window was removed from station.
 void ScreenDockStationListener.windowRegistering(ScreenDockStation station, Dockable dockable, ScreenDockWindow window)
          Called when window was added to station.
 

Constructors in bibliothek.gui.dock.station.screen with parameters of type ScreenDockWindow
ScreenDockWindowHandle(Dockable dockable, ScreenDockWindow window)
          Creates a new handle.