VTK  9.6.1
vtkButtonWidget.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
48
49#ifndef vtkButtonWidget_h
50#define vtkButtonWidget_h
51
52#include "vtkAbstractWidget.h"
53#include "vtkInteractionWidgetsModule.h" // For export macro
54#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
55
56VTK_ABI_NAMESPACE_BEGIN
58
59class VTKINTERACTIONWIDGETS_EXPORT VTK_MARSHALAUTO vtkButtonWidget : public vtkAbstractWidget
60{
61public:
66
68
72 void PrintSelf(ostream& os, vtkIndent indent) override;
74
84
89 {
90 return reinterpret_cast<vtkButtonRepresentation*>(this->WidgetRep);
91 }
92
97
105 void SetEnabled(int) override;
106
107protected:
109 ~vtkButtonWidget() override = default;
110
111 // These are the events that are handled
115
116 // Manage the state of the widget
124
125private:
126 vtkButtonWidget(const vtkButtonWidget&) = delete;
127 void operator=(const vtkButtonWidget&) = delete;
128};
129
130VTK_ABI_NAMESPACE_END
131#endif
void SetWidgetRepresentation(vtkWidgetRepresentation *r)
vtkWidgetRepresentation * WidgetRep
abstract class defines the representation for a vtkButtonWidget
activate an n-state button
void CreateDefaultRepresentation() override
Create the default widget representation if one is not set.
~vtkButtonWidget() override=default
vtkButtonRepresentation * GetButtonRepresentation()
Return the representation as a vtkButtonRepresentation.
static void SelectAction(vtkAbstractWidget *)
void SetEnabled(int) override
The method for activating and deactivating this widget.
static vtkButtonWidget * New()
Instantiate the class.
static void MoveAction(vtkAbstractWidget *)
void SetRepresentation(vtkButtonRepresentation *r)
Specify an instance of vtkWidgetRepresentation used to represent this widget in the scene.
void PrintSelf(ostream &os, vtkIndent indent) override
Standard macros.
static void EndSelectAction(vtkAbstractWidget *)
a simple class to control print indentation
Definition vtkIndent.h:29
abstract class defines interface between the widget and widget representation classes
#define VTK_MARSHALAUTO