MITK-IGT
IGT Extension of MITK
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
QmitkUSAbstractNavigationStep.h
Go to the documentation of this file.
1/*============================================================================
2
3The Medical Imaging Interaction Toolkit (MITK)
4
5Copyright (c) German Cancer Research Center (DKFZ)
6All rights reserved.
7
8Use of this source code is governed by a 3-clause BSD license that can be
9found in the LICENSE file.
10
11============================================================================*/
12
13#ifndef QmitkUSAbstractNavigationStep_h
14#define QmitkUSAbstractNavigationStep_h
15
16#include <QWidget>
17
18#include "mitkDataStorage.h"
20
21namespace itk {
22template<class T> class SmartPointer;
23}
24
25namespace mitk {
26class NavigationDataToNavigationDataFilter;
27}
28
41class QmitkUSAbstractNavigationStep : public QWidget
42{
43 Q_OBJECT
44
45signals:
51
58
65
73
79
80public:
81 typedef std::vector< itk::SmartPointer<mitk::NavigationDataToNavigationDataFilter> > FilterVector;
82
84
85 static const char* DATANAME_SETTINGS;
86 static const char* DATANAME_IMAGESTREAM;
87 static const char* DATANAME_BASENODE;
88
89 explicit QmitkUSAbstractNavigationStep(QWidget *parent = nullptr);
91
98 virtual QString GetTitle() = 0;
99
107 virtual bool GetIsRestartable();
108
114 virtual void OnSettingsChanged(const itk::SmartPointer<mitk::DataNode> /*settingsNode*/) { }
115
123 virtual FilterVector GetFilter();
124
129
135
140 bool StartStep();
141
146 bool StopStep();
147
152 bool RestartStep();
153
160 bool FinishStep();
161
168 bool ActivateStep();
169
174 bool DeactivateStep();
175
180 void Update();
181
187
188protected:
197 virtual bool OnStartStep() = 0;
198
207 virtual bool OnStopStep() { return true; }
208
217 virtual bool OnRestartStep();
218
226 virtual bool OnFinishStep() = 0;
227
235 virtual bool OnActivateStep() = 0;
236
245 virtual bool OnDeactivateStep() { return true; }
246
252 virtual void OnUpdate() = 0;
253
259 virtual void OnSetCombinedModality() { }
260
269
278
287 itk::SmartPointer<mitk::DataNode> GetNamedDerivedNode(const char* name, const char* sourceName);
288
298 itk::SmartPointer<mitk::DataNode> GetNamedDerivedNodeAndCreate(const char* name, const char* sourceName);
299
300private:
303
304 NavigationStepState m_NavigationStepState;
305};
306
307#endif
Abstract base class for navigation step widgets.
itk::SmartPointer< mitk::DataStorage > GetDataStorage(bool throwNull=true)
Returns the data storage set for the navigation step.
void SignalNoLongerReadyForNextStep()
Signals that it is no longer possible to proceed with following steps. This signal is emitted when th...
NavigationStepState GetNavigationStepState()
Get the current state of the navigation step.
bool DeactivateStep()
Should be called to deactivate the navigation step.
void SignalSettingsNodeChanged(itk::SmartPointer< mitk::DataNode >)
Signals that the settings node was changed. This signal must not be emitted in an OnSettingsChanged()...
virtual FilterVector GetFilter()
Getter for navigation data filters of the navigation step. This method may be implemented by a concre...
QmitkUSAbstractNavigationStep(QWidget *parent=nullptr)
void Update()
Should be called periodically while the navigation step is active. Internal, the method OnUpdate() is...
void SignalReadyForNextStep()
Signals that all necessary actions where done. The user can proceed with the next stept after this wa...
void SignalCombinedModalityChanged(itk::SmartPointer< mitk::AbstractUltrasoundTrackerDevice >)
Signals that the combined modality was changed by this step. This signal is mainly for steps which cr...
virtual bool OnDeactivateStep()
Called when the navigation step gets deactivated (-> state started). This method may be implemented b...
bool StopStep()
Should be called to stop the navigation step.
virtual void OnSettingsChanged(const itk::SmartPointer< mitk::DataNode >)
Called every time the settings for the navigation process where changed. This method may be implement...
void SetCombinedModality(itk::SmartPointer< mitk::AbstractUltrasoundTrackerDevice > combinedModality)
Sets the combined modality for the navigation step. OnSetCombinedModality() is called internal.
virtual bool OnStartStep()=0
Called when the navigation step gets started. This method has to be implemented by a concrete subclas...
itk::SmartPointer< mitk::DataNode > GetNamedDerivedNodeAndCreate(const char *name, const char *sourceName)
Returns node with the given name and the given source node (parent) from the data storage....
bool RestartStep()
Should be called to restart the navigation step.
itk::SmartPointer< mitk::AbstractUltrasoundTrackerDevice > GetCombinedModality(bool throwNull=true)
Returns the combined modality set for the navigation step.
virtual void OnUpdate()=0
Called periodically while a navigation step is active. This method has to be implemented by a concret...
bool StartStep()
Should be called to start the navigation step.
virtual bool OnActivateStep()=0
Called when the navigation step gets activated. This method has to be implemented by a concrete subcl...
virtual bool GetIsRestartable()
Indicates if it makes sense to be able to restart the step. This method must be implemented by concre...
std::vector< itk::SmartPointer< mitk::NavigationDataToNavigationDataFilter > > FilterVector
virtual bool OnFinishStep()=0
Called when all necessary actions for the step where done. This method has to be implemented by a con...
bool ActivateStep()
Should be called to activate the navigation step. The step gets started before if it was stopped.
virtual bool OnRestartStep()
Called when restarting a navigation step. This method may be implemented by a concrete subclass to ha...
void SignalIntermediateResult(const itk::SmartPointer< mitk::DataNode >)
Signals that an intermediate result was produced. The properties of the given data node must contain ...
bool FinishStep()
Should be called to finish the navigation step. The state has to be 'active' before and is 'started' ...
void SetDataStorage(itk::SmartPointer< mitk::DataStorage > dataStorage)
Sets the data storage for the exchange of results between navigation steps.
itk::SmartPointer< mitk::DataNode > GetNamedDerivedNode(const char *name, const char *sourceName)
Returns node with the given name and the given source node (parent) from the data storage.
virtual bool OnStopStep()
Callen when the navigation step gets stopped. This method may be implemented by a concrete subclass t...
virtual void OnSetCombinedModality()
Called every time SetCombinedModality() was called. This method may be implemented by a concrete subc...
virtual QString GetTitle()=0
Getter for the title of the navigation step. This title should be human readable and can be used to d...
IGT Exceptions.