VTK  9.3.20240727
vtkBorderWidget.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
126#ifndef vtkBorderWidget_h
127#define vtkBorderWidget_h
128
129#include "vtkAbstractWidget.h"
130#include "vtkInteractionWidgetsModule.h" // For export macro
131#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
132
133VTK_ABI_NAMESPACE_BEGIN
135
136class VTKINTERACTIONWIDGETS_EXPORT VTK_MARSHALAUTO vtkBorderWidget : public vtkAbstractWidget
137{
138public:
143
145
149 void PrintSelf(ostream& os, vtkIndent indent) override;
151
153
159 vtkSetMacro(Selectable, vtkTypeBool);
160 vtkGetMacro(Selectable, vtkTypeBool);
161 vtkBooleanMacro(Selectable, vtkTypeBool);
163
165
170 vtkSetMacro(Resizable, vtkTypeBool);
171 vtkGetMacro(Resizable, vtkTypeBool);
172 vtkBooleanMacro(Resizable, vtkTypeBool);
174
181 {
182 this->Superclass::SetWidgetRepresentation(reinterpret_cast<vtkWidgetRepresentation*>(r));
183 }
184
189 {
190 return reinterpret_cast<vtkBorderRepresentation*>(this->WidgetRep);
191 }
192
197
203
204protected:
207
213 virtual void SelectRegion(double eventPos[2]);
214
215 // enable the selection of the region interior to the widget
218
219 // processes the registered events
225
226 // Special internal methods to support subclasses handling events.
227 // If a non-zero value is returned, the subclass is handling the event.
228 virtual int SubclassSelectAction() { return 0; }
229 virtual int SubclassTranslateAction() { return 0; }
230 virtual int SubclassEndSelectAction() { return 0; }
231 virtual int SubclassMoveAction() { return 0; }
232
233 // helper methods for cursoe management
234 void SetCursor(int State) override;
235
236 // widget state
239 {
240 Start = 0,
243 Selected
244 };
245
246private:
247 vtkBorderWidget(const vtkBorderWidget&) = delete;
248 void operator=(const vtkBorderWidget&) = delete;
249};
250
251VTK_ABI_NAMESPACE_END
252#endif
define the API for widget / widget representation
vtkWidgetRepresentation * WidgetRep
represent a vtkBorderWidget
place a border around a 2D rectangular region
static vtkBorderWidget * New()
Method to instantiate class.
vtkTypeBool Resizable
static void SelectAction(vtkAbstractWidget *)
static void TranslateAction(vtkAbstractWidget *)
virtual void SelectRegion(double eventPos[2])
Subclasses generally implement this method.
~vtkBorderWidget() override
void SetCursor(int State) override
vtkTypeBool Selectable
virtual int SubclassSelectAction()
static void EndSelectAction(vtkAbstractWidget *)
static void HoverLeaveAction(vtkAbstractWidget *)
void CreateDefaultRepresentation() override
Create the default widget representation if one is not set.
virtual int SubclassMoveAction()
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods for class.
virtual int SubclassEndSelectAction()
virtual int SubclassTranslateAction()
void SetRepresentation(vtkBorderRepresentation *r)
Specify an instance of vtkWidgetRepresentation used to represent this widget in the scene.
vtkTypeBool GetProcessEvents() override
Reimplement ProcessEvents to disable it when using relative location with windowLocation.
vtkBorderRepresentation * GetBorderRepresentation()
Return the representation as a vtkBorderRepresentation.
static void MoveAction(vtkAbstractWidget *)
a simple class to control print indentation
Definition vtkIndent.h:108
abstract class defines interface between the widget and widget representation classes
int vtkTypeBool
Definition vtkABI.h:64
#define VTK_MARSHALAUTO