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
37class VTKRENDERINGOPENGL_EXPORT vtkTDxDevice : public vtkObject
38{
39public:
40 vtkTypeMacro(vtkTDxDevice,vtkObject);
41 void PrintSelf(ostream& os, vtkIndent indent);
42
46 bool GetInitialized() const;
47
55 virtual void Close()=0;
56
63
71
72protected:
77
83 virtual ~vtkTDxDevice();
84
87
88private:
89 vtkTDxDevice(const vtkTDxDevice&) VTK_DELETE_FUNCTION;
90 void operator=(const vtkTDxDevice&) VTK_DELETE_FUNCTION;
91};
92
93#endif
a simple class to control print indentation
Definition: vtkIndent.h:40
abstract base class for most VTK objects
Definition: vtkObject.h:60
platform-independent render window interaction including picking and frame rate control.
API to access a 3DConnexion input device.
Definition: vtkTDxDevice.h:38
vtkRenderWindowInteractor * Interactor
Definition: vtkTDxDevice.h:86
vtkTDxDevice()
Default constructor.
bool GetInitialized() const
Tell if the device is initialized.
vtkRenderWindowInteractor * GetInteractor() const
Get the interactor on which events will be invoked.
virtual ~vtkTDxDevice()
Destructor.
virtual void Close()=0
Close the device.
bool Initialized
Definition: vtkTDxDevice.h:85
void SetInteractor(vtkRenderWindowInteractor *i)
Set the interactor on which events will be invoked.
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.