Class ApplicationWindow
- All Implemented Interfaces:
IRunnableContext,IShellProvider
Creating an application window involves the following steps:
- creating an instance of
ApplicationWindow - assigning the window to a window manager (optional)
- opening the window by calling
open
Only on the last step, when the window is told to open, are the window's shell and widget tree created. When the window is closed, the shell and widget tree are disposed of and are no longer referenced, and the window is automatically removed from its window manager. Like all windows, an application window may be reopened.
An application window is also a suitable context in which to perform
long-running operations (that is, it implements
IRunnableContext).
-
Nested Class Summary
Nested classes/interfaces inherited from class org.eclipse.jface.window.Window
Window.IExceptionHandler -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected LabelThe seperator between the menu bar and the rest of the window.Fields inherited from class org.eclipse.jface.window.Window
CANCEL, OK, resizeHasOccurred -
Constructor Summary
ConstructorsConstructorDescriptionApplicationWindow(Shell parentShell) Create an application window instance, whose shell will be created under the given parent shell. -
Method Summary
Modifier and TypeMethodDescriptionprotected voidaddCoolBar(int style) Configures this window to have a cool bar.protected voidConfigures this window to have a menu bar.protected voidConfigures this window to have a status line.protected voidaddToolBar(int style) Configures this window to have a tool bar.protected booleanDetermines if the window should handle the close event or do nothing.booleanclose()Closes this window, disposes its shell, and removes this window from its window manager (if it has one).protected voidconfigureShell(Shell shell) Extends the super implementation by creating the trim widgets usingcreateTrimWidgets.protected booleanReturns whether or not children exist for this application window's cool bar control.protected ControlcreateCoolBarControl(Composite composite) Creates the control for the cool bar manager.protected CoolBarManagercreateCoolBarManager(int style) Returns a new cool bar manager for the window.protected ICoolBarManagercreateCoolBarManager2(int style) Returns a new cool bar manager for the window.protected MenuManagerReturns a new menu manager for the window.protected voidcreateStatusLine(Shell shell) Create the status line if required.protected StatusLineManagerReturns a new status line manager for the window.protected ControlcreateToolBarControl(Composite parent) Creates the control for the tool bar manager.protected ToolBarManagercreateToolBarManager(int style) Returns a new tool bar manager for the window.protected IToolBarManagercreateToolBarManager2(int style) Returns a new tool bar manager for the window.protected voidcreateTrimWidgets(Shell shell) Creates the trim widgets around the content area.protected ControlReturns the control for the window's cool bar.Returns the cool bar manager for this window.Returns the cool bar manager for this window.protected FontgetFont()Returns the default font used for this window.protected LayoutCreates the layout for the shell.Returns the menu bar manager for this window (if it has one).protected LabelReturn the top seperator.protected StatusLineManagerReturns the status line manager for this window (if it has one).Returns the symbolic font name of the font to be used to display text in this window.protected ControlReturns the control for the window's toolbar.Returns the tool bar manager for this window (if it has one).Returns the tool bar manager for this window (if it has one).voidrun(boolean fork, boolean cancelable, IRunnableWithProgress runnable) This implementation of IRunnableContext#run(boolean, boolean, IRunnableWithProgress) blocks until the runnable has been run, regardless of the value offork.voidSets or clears the message displayed in this window's status line (if it has one).protected booleanReturns whether to show a top separator line between the menu bar and the rest of the window contents.protected booleanReturns whether or not children exist for the Application Window's toolbar control.Methods inherited from class org.eclipse.jface.window.Window
constrainShellSize, create, createContents, createShell, getConstrainedShellBounds, getContents, getDefaultImage, getDefaultImages, getDefaultOrientation, getInitialLocation, getInitialSize, getParentShell, getReturnCode, getShell, getShellListener, getShellStyle, getWindowManager, handleFontChange, handleShellCloseEvent, initializeBounds, open, setBlockOnOpen, setDefaultImage, setDefaultImages, setDefaultModalParent, setDefaultOrientation, setExceptionHandler, setParentShell, setReturnCode, setShellStyle, setWindowManager
-
Field Details
-
seperator1
The seperator between the menu bar and the rest of the window.
-
-
Constructor Details
-
ApplicationWindow
Create an application window instance, whose shell will be created under the given parent shell. Note that the window will have no visual representation (no widgets) until it is told to open. By default,opendoes not block.- Parameters:
parentShell- the parent shell, ornullto create a top-level shell
-
-
Method Details
-
getSeperator1
Return the top seperator.- Returns:
- Label
-
addMenuBar
protected void addMenuBar()Configures this window to have a menu bar. Does nothing if it already has one. This method must be called before this window's shell is created. -
addStatusLine
protected void addStatusLine()Configures this window to have a status line. Does nothing if it already has one. This method must be called before this window's shell is created. -
addToolBar
protected void addToolBar(int style) Configures this window to have a tool bar. Does nothing if it already has one. This method must be called before this window's shell is created.- Parameters:
style- swt style bits used to create the Toolbar- See Also:
-
addCoolBar
protected void addCoolBar(int style) Configures this window to have a cool bar. Does nothing if it already has one. This method must be called before this window's shell is created.- Parameters:
style- the cool bar style- Since:
- 3.0
-
canHandleShellCloseEvent
protected boolean canHandleShellCloseEvent()Description copied from class:WindowDetermines if the window should handle the close event or do nothing.The default implementation of this framework method returns
true, which will allow thehandleShellCloseEventmethod to be called. Subclasses may extend or reimplement.- Overrides:
canHandleShellCloseEventin classWindow- Returns:
- whether the window should handle the close event.
-
close
public boolean close()Description copied from class:WindowCloses this window, disposes its shell, and removes this window from its window manager (if it has one).This framework method may be extended (
super.closemust be called).Note that in order to prevent recursive calls to this method it does not call
Shell#close(). As a resultShellListeners will not receive ashellClosedevent. -
configureShell
Extends the super implementation by creating the trim widgets usingcreateTrimWidgets.- Overrides:
configureShellin classWindow- Parameters:
shell- the shell
-
createTrimWidgets
Creates the trim widgets around the content area.- Parameters:
shell- the shell- Since:
- 3.0
-
getLayout
Description copied from class:WindowCreates the layout for the shell. The layout created here will be attached to the composite passed into createContents. The default implementation returns a GridLayout with no margins. Subclasses that change the layout type by overriding this method should also override createContents.A return value of null indicates that no layout should be attached to the composite. In this case, the layout may be attached within createContents.
-
showTopSeperator
protected boolean showTopSeperator()Returns whether to show a top separator line between the menu bar and the rest of the window contents. On some platforms such as the Mac, the menu is separated from the main window already, so a separator line is not desired.- Returns:
trueto show the top separator,falseto not show it- Since:
- 3.0
-
createStatusLine
Create the status line if required.- Parameters:
shell- the shell to create status line into
-
createMenuManager
Returns a new menu manager for the window.Subclasses may override this method to customize the menu manager.
- Returns:
- a menu manager
-
createStatusLineManager
Returns a new status line manager for the window.Subclasses may override this method to customize the status line manager.
- Returns:
- a status line manager
-
createToolBarManager
Returns a new tool bar manager for the window.Subclasses may override this method to customize the tool bar manager.
- Parameters:
style- swt style bits used to create the Toolbar- Returns:
- a tool bar manager
- See Also:
-
createToolBarManager2
Returns a new tool bar manager for the window.By default this method calls
createToolBarManager. Subclasses may override this method to provide an alternative implementation for the tool bar manager.- Parameters:
style- swt style bits used to create the Toolbar- Returns:
- a tool bar manager
- Since:
- 3.2
- See Also:
-
createCoolBarManager
Returns a new cool bar manager for the window.Subclasses may override this method to customize the cool bar manager.
- Parameters:
style- swt style bits used to create the Coolbar- Returns:
- a cool bar manager
- Since:
- 3.0
- See Also:
-
createCoolBarManager2
Returns a new cool bar manager for the window.By default this method calls
createCoolBarManager. Subclasses may override this method to provide an alternative implementation for the cool bar manager.- Parameters:
style- swt style bits used to create the Coolbar- Returns:
- a cool bar manager
- Since:
- 3.2
- See Also:
-
createToolBarControl
Creates the control for the tool bar manager.Subclasses may override this method to customize the tool bar manager.
- Parameters:
parent- the parent used for the control- Returns:
- a Control
-
createCoolBarControl
Creates the control for the cool bar manager.Subclasses may override this method to customize the cool bar manager.
- Parameters:
composite- the parent used for the control- Returns:
- an instance of
CoolBar - Since:
- 3.0
-
getFont
Returns the default font used for this window.The default implementation of this framework method obtains the symbolic name of the font from the
getSymbolicFontNameframework method and retrieves this font from JFace's font registry usingJFaceResources.getFont. Subclasses may override to use a different registry, etc.- Returns:
- the default font, or
nullif none
-
getMenuBarManager
Returns the menu bar manager for this window (if it has one).- Returns:
- the menu bar manager, or
nullif this window does not have a menu bar - See Also:
-
getStatusLineManager
Returns the status line manager for this window (if it has one).- Returns:
- the status line manager, or
nullif this window does not have a status line - See Also:
-
getSymbolicFontName
Returns the symbolic font name of the font to be used to display text in this window. This is not recommended and is included for backwards compatability. It is recommended to use the default font provided by SWT (that is, do not set the font).- Returns:
- the symbolic font name
-
getToolBarManager
Returns the tool bar manager for this window (if it has one).- Returns:
- the tool bar manager, or
nullif this window does not have a tool bar - See Also:
-
getToolBarManager2
Returns the tool bar manager for this window (if it has one).- Returns:
- the tool bar manager, or
nullif this window does not have a tool bar - Since:
- 3.2
- See Also:
-
getCoolBarManager
Returns the cool bar manager for this window.- Returns:
- the cool bar manager, or
nullif this window does not have a cool bar - Since:
- 3.0
- See Also:
-
getCoolBarManager2
Returns the cool bar manager for this window.- Returns:
- the cool bar manager, or
nullif this window does not have a cool bar - Since:
- 3.2
- See Also:
-
getToolBarControl
Returns the control for the window's toolbar.Subclasses may override this method to customize the tool bar manager.
- Returns:
- a Control
-
getCoolBarControl
Returns the control for the window's cool bar.Subclasses may override this method to customize the cool bar manager.
- Returns:
- an instance of
CoolBar - Since:
- 3.0
-
run
public void run(boolean fork, boolean cancelable, IRunnableWithProgress runnable) throws InvocationTargetException, InterruptedException This implementation of IRunnableContext#run(boolean, boolean, IRunnableWithProgress) blocks until the runnable has been run, regardless of the value offork. It is recommended thatforkis set to true in most cases. Ifforkis set tofalse, the runnable will run in the UI thread and it is the runnable's responsibility to callDisplay.readAndDispatch()to ensure UI responsiveness.- Specified by:
runin interfaceIRunnableContext- Parameters:
fork-trueif the runnable should be run in a separate thread, andfalseto run in the same threadcancelable-trueto enable the cancelation, andfalseto make the operation uncancellablerunnable- the runnable to run- Throws:
InvocationTargetException- wraps any exception or error which occurs while running the runnableInterruptedException- propagated by the context if the runnable acknowledges cancelation by throwing this exception. This should not be thrown if cancelable isfalse.
-
setStatus
Sets or clears the message displayed in this window's status line (if it has one). This method has no effect if the window does not have a status line.- Parameters:
message- the status message, ornullto clear it
-
toolBarChildrenExist
protected boolean toolBarChildrenExist()Returns whether or not children exist for the Application Window's toolbar control.- Returns:
- boolean true if children exist, false otherwise
-
coolBarChildrenExist
protected boolean coolBarChildrenExist()Returns whether or not children exist for this application window's cool bar control.- Returns:
- boolean true if children exist, false otherwise
- Since:
- 3.0
-