VTK  9.2.6
vtkWidgetEventTranslator.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkWidgetEventTranslator.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
36#ifndef vtkWidgetEventTranslator_h
37#define vtkWidgetEventTranslator_h
38
39#include "vtkInteractionWidgetsModule.h" // For export macro
40#include "vtkObject.h"
41
42// Support PIMPL encapsulation of internal STL map
43class vtkEventMap;
46class vtkEvent;
48class vtkEventData;
49
50// This is a lightweight class that should be used internally by the widgets
51class VTKINTERACTIONWIDGETS_EXPORT vtkWidgetEventTranslator : public vtkObject
52{
53public:
58
60
64 void PrintSelf(ostream& os, vtkIndent indent) override;
66
68
73 void SetTranslation(unsigned long VTKEvent, unsigned long widgetEvent);
74 void SetTranslation(const char* VTKEvent, const char* widgetEvent);
75 void SetTranslation(unsigned long VTKEvent, int modifier, char keyCode, int repeatCount,
76 const char* keySym, unsigned long widgetEvent);
77 void SetTranslation(vtkEvent* VTKevent, unsigned long widgetEvent);
78 void SetTranslation(unsigned long VTKEvent, vtkEventData* edata, unsigned long widgetEvent);
80
82
86 unsigned long GetTranslation(unsigned long VTKEvent);
87 const char* GetTranslation(const char* VTKEvent);
88 unsigned long GetTranslation(
89 unsigned long VTKEvent, int modifier, char keyCode, int repeatCount, const char* keySym);
90 unsigned long GetTranslation(unsigned long VTKEvent, vtkEventData* edata);
91 unsigned long GetTranslation(vtkEvent* VTKEvent);
93
95
100 unsigned long VTKEvent, int modifier, char keyCode, int repeatCount, const char* keySym);
103 int RemoveTranslation(unsigned long VTKEvent);
104 int RemoveTranslation(const char* VTKEvent);
106
112
114
120
121protected:
122 // Constructors/destructors made public for widgets to use
125
126 // Map VTK events to widget events
127 vtkEventMap* EventMap;
128
129 // Used for performance reasons to avoid object construction/deletion
131
132private:
134 void operator=(const vtkWidgetEventTranslator&) = delete;
135};
136
137#endif /* vtkWidgetEventTranslator_h */
define the API for widget / widget representation
supports function callbacks
a complete specification of a VTK event including all modifiers
Definition: vtkEvent.h:35
a simple class to control print indentation
Definition: vtkIndent.h:40
abstract base class for most VTK objects
Definition: vtkObject.h:63
platform-independent render window interaction including picking and frame rate control.
map VTK events into widget events
void AddEventsToInteractor(vtkRenderWindowInteractor *, vtkCallbackCommand *, float priority)
Add the events in the current translation table to the interactor.
int RemoveTranslation(unsigned long VTKEvent)
Remove translations for a binding.
unsigned long GetTranslation(unsigned long VTKEvent, int modifier, char keyCode, int repeatCount, const char *keySym)
Translate a VTK event into a widget event.
void SetTranslation(const char *VTKEvent, const char *widgetEvent)
Use these methods to create the translation from a VTK event to a widget event.
void SetTranslation(unsigned long VTKEvent, vtkEventData *edata, unsigned long widgetEvent)
Use these methods to create the translation from a VTK event to a widget event.
const char * GetTranslation(const char *VTKEvent)
Translate a VTK event into a widget event.
void ClearEvents()
Clear all events from the translator (i.e., no events will be translated).
void AddEventsToParent(vtkAbstractWidget *, vtkCallbackCommand *, float priority)
Add the events in the current translation table to the interactor.
void SetTranslation(unsigned long VTKEvent, unsigned long widgetEvent)
Use these methods to create the translation from a VTK event to a widget event.
void PrintSelf(ostream &os, vtkIndent indent) override
Standard macros.
int RemoveTranslation(unsigned long VTKEvent, int modifier, char keyCode, int repeatCount, const char *keySym)
Remove translations for a binding.
int RemoveTranslation(const char *VTKEvent)
Remove translations for a binding.
static vtkWidgetEventTranslator * New()
Instantiate the object.
unsigned long GetTranslation(vtkEvent *VTKEvent)
Translate a VTK event into a widget event.
void SetTranslation(vtkEvent *VTKevent, unsigned long widgetEvent)
Use these methods to create the translation from a VTK event to a widget event.
void SetTranslation(unsigned long VTKEvent, int modifier, char keyCode, int repeatCount, const char *keySym, unsigned long widgetEvent)
Use these methods to create the translation from a VTK event to a widget event.
unsigned long GetTranslation(unsigned long VTKEvent)
Translate a VTK event into a widget event.
int RemoveTranslation(vtkEvent *e)
Remove translations for a binding.
unsigned long GetTranslation(unsigned long VTKEvent, vtkEventData *edata)
Translate a VTK event into a widget event.
~vtkWidgetEventTranslator() override
int RemoveTranslation(vtkEventData *e)
Remove translations for a binding.