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 =========================================================================*/
29 #ifndef vtkTDxDevice_h
30 #define vtkTDxDevice_h
31 
32 #include "vtkRenderingOpenGLModule.h" // For export macro
33 #include "vtkObject.h"
34 
36 
37 class VTKRENDERINGOPENGL_EXPORT vtkTDxDevice : public vtkObject
38 {
39 public:
40  vtkTypeMacro(vtkTDxDevice,vtkObject);
41  void PrintSelf(ostream& os, vtkIndent indent);
42 
46  bool GetInitialized() const;
47 
55  virtual void Close()=0;
56 
62  vtkRenderWindowInteractor *GetInteractor() const;
63 
70  void SetInteractor(vtkRenderWindowInteractor *i);
71 
72 protected:
76  vtkTDxDevice();
77 
83  virtual ~vtkTDxDevice();
84 
87 
88 private:
89  vtkTDxDevice(const vtkTDxDevice&) VTK_DELETE_FUNCTION;
90  void operator=(const vtkTDxDevice&) VTK_DELETE_FUNCTION;
91 };
92 
93 #endif
abstract base class for most VTK objects
Definition: vtkObject.h:59
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
platform-independent render window interaction including picking and frame rate control.
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkRenderWindowInteractor * Interactor
Definition: vtkTDxDevice.h:86
bool Initialized
Definition: vtkTDxDevice.h:85
API to access a 3DConnexion input device.
Definition: vtkTDxDevice.h:37