VTK
/Users/kitware/Dashboards/MyTests/VTK_BLD_Release_docs/Utilities/Doxygen/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 "vtkGUISupportQtModule.h" // For export macro
00029 #include <QObject>
00030 #include "QVTKWin32Header.h" // for VTKGUISUPPORTQT_EXPORT
00031 #include "vtkTDxUnixDevice.h" // required for vtkTDxUnixDeviceXEvent
00032 
00033 class vtkTDxQtUnixDevicesPrivate;
00034 
00035 class VTKGUISUPPORTQT_EXPORT vtkTDxQtUnixDevices : public QObject
00036 {
00037   Q_OBJECT
00038 public:
00039   vtkTDxQtUnixDevices();
00040   ~vtkTDxQtUnixDevices();
00041 
00044   void ProcessEvent(vtkTDxUnixDeviceXEvent *e);
00045 
00046 signals:
00050    void CreateDevice(vtkTDxDevice *device);
00051 
00052 protected:
00053 
00054   vtkTDxQtUnixDevicesPrivate *Private;
00055 
00056 private:
00057   vtkTDxQtUnixDevices(const vtkTDxQtUnixDevices&);  // Not implemented.
00058   void operator=(const vtkTDxQtUnixDevices&);  // Not implemented.
00059 };
00060 
00061 #endif