VTK  9.1.0
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=========================================================================*/
26#ifndef vtkTDxQtUnixDevices_h
27#define vtkTDxQtUnixDevices_h
28
29#include "QVTKWin32Header.h" // for VTKGUISUPPORTQT_EXPORT
30#include "vtkGUISupportQtModule.h" // For export macro
31#include "vtkTDxUnixDevice.h" // required for vtkTDxUnixDeviceXEvent
32#include <QObject>
33
34class vtkTDxQtUnixDevicesPrivate;
35
36class VTKGUISUPPORTQT_EXPORT vtkTDxQtUnixDevices : public QObject
37{
38 Q_OBJECT
39public:
42
48 void ProcessEvent(vtkTDxUnixDeviceXEvent* e);
49
50Q_SIGNALS:
56 void CreateDevice(vtkTDxDevice* device);
57
58protected:
59 vtkTDxQtUnixDevicesPrivate* Private;
60
61private:
63 void operator=(const vtkTDxQtUnixDevices&) = delete;
64};
65
66#endif
67// VTK-HeaderTest-Exclude: vtkTDxQtUnixDevices.h
Manage a list vtkTDXUnixDevice(s).
void CreateDevice(vtkTDxDevice *device)
This signal should be connected to a slot in the QApplication.
void ProcessEvent(vtkTDxUnixDeviceXEvent *e)
Process X11 event ā€˜eā€™.
vtkTDxQtUnixDevicesPrivate * Private