Class OpenPerspectiveMenu
- All Implemented Interfaces:
- IContributionItem
 An OpenPerspectiveMenu is used to populate a menu with actions
 that will open a new perspective. If the user selects one of these items
 either a new page is added to the workbench, a new workbench window is
 created with the chosen perspective or the current perspective will be
 replaced with the new onw.
 
The visible perspectives within the menu may also be updated dynamically to reflect user preference.
 The input for the page is determined by the value of pageInput.
 The input should be passed into the constructor of this class or set using
 the setPageInput method.
 
This class may be instantiated; it is not intended to be subclassed.
- Restriction:
- This class is not intended to be subclassed by clients.
- 
Field SummaryFields inherited from class org.eclipse.ui.actions.PerspectiveMenuSHOW_PERSP_ID
- 
Constructor SummaryConstructorsConstructorDescriptionOpenPerspectiveMenu(IMenuManager menuManager, IWorkbenchWindow window) Deprecated.Constructs a new menu.OpenPerspectiveMenu(IWorkbenchWindow window) Deprecated.Constructs a new instance ofOpenNewPageMenu.OpenPerspectiveMenu(IWorkbenchWindow window, IAdaptable input) Deprecated.Constructs a new instance ofOpenNewPageMenu.
- 
Method SummaryModifier and TypeMethodDescriptionprotected voidrun(IPerspectiveDescriptor desc) Deprecated.Runs an action for a particular perspective.protected voidrun(IPerspectiveDescriptor desc, SelectionEvent event) Deprecated.Runs an action for a particular perspective.voidsetPageInput(IAdaptable input) Deprecated.Sets the page input.voidsetReplaceEnabled(boolean isEnabled) Deprecated.Methods inherited from class org.eclipse.ui.actions.PerspectiveMenudispose, fill, getPerspectiveItems, getShowActive, getWindow, isDirty, isDynamic, showActiveMethods inherited from class org.eclipse.jface.action.ContributionItemfill, fill, fill, getId, getParent, isEnabled, isGroupMarker, isSeparator, isVisible, saveWidgetState, setId, setParent, setVisible, toString, update, update
- 
Constructor Details- 
OpenPerspectiveMenuDeprecated.Constructs a new menu.- Parameters:
- menuManager- the menu manager
- window- the window where a new page is created if an item within the menu is selected
 
- 
OpenPerspectiveMenuDeprecated.Constructs a new instance ofOpenNewPageMenu.If this method is used be sure to set the page input by invoking setPageInput. The page input is required when the user selects an item in the menu. At that point the menu will attempt to open a new page with the selected perspective and page input. If there is no page input an error dialog will be opened.- Parameters:
- window- the window where a new page is created if an item within the menu is selected
 
- 
OpenPerspectiveMenuDeprecated.Constructs a new instance ofOpenNewPageMenu.- Parameters:
- window- the window where a new page is created if an item within the menu is selected
- input- the page input
 
 
- 
- 
Method Details- 
runDeprecated.Runs an action for a particular perspective. Opens the perspective supplied in a new window or a new page depending on the workbench preference.- Specified by:
- runin class- PerspectiveMenu
- Parameters:
- desc- the selected perspective
 
- 
runDeprecated.Runs an action for a particular perspective.- Overrides:
- runin class- PerspectiveMenu
- Parameters:
- desc- the selected perspective
- event- the event sent along with the selection callback
 
- 
setPageInputDeprecated.Sets the page input.- Parameters:
- input- the page input
 
- 
setReplaceEnabledpublic void setReplaceEnabled(boolean isEnabled) Deprecated.- Parameters:
- isEnabled- true if replace menu item is enabled within its parent menu.
 
 
-