Uses of Interface
bibliothek.gui.dock.util.WindowProvider

Packages that use WindowProvider
bibliothek.gui The high level interfaces of the framework and the most often used classes. 
bibliothek.gui.dock The five basic classes implementing Dockable and DockStation plus some supporting elements. 
bibliothek.gui.dock.common A set of classes that can be used to create basic applications. 
bibliothek.gui.dock.common.intern Classes and interfaces used internally. 
bibliothek.gui.dock.common.intern.station Contains the CommonDockStation, various implementations of CommonDockStation and supporting classes. 
bibliothek.gui.dock.facile.station.screen Support classes for ScreenDockStation
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
bibliothek.gui.dock.util Distribution of information in a global scale and methods available from everywhere. 
 

Uses of WindowProvider in bibliothek.gui
 

Methods in bibliothek.gui that return WindowProvider
 WindowProvider DockFrontend.getOwner()
          Gets the current provider for the root window.
 

Methods in bibliothek.gui with parameters of type WindowProvider
 void DockFrontend.setOwner(WindowProvider owner)
          Sets the window which is used as root for any dialog, can be null.
 void DockController.setRootWindowProvider(WindowProvider window)
          Sets the provider which will be used to find a root window for this controller.
 

Constructors in bibliothek.gui with parameters of type WindowProvider
DockFrontend(DockController controller, WindowProvider owner)
          Constructs a new frontend, tries to set up a ScreenDockStationFactory and sets the root window of controller to owner.
DockFrontend(WindowProvider owner)
          Constructs a new frontend, creates a new controller.
 

Uses of WindowProvider in bibliothek.gui.dock
 

Methods in bibliothek.gui.dock that return WindowProvider
 WindowProvider ScreenDockStation.getProvider()
          Gets the provider which delivers window owners for the windows of this station.
 

Constructors in bibliothek.gui.dock with parameters of type WindowProvider
ScreenDockStation(WindowProvider owner)
          Constructs a new ScreenDockStation.
 

Uses of WindowProvider in bibliothek.gui.dock.common
 

Methods in bibliothek.gui.dock.common that return WindowProvider
 WindowProvider CControl.getRootWindow()
          Gets the root window of the application.
 

Methods in bibliothek.gui.dock.common with parameters of type WindowProvider
protected  void CControl.init(WindowProvider window, CControlFactory factory)
          Initializes the fields of this CControl.
 void CControl.setRootWindow(WindowProvider window)
          Sets the root window of the application.
 

Constructors in bibliothek.gui.dock.common with parameters of type WindowProvider
CControl(WindowProvider window)
          Creates a new control
CControl(WindowProvider window, boolean restrictedEnvironment)
          Deprecated. it is not necessary to set the restrictedEnvironment parameter anymore, the framework will choose a fitting value itself
CControl(WindowProvider window, CControlFactory factory)
          Creates a new control
CControl(WindowProvider window, CControlFactory factory, boolean init)
          Creates a new control
 

Uses of WindowProvider in bibliothek.gui.dock.common.intern
 

Methods in bibliothek.gui.dock.common.intern with parameters of type WindowProvider
 CommonDockStation<ScreenDockStation,?> CControlFactory.createScreenDockStation(WindowProvider owner, CommonStationDelegate<ScreenDockStation> delegate)
          Creates a new ScreenDockStation.
 CommonDockStation<ScreenDockStation,?> EfficientControlFactory.createScreenDockStation(WindowProvider owner, CommonStationDelegate<ScreenDockStation> delegate)
           
 

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

Constructors in bibliothek.gui.dock.common.intern.station with parameters of type WindowProvider
CScreenDockStation(WindowProvider owner, CommonStationDelegate<ScreenDockStation> delegate)
          Creates a new station.
 

Uses of WindowProvider in bibliothek.gui.dock.facile.station.screen
 

Methods in bibliothek.gui.dock.facile.station.screen with parameters of type WindowProvider
 void WindowProviderVisibility.setProvider(WindowProvider provider)
          Sets the window to observe
 

Uses of WindowProvider in bibliothek.gui.dock.security
 

Constructors in bibliothek.gui.dock.security with parameters of type WindowProvider
SecureScreenDockStation(WindowProvider owner)
          Deprecated. Creates a new factory.
SecureScreenDockStationFactory(WindowProvider owner)
          Deprecated. Creates a new factory.
 

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

Methods in bibliothek.gui.dock.station.screen that return WindowProvider
 WindowProvider ScreenDockStationFactory.getProvider()
          Gets the provider for windows, which will be used as owner for newly created dialogs.
 

Constructors in bibliothek.gui.dock.station.screen with parameters of type WindowProvider
ScreenDockStationFactory(WindowProvider owner)
          Constructs a factory
 

Uses of WindowProvider in bibliothek.gui.dock.util
 

Classes in bibliothek.gui.dock.util that implement WindowProvider
 class AbstractWindowProvider
          An implementation of WindowProvider which adds support for WindowProviderListeners.
 class AppletWindowProvider
          A WindowProvider designed to work with Applets.
 class ComponentWindowProvider
          A window provider which just returns the ancestor window of some Component
 class DirectWindowProvider
          A window provider where the window can be set directly.
 class NullWindowProvider
          A window provider that never returns a window.
 class WindowProviderWrapper
          A wrapper around another WindowProvider, allows to exchange providers without the need to reattach WindowProviderListeners.
 

Methods in bibliothek.gui.dock.util that return WindowProvider
 WindowProvider WindowProviderWrapper.getDelegate()
          Gets the provider which is be used by this to find a window.
 

Methods in bibliothek.gui.dock.util with parameters of type WindowProvider
 void WindowProviderWrapper.setDelegate(WindowProvider delegate)
          Sets the provider which will be used to find a window.
 void WindowProviderListener.visibilityChanged(WindowProvider provider, boolean showing)
          Called if the visibility of the window of provider changed.
 void WindowProviderListener.windowChanged(WindowProvider provider, java.awt.Window window)
          Called when the providers window changed.