VTK
vtkTDxDevice.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkTDxDevice.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 =========================================================================*/
28 #ifndef vtkTDxDevice_h
29 #define vtkTDxDevice_h
30 
31 #include "vtkRenderingOpenGLModule.h" // For export macro
32 #include "vtkObject.h"
33 
35 
37 {
38 public:
39  vtkTypeMacro(vtkTDxDevice,vtkObject);
40  void PrintSelf(ostream& os, vtkIndent indent);
41 
43  bool GetInitialized() const;
44 
49  virtual void Close()=0;
50 
53  vtkRenderWindowInteractor *GetInteractor() const;
54 
58  void SetInteractor(vtkRenderWindowInteractor *i);
59 
60 protected:
62  vtkTDxDevice();
63 
67  virtual ~vtkTDxDevice();
68 
71 
72 private:
73  vtkTDxDevice(const vtkTDxDevice&); // Not implemented.
74  void operator=(const vtkTDxDevice&); // Not implemented.
75 };
76 
77 #endif
abstract base class for most VTK objects
Definition: vtkObject.h:61
platform-independent render window interaction including picking and frame rate control.
virtual void PrintSelf(ostream &os, vtkIndent indent)
a simple class to control print indentation
Definition: vtkIndent.h:38
#define VTKRENDERINGOPENGL_EXPORT
vtkRenderWindowInteractor * Interactor
Definition: vtkTDxDevice.h:70
bool Initialized
Definition: vtkTDxDevice.h:69
API to access a 3DConnexion input device.
Definition: vtkTDxDevice.h:36