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 "vtkObject.h"
38 
40 class vtkRenderer;
42 
44 {
45 public:
47  void PrintSelf(ostream& os, vtkIndent indent);
48 
49  //BTX
52  virtual void OnMotionEvent(vtkTDxMotionEventInfo *motionInfo);
53 
55  virtual void OnButtonPressedEvent(int button);
56 
58 
59  virtual void OnButtonReleasedEvent(int button);
60  //ETX
62 
64 
70  virtual void ProcessEvent(vtkRenderer *renderer,
71  unsigned long event,
72  void *calldata);
74 
76 
78  vtkGetObjectMacro(Settings,vtkTDxInteractorStyleSettings);
79  virtual void SetSettings(vtkTDxInteractorStyleSettings *settings);
81 
82 protected:
84  virtual ~vtkTDxInteractorStyle();
85 
87 
89 
90 private:
91  vtkTDxInteractorStyle(const vtkTDxInteractorStyle&); // Not implemented.
92  void operator=(const vtkTDxInteractorStyle&); // Not implemented.
93 };
94 #endif