VTK  9.0.1
vtkResliceCursorWidget.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkResliceCursorWidget.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
45 #ifndef vtkResliceCursorWidget_h
46 #define vtkResliceCursorWidget_h
47 
48 #include "vtkAbstractWidget.h"
49 #include "vtkInteractionWidgetsModule.h" // For export macro
50 
52 
53 class VTKINTERACTIONWIDGETS_EXPORT vtkResliceCursorWidget : public vtkAbstractWidget
54 {
55 public:
59  static vtkResliceCursorWidget* New();
60 
62 
66  void PrintSelf(ostream& os, vtkIndent indent) override;
68 
75  {
76  this->Superclass::SetWidgetRepresentation(reinterpret_cast<vtkWidgetRepresentation*>(r));
77  }
78 
83  {
84  return reinterpret_cast<vtkResliceCursorRepresentation*>(this->WidgetRep);
85  }
86 
90  void CreateDefaultRepresentation() override;
91 
97  void SetEnabled(int) override;
98 
100 
103  vtkSetMacro(ManageWindowLevel, vtkTypeBool);
104  vtkGetMacro(ManageWindowLevel, vtkTypeBool);
105  vtkBooleanMacro(ManageWindowLevel, vtkTypeBool);
107 
111  enum
112  {
113  WindowLevelEvent = 1055,
116  ResetCursorEvent
117  };
118 
122  virtual void ResetResliceCursor();
123 
124 protected:
126  ~vtkResliceCursorWidget() override;
127 
128  // These are the callbacks for this widget
129  static void SelectAction(vtkAbstractWidget*);
130  static void RotateAction(vtkAbstractWidget*);
131  static void EndSelectAction(vtkAbstractWidget*);
132  static void ResizeThicknessAction(vtkAbstractWidget*);
133  static void EndResizeThicknessAction(vtkAbstractWidget*);
134  static void MoveAction(vtkAbstractWidget*);
135  static void ResetResliceCursorAction(vtkAbstractWidget*);
136 
137  // helper methods for cursor management
138  void SetCursor(int state) override;
139 
140  // Start Window Level
141  void StartWindowLevel();
142 
143  // Invoke the appropriate event based on state
144  void InvokeAnEvent();
145 
146  // Manage the state of the widget
149  {
150  Start = 0,
151  Active
152  };
153 
154  // Keep track whether key modifier key is pressed
157 
158 private:
160  void operator=(const vtkResliceCursorWidget&) = delete;
161 };
162 
163 #endif
vtkAbstractWidget::SetCursor
virtual void SetCursor(int vtkNotUsed(state))
Definition: vtkAbstractWidget.h:179
vtkResliceCursorWidget::GetResliceCursorRepresentation
vtkResliceCursorRepresentation * GetResliceCursorRepresentation()
Return the representation as a vtkResliceCursorRepresentation.
Definition: vtkResliceCursorWidget.h:82
vtkAbstractWidget::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkAbstractWidget.h
vtkResliceCursorWidget
represent a reslice cursor
Definition: vtkResliceCursorWidget.h:53
vtkObject::New
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
vtkWidgetRepresentation
abstract class defines interface between the widget and widget representation classes
Definition: vtkWidgetRepresentation.h:59
vtkAbstractWidget::WidgetRep
vtkWidgetRepresentation * WidgetRep
Definition: vtkAbstractWidget.h:175
vtkResliceCursorWidget::ManageWindowLevel
vtkTypeBool ManageWindowLevel
Definition: vtkResliceCursorWidget.h:156
vtkAbstractWidget
define the API for widget / widget representation
Definition: vtkAbstractWidget.h:65
vtkResliceCursorWidget::_WidgetState
_WidgetState
Definition: vtkResliceCursorWidget.h:148
vtkAbstractWidget::CreateDefaultRepresentation
virtual void CreateDefaultRepresentation()=0
Create the default widget representation if one is not set.
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:33
vtkResliceCursorWidget::SetRepresentation
void SetRepresentation(vtkResliceCursorRepresentation *r)
Specify an instance of vtkWidgetRepresentation used to represent this widget in the scene.
Definition: vtkResliceCursorWidget.h:74
vtkResliceCursorWidget::ResliceAxesChangedEvent
@ ResliceAxesChangedEvent
Definition: vtkResliceCursorWidget.h:114
vtkAbstractWidget::SetEnabled
void SetEnabled(int) override
Methods for activating this widget.
vtkResliceCursorWidget::ModifierActive
int ModifierActive
Definition: vtkResliceCursorWidget.h:155
vtkResliceCursorWidget::ResliceThicknessChangedEvent
@ ResliceThicknessChangedEvent
Definition: vtkResliceCursorWidget.h:115
vtkResliceCursorRepresentation
represent the vtkResliceCursorWidget
Definition: vtkResliceCursorRepresentation.h:54
vtkTypeBool
int vtkTypeBool
Definition: vtkABI.h:69
vtkResliceCursorWidget::WidgetState
int WidgetState
Definition: vtkResliceCursorWidget.h:147