VTK  9.5.2
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
45
46#ifndef vtkButtonWidget_h
47#define vtkButtonWidget_h
48
49#include "vtkAbstractWidget.h"
50#include "vtkDeprecation.h" // For VTK_DEPRECATED_IN_9_4_0
51#include "vtkInteractionWidgetsModule.h" // For export macro
52#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
53
54VTK_ABI_NAMESPACE_BEGIN
56
57class VTKINTERACTIONWIDGETS_EXPORT VTK_MARSHALAUTO vtkButtonWidget : public vtkAbstractWidget
58{
59public:
64
66
70 void PrintSelf(ostream& os, vtkIndent indent) override;
72
82
87 {
88 return reinterpret_cast<vtkButtonRepresentation*>(this->WidgetRep);
89 }
90
94 VTK_DEPRECATED_IN_9_4_0("Please use GetButtonRepresentation() instead.")
96
101
109 void SetEnabled(int) override;
110
111protected:
113 ~vtkButtonWidget() override = default;
114
115 // These are the events that are handled
119
120 // Manage the state of the widget
128
129private:
130 vtkButtonWidget(const vtkButtonWidget&) = delete;
131 void operator=(const vtkButtonWidget&) = delete;
132};
133
134VTK_ABI_NAMESPACE_END
135#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 *)
vtkButtonRepresentation * GetSliderRepresentation()
Incorrect name for GetButtonRepresentation(), for backwards compatibility.
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_DEPRECATED_IN_9_4_0(reason)
#define VTK_MARSHALAUTO