VTK  9.3.20240423
vtkParallelopipedWidget.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
35#ifndef vtkParallelopipedWidget_h
36#define vtkParallelopipedWidget_h
37
38#include "vtkAbstractWidget.h"
39#include "vtkInteractionWidgetsModule.h" // For export macro
40#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
41
42VTK_ABI_NAMESPACE_BEGIN
44class vtkHandleWidget;
45class vtkWidgetSet;
46
47class VTKINTERACTIONWIDGETS_EXPORT VTK_MARSHALAUTO vtkParallelopipedWidget
48 : public vtkAbstractWidget
49{
50
51 friend class vtkWidgetSet;
52
53public:
58
60 void PrintSelf(ostream& os, vtkIndent indent) override;
61
67 void SetEnabled(int) override;
68
75 {
76 this->Superclass::SetWidgetRepresentation(reinterpret_cast<vtkWidgetRepresentation*>(r));
77 }
78
83 {
84 return reinterpret_cast<vtkParallelopipedRepresentation*>(this->WidgetRep);
85 }
86
88
92 vtkSetMacro(EnableChairCreation, vtkTypeBool);
93 vtkGetMacro(EnableChairCreation, vtkTypeBool);
94 vtkBooleanMacro(EnableChairCreation, vtkTypeBool);
96
101
107
108protected:
111
118
119 // Control whether chairs can be created
121
126
127 // helper methods for cursor management
128 void SetCursor(int state) override;
129
130 // To break reference count loops
131 void ReportReferences(vtkGarbageCollector* collector) override;
132
133 // The positioning handle widgets
135
140 {
141 RequestResizeEvent = 10000,
143 RequestChairModeEvent
144 };
145
147
148private:
150 void operator=(const vtkParallelopipedWidget&) = delete;
151};
152
153VTK_ABI_NAMESPACE_END
154#endif
define the API for widget / widget representation
vtkWidgetRepresentation * WidgetRep
Detect and break reference loops.
a general widget for moving handles
a simple class to control print indentation
Definition vtkIndent.h:108
Default representation for vtkParallelopipedWidget.
a widget to manipulate 3D parallelopipeds
void CreateDefaultRepresentation() override
Create the default widget representation if one is not set.
void SetRepresentation(vtkParallelopipedRepresentation *r)
Specify an instance of vtkWidgetRepresentation used to represent this widget in the scene.
static vtkParallelopipedWidget * New()
Instantiate the object.
void ReportReferences(vtkGarbageCollector *collector) override
vtkParallelopipedRepresentation * GetParallelopipedRepresentation()
Return the representation as a vtkParallelopipedRepresentation.
void BeginTranslateAction(vtkParallelopipedWidget *dispatcher)
void SetProcessEvents(vtkTypeBool) override
Methods to change the whether the widget responds to interaction.
void TranslateAction(vtkParallelopipedWidget *dispatcher)
static void RequestResizeCallback(vtkAbstractWidget *)
static void OnLeftButtonUpCallback(vtkAbstractWidget *)
WidgetEventIds
Events invoked by this widget.
static void RequestResizeAlongAnAxisCallback(vtkAbstractWidget *)
void PrintSelf(ostream &os, vtkIndent indent) override
Standard macros implementing standard VTK methods.
void SetCursor(int state) override
static void TranslateCallback(vtkAbstractWidget *)
static void OnMouseMoveCallback(vtkAbstractWidget *)
static void RequestChairModeCallback(vtkAbstractWidget *)
void SetEnabled(int) override
Override the superclass method.
~vtkParallelopipedWidget() override
abstract class defines interface between the widget and widget representation classes
Synchronize a collection on vtkWidgets drawn on different renderwindows using the Callback - Dispatch...
int vtkTypeBool
Definition vtkABI.h:64
#define VTK_MARSHALAUTO