MITK-IGT
IGT Extension of MITK
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
mitkUSZonesInteractor.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 mitkUSZonesInteractor_h
14#define mitkUSZonesInteractor_h
15
16#include "mitkDataInteractor.h"
17
18namespace itk {
19 template<class T> class SmartPointer;
20}
21
22namespace mitk
23{
24 class Surface;
25 class DataNode;
26
45 class USZonesInteractor : public DataInteractor
46 {
47 public:
48 static const char* DATANODE_PROPERTY_SIZE;
49 static const char* DATANODE_PROPERTY_CREATED;
50
52
54
61
62 protected:
64 ~USZonesInteractor() override;
65
69 void ConnectActionsAndFunctions() override;
70
76 void DataNodeChanged() override;
77
82 void AddCenter(StateMachineAction*, InteractionEvent*);
83
92 void ChangeRadius(StateMachineAction*, InteractionEvent*);
93
98 void EndCreation(StateMachineAction*, InteractionEvent*);
99
104 void AbortCreation(StateMachineAction*, InteractionEvent*);
105 };
106} // namespace mitk
107
108#endif
DataInteractor for creating a sphere at a specific coordinate. The origin is set by mitk::USZonesInte...
static void UpdateSurface(itk::SmartPointer< mitk::DataNode >)
Creates Vtk Sphere according to current radius. The radius is gotten from the float property "zone....
void AddCenter(StateMachineAction *, InteractionEvent *)
Sets origin of the data node to the coordinates of the position event.
void ChangeRadius(StateMachineAction *, InteractionEvent *)
Updates radius attribute according to position event. Calculates distance between the data node origi...
mitkClassMacro(USZonesInteractor, DataInteractor)
static const char * DATANODE_PROPERTY_SIZE
void EndCreation(StateMachineAction *, InteractionEvent *)
Sets the property "zone.created" of the data node to true.
static const char * DATANODE_PROPERTY_CREATED
void ConnectActionsAndFunctions() override
Connects the functions from the state machine to methods of this class.
void DataNodeChanged() override
Sets empty surface as data for the new data node. This is necessary as data nodes without data do not...
void AbortCreation(StateMachineAction *, InteractionEvent *)
Removes Vtk Sphere from data node.
IGT Exceptions.