VTK
dox/GUISupport/Qt/vtkTDxQtUnixDevices.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkActor.h
00005 
00006   Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
00007   All rights reserved.
00008   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00009 
00010      This software is distributed WITHOUT ANY WARRANTY; without even
00011      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
00012      PURPOSE.  See the above copyright notice for more information.
00013 
00014 =========================================================================*/
00025 #ifndef __vtkTDxQtUnixDevices_h
00026 #define __vtkTDxQtUnixDevices_h
00027 
00028 #include <QObject>
00029 #include "QVTKWin32Header.h" // for QVTK_EXPORT
00030 #include "vtkTDxUnixDevice.h" // required for vtkTDxUnixDeviceXEvent
00031 
00032 class vtkTDxQtUnixDevicesPrivate;
00033 
00034 class QVTK_EXPORT vtkTDxQtUnixDevices : public QObject
00035 {
00036   Q_OBJECT
00037 public:
00038   vtkTDxQtUnixDevices();
00039   ~vtkTDxQtUnixDevices();
00040  
00043   void ProcessEvent(vtkTDxUnixDeviceXEvent *e);
00044   
00045 signals:
00049    void CreateDevice(vtkTDxDevice *device);
00050 
00051 protected:
00052   
00053   vtkTDxQtUnixDevicesPrivate *Private;
00054   
00055 private:
00056   vtkTDxQtUnixDevices(const vtkTDxQtUnixDevices&);  // Not implemented.
00057   void operator=(const vtkTDxQtUnixDevices&);  // Not implemented.
00058 };
00059 
00060 #endif