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=========================================================================*/
80#ifndef vtkAngleWidget_h
81#define vtkAngleWidget_h
82
83#include "vtkAbstractWidget.h"
84#include "vtkInteractionWidgetsModule.h" // For export macro
85
87class vtkHandleWidget;
88class vtkAngleWidgetCallback;
89
90class VTKINTERACTIONWIDGETS_EXPORT vtkAngleWidget : public vtkAbstractWidget
91{
92public:
97
99
103 void PrintSelf(ostream& os, vtkIndent indent) override;
105
111 void SetEnabled(int) override;
112
119 {
120 this->Superclass::SetWidgetRepresentation(reinterpret_cast<vtkWidgetRepresentation*>(r));
121 }
122
127
132 {
133 return reinterpret_cast<vtkAngleRepresentation*>(this->WidgetRep);
134 }
135
141
147
154 enum
155 {
156 Start = 0,
158 Manipulate
159 };
160
162
172 virtual void SetWidgetStateToStart();
175
179 virtual int GetWidgetState() { return this->WidgetState; }
180
181protected:
183 ~vtkAngleWidget() override;
184
185 // The state of the widget
188
189 // Callback interface to capture events when
190 // placing the widget.
194
195 // The positioning handle widgets
199 vtkAngleWidgetCallback* AngleWidgetCallback1;
200 vtkAngleWidgetCallback* AngleWidgetCenterCallback;
201 vtkAngleWidgetCallback* AngleWidgetCallback2;
202
203 // Methods invoked when the handles at the
204 // end points of the widget are manipulated
205 void StartAngleInteraction(int handleNum);
206 void AngleInteraction(int handleNum);
207 void EndAngleInteraction(int handleNum);
208
209 friend class vtkAngleWidgetCallback;
210
211private:
212 vtkAngleWidget(const vtkAngleWidget&) = delete;
213 void operator=(const vtkAngleWidget&) = delete;
214};
215
216#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