Medical Imaging Interaction Toolkit
2024.06.00
Medical Imaging Interaction Toolkit
|
#include <berryIWorkbenchWindow.h>
Public Member Functions | |
berryObjectMacro (berry::IWorkbenchWindow, IPageService, IServiceLocator, Object) | |
virtual bool | Close ()=0 |
virtual QList< SmartPointer< IWorkbenchPage > > | GetPages () const =0 |
SmartPointer< IWorkbenchPage > | GetActivePage () const override=0 |
virtual void | SetActivePage (SmartPointer< IWorkbenchPage > page)=0 |
virtual IPartService * | GetPartService ()=0 |
virtual ISelectionService * | GetSelectionService () const =0 |
virtual Shell::Pointer | GetShell () const =0 |
virtual IWorkbench * | GetWorkbench () const =0 |
virtual QList< QToolBar * > | GetToolBars () const =0 |
virtual SmartPointer< IWorkbenchPage > | OpenPage (const QString &perspectiveId, IAdaptable *input)=0 |
virtual SmartPointer< IWorkbenchPage > | OpenPage (IAdaptable *input)=0 |
~IWorkbenchWindow () override | |
Public Member Functions inherited from berry::IPageService | |
virtual | ~IPageService () |
virtual void | AddPerspectiveListener (IPerspectiveListener *listener)=0 |
virtual void | RemovePerspectiveListener (IPerspectiveListener *listener)=0 |
virtual IPerspectiveListener::Events & | GetPerspectiveEvents ()=0 |
Public Member Functions inherited from berry::IServiceLocator | |
berryObjectMacro (berry::IServiceLocator, Object) | |
~IServiceLocator () override | |
template<class S > | |
S * | GetService () |
template<class S > | |
bool | HasService () const |
virtual Object * | GetService (const QString &api)=0 |
virtual bool | HasService (const QString &api) const =0 |
Public Member Functions inherited from berry::Object | |
virtual QString | GetClassName () const |
virtual Reflection::TypeInfo | GetTypeInfo () const |
virtual QList< Reflection::TypeInfo > | GetSuperclasses () const |
virtual void | Delete () |
QDebug | Print (QDebug os, Indent Indent=0) const |
virtual QString | ToString () const |
virtual uint | HashCode () const |
virtual bool | operator< (const Object *) const |
void | Register () const |
void | UnRegister (bool del=true) const |
int | GetReferenceCount () const |
void | SetReferenceCount (int) |
void | AddDestroyListener (const MessageAbstractDelegate<> &delegate) const |
void | RemoveDestroyListener (const MessageAbstractDelegate<> &delegate) const |
virtual bool | operator== (const Object *) const |
Additional Inherited Members | |
Public Types inherited from berry::Object | |
typedef Object | Self |
typedef berry::SmartPointer< Self > | Pointer |
typedef berry::SmartPointer< const Self > | ConstPointer |
typedef berry::WeakPointer< Self > | WeakPtr |
typedef berry::WeakPointer< const Self > | ConstWeakPtr |
Static Public Member Functions inherited from berry::Object | |
static const char * | GetStaticClassName () |
static Reflection::TypeInfo | GetStaticTypeInfo () |
static QList< Reflection::TypeInfo > | GetStaticSuperclasses () |
Protected Member Functions inherited from berry::Object | |
Object () | |
virtual | ~Object () |
virtual QDebug | PrintSelf (QDebug os, Indent indent) const |
virtual QDebug | PrintHeader (QDebug os, Indent indent) const |
virtual QDebug | PrintTrailer (QDebug os, Indent indent) const |
Protected Attributes inherited from berry::Object | |
QAtomicInt | m_ReferenceCount |
QMutex | m_ReferenceCountLock |
A workbench window is a top level window in a workbench. Visually, a workbench window has a menubar, a toolbar, a status bar, and a main area for displaying a single page consisting of a collection of views and editors.
Each workbench window has a collection of 0 or more pages; the active page is the one that is being presented to the end user; at most one page is active in a window at a time.
The workbench window supports a few services by default. If these services are used to allocate resources, it is important to remember to clean up those resources after you are done with them. Otherwise, the resources will exist until the workbench window is closed. The supported services are:
This interface is not intended to be implemented by clients.
Definition at line 64 of file berryIWorkbenchWindow.h.
|
override |
berry::IWorkbenchWindow::berryObjectMacro | ( | berry::IWorkbenchWindow | , |
IPageService | , | ||
IServiceLocator | , | ||
Object | |||
) |
|
pure virtual |
Closes this workbench window.
If the window has an open editor with unsaved content, the user will be given the opportunity to save it.
true
if the window was successfully closed, and false
if it is still open
|
overridepure virtual |
Returns the currently active page for this workbench window.
null
if none Implements berry::IPageService.
|
pure virtual |
Returns a list of the pages in this workbench window.
Note that each window has its own pages; pages are never shared between different windows.
|
pure virtual |
Returns the part service which tracks part activation within this workbench window.
|
pure virtual |
Returns the selection service which tracks selection within this workbench window.
|
pure virtual |
Returns this workbench window's shell.
null
if the shell has not been created yet or if the window has been closed
|
pure virtual |
Returns all tool bars for this window.
|
pure virtual |
Returns the workbench for this window.
|
pure virtual |
Creates and opens a new workbench page. The perspective of the new page is defined by the specified perspective ID. The new page become active.
Note: Since release 2.0, a window is limited to contain at most one page. If a page exist in the window when this method is used, then another window is created for the new page. Callers are strongly recommended to use the IWorkbench.showPerspective
APIs to programmatically show a perspective.
perspectiveId | the perspective id for the window's initial page |
input | the page input, or null if there is no current input. This is used to seed the input for the new page's views. |
WorkbenchException | if a page could not be opened |
|
pure virtual |
Creates and opens a new workbench page. The default perspective is used as a template for creating the page. The page becomes active.
Note: Since release 2.0, a window is limited to contain at most one page. If a page exist in the window when this method is used, then another window is created for the new page. Callers are strongly recommended to use the IWorkbench.showPerspective
APIs to programmatically show a perspective.
input | the page input, or null if there is no current input. This is used to seed the input for the new page's views. |
WorkbenchException | if a page could not be opened |
|
pure virtual |
Sets or clears the currently active page for this workbench window.
page | the new active page |