VTK  9.4.20251007
vtkHoverWidget.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
63
64#ifndef vtkHoverWidget_h
65#define vtkHoverWidget_h
66
67#include "vtkAbstractWidget.h"
68#include "vtkInteractionWidgetsModule.h" // For export macro
69#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
70
71VTK_ABI_NAMESPACE_BEGIN
72class VTKINTERACTIONWIDGETS_EXPORT VTK_MARSHALAUTO vtkHoverWidget : public vtkAbstractWidget
73{
74public:
79
81
85 void PrintSelf(ostream& os, vtkIndent indent) override;
87
89
94 vtkSetClampMacro(TimerDuration, int, 1, 100000);
95 vtkGetMacro(TimerDuration, int);
97
102 void SetEnabled(int) override;
103
109 void CreateDefaultRepresentation() override { this->WidgetRep = nullptr; }
110
111protected:
113 ~vtkHoverWidget() override;
114
115 // The state of the widget
116
117 enum
118 {
119 Start = 0,
122 };
123
125
126 // Callback interface to execute events
130
131 // Subclasses of this class invoke these methods. If a non-zero
132 // value is returned, a subclass is handling the event.
133 virtual int SubclassHoverAction() { return 0; }
134 virtual int SubclassEndHoverAction() { return 0; }
135 virtual int SubclassSelectAction() { return 0; }
136
138
144
145private:
146 vtkHoverWidget(const vtkHoverWidget&) = delete;
147 void operator=(const vtkHoverWidget&) = delete;
148};
149
150VTK_ABI_NAMESPACE_END
151#endif
vtkWidgetRepresentation * WidgetRep
virtual int SubclassSelectAction()
int TimerId
Helper methods for creating and destroying timers.
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods for a VTK class.
static vtkHoverWidget * New()
Instantiate this class.
void CreateDefaultRepresentation() override
A default representation, of which there is none, is created.
static void HoverAction(vtkAbstractWidget *)
int TimerDuration
Helper methods for creating and destroying timers.
~vtkHoverWidget() override
static void MoveAction(vtkAbstractWidget *)
static void SelectAction(vtkAbstractWidget *)
void SetEnabled(int) override
The method for activating and deactivating this widget.
virtual int SubclassEndHoverAction()
virtual int SubclassHoverAction()
a simple class to control print indentation
Definition vtkIndent.h:29
#define VTK_MARSHALAUTO