VTK  9.2.6
vtkSplineWidget2.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkSplineWidget2.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=========================================================================*/
28
29#ifndef vtkSplineWidget2_h
30#define vtkSplineWidget2_h
31
32#include "vtkAbstractWidget.h"
33#include "vtkDeprecation.h" // For VTK_DEPRECATED_IN_9_2_0
34#include "vtkInteractionWidgetsModule.h" // For export macro
35
37
38class VTKINTERACTIONWIDGETS_EXPORT vtkSplineWidget2 : public vtkAbstractWidget
39{
40public:
43 void PrintSelf(ostream& os, vtkIndent indent) override;
44
54
59 void SetEnabled(int enabling) override;
60
66
67protected:
70
73 {
74 Start = 0,
76 };
77#if !defined(VTK_LEGACY_REMOVE)
78 VTK_DEPRECATED_IN_9_2_0("because leading underscore is reserved")
80#endif
81
82 // These methods handle events
88
90 static void ProcessKeyEvents(vtkObject*, unsigned long, void*, void*);
91
92private:
93 vtkSplineWidget2(const vtkSplineWidget2&) = delete;
94 void operator=(const vtkSplineWidget2&) = delete;
95};
96
97#endif
void SetWidgetRepresentation(vtkWidgetRepresentation *r)
supports function callbacks
a simple class to control print indentation
Definition vtkIndent.h:34
representation for a spline.
static vtkSplineWidget2 * New()
WidgetStateType _WidgetState
void PrintSelf(ostream &os, vtkIndent indent) override
Standard macros implementing standard VTK methods.
void CreateDefaultRepresentation() override
Create the default widget representation if one is not set.
static void MoveAction(vtkAbstractWidget *)
static void SelectAction(vtkAbstractWidget *)
void SetEnabled(int enabling) override
Override superclasses' SetEnabled() method because the line widget must enable its internal handle wi...
static void EndSelectAction(vtkAbstractWidget *)
~vtkSplineWidget2() override
static void ScaleAction(vtkAbstractWidget *)
vtkCallbackCommand * KeyEventCallbackCommand
static void TranslateAction(vtkAbstractWidget *)
void SetRepresentation(vtkSplineRepresentation *r)
Specify an instance of vtkWidgetRepresentation used to represent this widget in the scene.
static void ProcessKeyEvents(vtkObject *, unsigned long, void *, void *)
abstract class defines interface between the widget and widget representation classes
#define VTK_DEPRECATED_IN_9_2_0(reason)