MITK-IGT
IGT Extension of MITK
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
QmitkUSNavigationStepZoneMarking.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 QmitkUSNavigationStepZoneMarking_h
14#define QmitkUSNavigationStepZoneMarking_h
15
17
18namespace itk {
19template<class T> class SmartPointer;
20}
21
22namespace mitk {
23class NodeDisplacementFilter;
24class NavigationDataSource;
25}
26
27namespace Ui {
29}
30
42{
43 Q_OBJECT
44
45protected slots:
46 void OnFreeze(bool freezed);
47
52 void OnZoneAdded();
53
59 void OnZoneRemoved();
60
61 void OnShowListClicked(int state);
62
63public:
64 explicit QmitkUSNavigationStepZoneMarking(QWidget *parent = nullptr);
66
71 bool OnStartStep() override;
72
77 bool OnStopStep() override;
78
83 bool OnFinishStep() override;
84
90 bool OnActivateStep() override;
91
92 bool OnDeactivateStep() override;
93
97 void OnUpdate() override;
98
102 void OnSettingsChanged(const itk::SmartPointer<mitk::DataNode> settingsNode) override;
103
104 QString GetTitle() override;
105
109 FilterVector GetFilter() override;
110
111protected:
112 void OnSetCombinedModality() override;
113
115
118 std::vector<itk::SmartPointer<mitk::DataNode> > m_ZoneNodes;
119
123
125
126private:
127 Ui::QmitkUSNavigationStepZoneMarking *ui;
128};
129
130#endif
Abstract base class for navigation step widgets.
std::vector< itk::SmartPointer< mitk::NavigationDataToNavigationDataFilter > > FilterVector
Navigation step for marking risk structures. The user can add risk structures by interacting with the...
QString GetTitle() override
Getter for the title of the navigation step. This title should be human readable and can be used to d...
bool OnFinishStep() override
There is nothing to be done.
void OnZoneRemoved()
Triggered when a risk zone was removed. Removes the zone from a member variable and from the node dis...
itk::SmartPointer< mitk::NavigationDataSource > m_NavigationDataSource
bool OnStopStep() override
Resets widget and filter and removes nodes from the data storage.
void OnSettingsChanged(const itk::SmartPointer< mitk::DataNode > settingsNode) override
itk::SmartPointer< mitk::NodeDisplacementFilter > m_ZoneDisplacementFilter
void OnSetCombinedModality() override
Called every time SetCombinedModality() was called. This method may be implemented by a concrete subc...
void OnUpdate() override
Updates just the tracking validity status.
void OnZoneAdded()
Triggered when a risk zone was added. Adds the zone to a member variable and to the node displacement...
bool OnStartStep() override
Initialization of the data storage nodes.
bool OnActivateStep() override
Selects input for the node displacement filter and emits "ReadyForNextStep" signal....
bool OnDeactivateStep() override
Called when the navigation step gets deactivated (-> state started). This method may be implemented b...
std::vector< itk::SmartPointer< mitk::DataNode > > m_ZoneNodes
IGT Exceptions.