VTK
vtkTDxQtUnixDevices.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkActor.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 =========================================================================*/
25 #ifndef __vtkTDxQtUnixDevices_h
26 #define __vtkTDxQtUnixDevices_h
27 
28 #include <QObject>
29 #include "QVTKWin32Header.h" // for QVTK_EXPORT
30 #include "vtkTDxUnixDevice.h" // required for vtkTDxUnixDeviceXEvent
31 
32 class vtkTDxQtUnixDevicesPrivate;
33 
34 class QVTK_EXPORT vtkTDxQtUnixDevices : public QObject
35 {
36  Q_OBJECT
37 public:
40 
43  void ProcessEvent(vtkTDxUnixDeviceXEvent *e);
44 
45 signals:
49  void CreateDevice(vtkTDxDevice *device);
50 
51 protected:
52 
53  vtkTDxQtUnixDevicesPrivate *Private;
54 
55 private:
56  vtkTDxQtUnixDevices(const vtkTDxQtUnixDevices&); // Not implemented.
57  void operator=(const vtkTDxQtUnixDevices&); // Not implemented.
58 };
59 
60 #endif