VTK
vtkContextKeyEvent.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkContextScene.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 =========================================================================*/
15 
24 #ifndef vtkContextKeyEvent_h
25 #define vtkContextKeyEvent_h
26 
27 #include "vtkRenderingContext2DModule.h" // For export macro
28 #include "vtkWeakPointer.h" // For vtkWeakPointer
29 #include "vtkVector.h" // For vtkVector2i
30 
32 
34 {
35 public:
38 
40  void SetInteractor(vtkRenderWindowInteractor *interactor);
41 
44  vtkRenderWindowInteractor* GetInteractor() const;
45 
47  void SetPosition(const vtkVector2i& position) { this->Position = position; }
48 
50  vtkVector2i GetPosition() const { return this->Position; }
51 
52  char GetKeyCode() const;
53 
54 protected:
57 };
58 
59 #endif // vtkContextKeyEvent_h
60 // VTK-HeaderTest-Exclude: vtkContextKeyEvent.h
data structure to represent key events.
vtkVector2i GetPosition() const
platform-independent render window interaction including picking and frame rate control.
void SetPosition(const vtkVector2i &position)
#define VTKRENDERINGCONTEXT2D_EXPORT
vtkWeakPointer< vtkRenderWindowInteractor > Interactor