// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen // SPDX-FileCopyrightText: Copyright 2008 Sandia Corporation // SPDX-License-Identifier: LicenseRef-BSD-3-Clause-Sandia-USGov /** * @class vtkCompassWidget * @brief widget to set distance, tilt and heading * * The vtkCompassWidget is used to adjust distance, tilt and heading parameters in an * application. It uses vtkCompassRepresentation as its representation. * * To customize the widget override the CreateDefaultRepresentation method and set the * representation to your own subclass of vtkCompassRepresentation. Ranges for distance and tilt can * be set in vtkCompassRepresentation. * * @par Event Bindings: * By default, the widget responds to the following VTK events (i.e., it * watches the vtkRenderWindowInteractor for these events): *
* If the slider bead is selected: * LeftButtonPressEvent - select slider * LeftButtonReleaseEvent - release slider * MouseMoveEvent - move slider ** * @par Event Bindings: * Note that the event bindings described above can be changed using this * class's vtkWidgetEventTranslator. This class translates VTK events * into the vtkCompassWidget's widget events: *
* vtkWidgetEvent::Select -- some part of the widget has been selected * vtkWidgetEvent::EndSelect -- the selection process has completed * vtkWidgetEvent::Move -- a request for slider motion has been invoked ** * @par Event Bindings: * In turn, when these widget events are processed, the vtkCompassWidget * invokes the following VTK events on itself (which observers can listen for): *
* vtkCommand::StartInteractionEvent (on vtkWidgetEvent::Select) * vtkCommand::EndInteractionEvent (on vtkWidgetEvent::EndSelect) * vtkCommand::InteractionEvent (on vtkWidgetEvent::Move) * vtkCommand::WidgetValueChangedEvent (when widget values have changed) ** */ #ifndef vtkCompassWidget_h #define vtkCompassWidget_h #include "vtkAbstractWidget.h" #include "vtkInteractionWidgetsModule.h" // For export macro #include "vtkWrappingHints.h" // For VTK_MARSHALAUTO VTK_ABI_NAMESPACE_BEGIN class vtkCompassRepresentation; class VTKINTERACTIONWIDGETS_EXPORT VTK_MARSHALAUTO vtkCompassWidget : public vtkAbstractWidget { public: /** * Instantiate the class. */ static vtkCompassWidget* New(); ///@{ /** * Standard macros. */ vtkTypeMacro(vtkCompassWidget, vtkAbstractWidget); void PrintSelf(ostream& os, vtkIndent indent) override; ///@} /** * Specify an instance of vtkWidgetRepresentation used to represent this * widget in the scene. Note that the representation is a subclass of vtkProp * so it can be added to the renderer independent of the widget. */ void SetRepresentation(vtkCompassRepresentation* r) { this->Superclass::SetWidgetRepresentation(reinterpret_cast