com.borland.primetime.ide
Class BrowserWindow

java.lang.Object
  |
  +--com.borland.primetime.ide.BrowserWindow

public class BrowserWindow
extends java.lang.Object

Contains the Browser Window actions that appear in the menu and tool bars.


Field Summary
static UpdateAction ACTION_BrowserCascadeAll
          Action which scans the list of existing Browsers in this JBuilder session and arranges them all in a Z-order cascade, with the top of the Z-order remaining in front.
static BrowserAction ACTION_BrowserExit
          Action which calls the close() method on this Browser.
static BrowserAction ACTION_BrowserIconify
          Action which iconifies this browser window.
static UpdateAction ACTION_BrowserMinimizeAll
          Action which scans the list of existing Browsers in this JBuilder session and minimizes them all.
static UpdateAction ACTION_BrowserNew
          Action which creates a new browser window when invoked.
static UpdateAction ACTION_BrowserRestoreAll
          Action which scans the list of existing Browsers in this JBuilder session and restores them all from a minimized state.
static BrowserAction ACTION_BrowserShow
          Action which calls the show() method on this browser window.
static UpdateAction ACTION_BrowserTileAll
          Action which scans the list of existing Browsers in this JBuilder session and tiles them all to fit on the screen at the same time.
static ActionGroup GROUP_OpenBrowsers
          ActionGroup which displays Actions for all open Browsers when there are more than one.
static ActionGroup GROUP_OpenProjects
          Action group which provides Actions for every open project.
static ActionGroup GROUP_OpenWindows
          ActionGroup which provides Actions for each of no more than the first ten open windows.
 
Constructor Summary
BrowserWindow()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

ACTION_BrowserNew

public static UpdateAction ACTION_BrowserNew
Action which creates a new browser window when invoked.

ACTION_BrowserMinimizeAll

public static UpdateAction ACTION_BrowserMinimizeAll
Action which scans the list of existing Browsers in this JBuilder session and minimizes them all.

ACTION_BrowserRestoreAll

public static UpdateAction ACTION_BrowserRestoreAll
Action which scans the list of existing Browsers in this JBuilder session and restores them all from a minimized state.

ACTION_BrowserCascadeAll

public static UpdateAction ACTION_BrowserCascadeAll
Action which scans the list of existing Browsers in this JBuilder session and arranges them all in a Z-order cascade, with the top of the Z-order remaining in front.

ACTION_BrowserTileAll

public static UpdateAction ACTION_BrowserTileAll
Action which scans the list of existing Browsers in this JBuilder session and tiles them all to fit on the screen at the same time.

ACTION_BrowserShow

public static BrowserAction ACTION_BrowserShow
Action which calls the show() method on this browser window. This will bring it to the front, and show it if it is iconified or hidden.

ACTION_BrowserIconify

public static BrowserAction ACTION_BrowserIconify
Action which iconifies this browser window.

ACTION_BrowserExit

public static BrowserAction ACTION_BrowserExit
Action which calls the close() method on this Browser. May not actually close if the user vetos it.

GROUP_OpenProjects

public static final ActionGroup GROUP_OpenProjects
Action group which provides Actions for every open project. The selected project will be made the 'active' project.

GROUP_OpenWindows

public static ActionGroup GROUP_OpenWindows
ActionGroup which provides Actions for each of no more than the first ten open windows. Selecting an Action causes that window to become its corresponding Node to become the 'active' Node. When there are more windows than can be displayed, a separate Action is added which presents a sorted display of all open windows. (Note that when there is more than one Browser active, fewer than ten open windows will be displayed since the keyboard accelerators are shared.)

GROUP_OpenBrowsers

public static ActionGroup GROUP_OpenBrowsers
ActionGroup which displays Actions for all open Browsers when there are more than one. Selecting an Action causes the corresponding Browser to receive the focus.
Constructor Detail

BrowserWindow

public BrowserWindow()