NifTK  16.4.1 - 0798f20
CMIC's Translational Medical Imaging Platform
Signals | Public Member Functions | Static Public Attributes | Protected Member Functions | List of all members
niftk::BaseSegmentorView Class Referenceabstract

Base view component for MIDAS Segmentation widgets. More...

Inheritance diagram for niftk::BaseSegmentorView:
Inheritance graph
[legend]
Collaboration diagram for niftk::BaseSegmentorView:
Collaboration graph
[legend]

Signals

void InteractorRequest (const ctkDictionary &)
 Signal emmitted when we need to broadcast a request to turn interactors on/off. More...
 

Public Member Functions

 BaseSegmentorView ()
 
 BaseSegmentorView (const BaseSegmentorView &other)
 
virtual ~BaseSegmentorView ()
 
- Public Member Functions inherited from niftk::BaseView
 BaseView ()
 
virtual ~BaseView ()
 
virtual void onVisibilityChanged (const mitk::DataNode *node) override
 Called when the visibility of a node in the data storage changed. More...
 
virtual void OnFocusChanged ()
 Called when the window focus changes, and tracks the current mitk::BaseRenderer*. More...
 
virtual bool IsExclusiveFunctionality () const
 Returns whether this functionality should be exclusive, or in other words, the only active plugin. More...
 
virtual bool IsActivated ()
 Returns the activation status. More...
 
virtual bool IsVisible ()
 Returns the visible status. More...
 
mitk::DataStorage::Pointer GetDataStorage () const override
 Gets the currently active data storage. More...
 
virtual void SetCurrentSelection (mitk::DataNode::Pointer dataNode) override
 Selects the data node in this view and also in the data manager. It sets the "selected" property of the node. As a (positive) side effect of changing the data manager selection, the "selected" property of the previously selected nodes will be cleared. More...
 
virtual QmitkRenderWindow * GetRenderWindow (QString id)
 Retrieves a RenderWindow from the mitkRenderWindowPart. More...
 
virtual QmitkRenderWindow * GetSelectedRenderWindow () const override
 Retrieves the currently selected RenderWindow from the mitkRenderWindowPart. More...
 
virtual bool IsActiveEditorCursorVisible () const override
 Gets the visibility of the cursor (aka. crosshair) in the 2D render windows of the main display. More...
 
virtual void SetActiveEditorCursorVisible (bool visible) const override
 Sets the visibility of the cursor (aka. crosshair) in the 2D render windows of the main display. More...
 
virtual void RequestRenderWindowUpdate (mitk::RenderingManager::RequestType requestType=mitk::RenderingManager::REQUEST_UPDATE_ALL) override
 Request an update of all render windows of the currently active render window part. More...
 
QList< mitk::DataNode::Pointer > GetDataManagerSelection () const override
 Gets the list of nodes selected in the data manager. More...
 
virtual void FireNodeSelected (mitk::DataNode::Pointer node) override
 Informs other parts of the workbench that node is selected via the blueberry selection service. More...
 
virtual
mitk::SliceNavigationController * 
GetSliceNavigationController () override
 Retrieve the current slice navigation controller from the currently focused render window. More...
 
virtual void FocusOnCurrentWindow () const override
 Used to try and get the FocusManager to focus on the Current IRenderWindowPart. More...
 
virtual mitk::Point3D GetSelectedPosition () const override
 Gets the selected position in the active render window part. More...
 
virtual void SetSelectedPosition (const mitk::Point3D &selectedPosition) override
 Sets the selected position in the active render window part. More...
 
- Public Member Functions inherited from niftk::VisibilityChangeObserver
 VisibilityChangeObserver ()
 
virtual ~VisibilityChangeObserver ()
 

Static Public Attributes

static const QString DEFAULT_COLOUR
 Stores the preference name of the default outline colour (defaults to pure green). More...
 
static const QString DEFAULT_COLOUR_STYLE_SHEET
 Stores the preference name of the default outline colour style sheet (defaults to pure green). More...
 

Protected Member Functions

virtual void Activated () override
 
virtual void Deactivated () override
 
virtual void Visible () override
 
virtual void Hidden () override
 
virtual void CreateQtPartControl (QWidget *parent) override
 Creates the GUI parts. More...
 
