VTK  9.1.0
vtkAngleWidget.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkAngleWidget.h,v
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=========================================================================*/
86#ifndef vtkAngleWidget_h
87#define vtkAngleWidget_h
88
89#include "vtkAbstractWidget.h"
90#include "vtkInteractionWidgetsModule.h" // For export macro
91
93class vtkHandleWidget;
94class vtkAngleWidgetCallback;
95
96class VTKINTERACTIONWIDGETS_EXPORT vtkAngleWidget : public vtkAbstractWidget
97{
98public:
103
105
109 void PrintSelf(ostream& os, vtkIndent indent) override;
111
117 void SetEnabled(int) override;
118
125 {
126 this->Superclass::SetWidgetRepresentation(reinterpret_cast<vtkWidgetRepresentation*>(r));
127 }
128
133
138 {
139 return reinterpret_cast<vtkAngleRepresentation*>(this->WidgetRep);
140 }
141
147
153
160 enum
161 {
162 Start = 0,
164 Manipulate
165 };
166
168
178 virtual void SetWidgetStateToStart();
181
185 virtual int GetWidgetState() { return this->WidgetState; }
186
187protected:
189 ~vtkAngleWidget() override;
190
191 // The state of the widget
194
195 // Callback interface to capture events when
196 // placing the widget.
200
201 // The positioning handle widgets
205 vtkAngleWidgetCallback* AngleWidgetCallback1;
206 vtkAngleWidgetCallback* AngleWidgetCenterCallback;
207 vtkAngleWidgetCallback* AngleWidgetCallback2;
208
209 // Methods invoked when the handles at the
210 // end points of the widget are manipulated
211 void StartAngleInteraction(int handleNum);
212 void AngleInteraction(int handleNum);
213 void EndAngleInteraction(int handleNum);
214
215 friend class vtkAngleWidgetCallback;
216
217private:
218 vtkAngleWidget(const vtkAngleWidget&) = delete;
219 void operator=(const vtkAngleWidget&) = delete;
220};
221
222#endif
define the API for widget / widget representation
vtkWidgetRepresentation * WidgetRep
represent the vtkAngleWidget
measure the angle between two rays (defined by three points)
~vtkAngleWidget() override
void CreateDefaultRepresentation() override
Create the default widget representation if one is not set.
vtkAngleWidgetCallback * AngleWidgetCallback2
vtkAngleWidgetCallback * AngleWidgetCallback1
vtkHandleWidget * Point2Widget
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods for a VTK class.
vtkAngleRepresentation * GetAngleRepresentation()
Return the representation as a vtkAngleRepresentation.
vtkTypeBool IsAngleValid()
A flag indicates whether the angle is valid.
vtkAngleWidgetCallback * AngleWidgetCenterCallback
virtual void SetWidgetStateToStart()
Set the state of the widget.
virtual int GetWidgetState()
Return the current widget state.
vtkHandleWidget * CenterWidget
static void EndSelectAction(vtkAbstractWidget *)
static void AddPointAction(vtkAbstractWidget *)
static vtkAngleWidget * New()
Instantiate this class.
void AngleInteraction(int handleNum)
void SetRepresentation(vtkAngleRepresentation *r)
Specify an instance of vtkWidgetRepresentation used to represent this widget in the scene.
static void MoveAction(vtkAbstractWidget *)
void StartAngleInteraction(int handleNum)
virtual void SetWidgetStateToManipulate()
Set the state of the widget.
void SetProcessEvents(vtkTypeBool) override
Methods to change the whether the widget responds to interaction.
vtkHandleWidget * Point1Widget
void SetEnabled(int) override
The method for activating and deactivating this widget.
void EndAngleInteraction(int handleNum)
a general widget for moving handles
a simple class to control print indentation
Definition: vtkIndent.h:43
abstract class defines interface between the widget and widget representation classes
int vtkTypeBool
Definition: vtkABI.h:69