VTK
vtkTDxInteractorStyle.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkTDxInteractorStyle.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 =========================================================================*/
34 #ifndef vtkTDxInteractorStyle_h
35 #define vtkTDxInteractorStyle_h
36 
37 #include "vtkRenderingCoreModule.h" // For export macro
38 #include "vtkObject.h"
39 
41 class vtkRenderer;
43 
45 {
46 public:
48  void PrintSelf(ostream& os, vtkIndent indent);
49 
50  //BTX
53  virtual void OnMotionEvent(vtkTDxMotionEventInfo *motionInfo);
54 
56  virtual void OnButtonPressedEvent(int button);
57 
59 
60  virtual void OnButtonReleasedEvent(int button);
61  //ETX
63 
65 
71  virtual void ProcessEvent(vtkRenderer *renderer,
72  unsigned long event,
73  void *calldata);
75 
77 
79  vtkGetObjectMacro(Settings,vtkTDxInteractorStyleSettings);
80  virtual void SetSettings(vtkTDxInteractorStyleSettings *settings);
82 
83 protected:
85  virtual ~vtkTDxInteractorStyle();
86 
88 
90 
91 private:
92  vtkTDxInteractorStyle(const vtkTDxInteractorStyle&); // Not implemented.
93  void operator=(const vtkTDxInteractorStyle&); // Not implemented.
94 };
95 #endif
abstract base class for most VTK objects
Definition: vtkObject.h:61
abstract specification for renderers
Definition: vtkRenderer.h:63
virtual void PrintSelf(ostream &os, vtkIndent indent)
a simple class to control print indentation
Definition: vtkIndent.h:38
Store motion information from a 3DConnexion input device.
provide 3DConnexion device event-driven interface to the rendering window
#define VTKRENDERINGCORE_EXPORT
vtkTDxInteractorStyleSettings * Settings