virtual BaseSegmentorControllerCreateSegmentorController ()=0
 Creates the segmentor controller that realises the GUI logic behind the view. More...
 
virtual void OnSelectionChanged (berry::IWorkbenchPart::Pointer part, const QList< mitk::DataNode::Pointer > &nodes) override
 
virtual void OnPreferencesChanged (const berry::IBerryPreferences *) override
 Called when preferences are updated. More...
 
virtual void RetrievePreferenceValues ()
 Retrieve's the pref values from preference service, and store locally. More...
 
virtual QString GetPreferencesNodeName ()=0
 Derived classes decide which preferences are actually read. More...
 
- Protected Member Functions inherited from niftk::BaseView
virtual QWidget * GetParent ()
 
virtual void SetParent (QWidget *)
 Normally called from within CreateQtPartControl, we store the parent widget. More...
 
void SetViewToCoordinate (const mitk::Point3D &coordinate)
 Gets the current render window, and sets it to the given coordinate, specified in millimetres. More...
 

Additional Inherited Members

- Public Types inherited from niftk::BaseView
typedef QmitkAbstractView SuperClass
 

Detailed Description

Base view component for MIDAS Segmentation widgets.

See also
BaseView
MorphologicalSegmentorView
GeneralSegmentorView

Constructor & Destructor Documentation

niftk::BaseSegmentorView::BaseSegmentorView ( )
niftk::BaseSegmentorView::BaseSegmentorView ( const BaseSegmentorView other)
niftk::BaseSegmentorView::~BaseSegmentorView ( )
virtual

Member Function Documentation

void niftk::BaseSegmentorView::Activated ( )
overrideprotectedvirtual
See also
mitk::ILifecycleAwarePart::PartActivated

Reimplemented from niftk::BaseView.

void niftk::BaseSegmentorView::CreateQtPartControl ( QWidget *  parent)
overrideprotectedvirtual

Creates the GUI parts.

virtual BaseSegmentorController* niftk::BaseSegmentorView::CreateSegmentorController ( )
protectedpure virtual

Creates the segmentor controller that realises the GUI logic behind the view.

Implemented in niftk::MorphologicalSegmentorView, and niftk::GeneralSegmentorView.

void niftk::BaseSegmentorView::Deactivated ( )
overrideprotectedvirtual
See also
mitk::ILifecycleAwarePart::PartDeactivated

Reimplemented from niftk::BaseView.

virtual QString niftk::BaseSegmentorView::GetPreferencesNodeName ( )
protectedpure virtual

Derived classes decide which preferences are actually read.

Implemented in niftk::MorphologicalSegmentorView, and niftk::GeneralSegmentorView.

void niftk::BaseSegmentorView::Hidden ( )
overrideprotectedvirtual
See also
mitk::ILifecycleAwarePart::PartHidden

Reimplemented from niftk::BaseView.

void niftk::BaseSegmentorView::InteractorRequest ( const ctkDictionary &  )
signal

Signal emmitted when we need to broadcast a request to turn interactors on/off.

void niftk::BaseSegmentorView::OnPreferencesChanged ( const berry::IBerryPreferences *  )
overrideprotectedvirtual

Called when preferences are updated.

void niftk::BaseSegmentorView::OnSelectionChanged ( berry::IWorkbenchPart::Pointer  part,
const QList< mitk::DataNode::Pointer > &  nodes 
)
overrideprotectedvirtual
See also
QmitkAbstractView::OnSelectionChanged.

Reimplemented from niftk::BaseView.

void niftk::BaseSegmentorView::RetrievePreferenceValues ( )
protectedvirtual

Retrieve's the pref values from preference service, and store locally.

void niftk::BaseSegmentorView::Visible ( )
overrideprotectedvirtual
See also
mitk::ILifecycleAwarePart::PartVisible

Reimplemented from niftk::BaseView.

Member Data Documentation

const QString niftk::BaseSegmentorView::DEFAULT_COLOUR
static

Stores the preference name of the default outline colour (defaults to pure green).

const QString niftk::BaseSegmentorView::DEFAULT_COLOUR_STYLE_SHEET
static

Stores the preference name of the default outline colour style sheet (defaults to pure green).


The documentation for this class was generated from the following files: