| 1 | // Copyright (C) 2015 Klaralvdalens Datakonsult AB (KDAB). |
| 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
| 3 | |
| 4 | #ifndef QT3DINPUT_INPUT_KEYBOARDMOUSEGENERICDEVICEINTEGRATION_P_H |
| 5 | #define QT3DINPUT_INPUT_KEYBOARDMOUSEGENERICDEVICEINTEGRATION_P_H |
| 6 | |
| 7 | // |
| 8 | // W A R N I N G |
| 9 | // ------------- |
| 10 | // |
| 11 | // This file is not part of the Qt API. It exists for the convenience |
| 12 | // of other Qt classes. This header file may change from version to |
| 13 | // version without notice, or even be removed. |
| 14 | // |
| 15 | // We mean it. |
| 16 | // |
| 17 | |
| 18 | #include <Qt3DInput/private/qinputdeviceintegration_p.h> |
| 19 | |
| 20 | QT_BEGIN_NAMESPACE |
| 21 | |
| 22 | namespace Qt3DInput { |
| 23 | |
| 24 | namespace Input { |
| 25 | |
| 26 | class InputHandler; |
| 27 | |
| 28 | class KeyboardMouseGenericDeviceIntegration : public Qt3DInput::QInputDeviceIntegration |
| 29 | { |
| 30 | Q_OBJECT |
| 31 | public: |
| 32 | explicit KeyboardMouseGenericDeviceIntegration(InputHandler *handleer); |
| 33 | ~KeyboardMouseGenericDeviceIntegration(); |
| 34 | |
| 35 | std::vector<Qt3DCore::QAspectJobPtr> jobsToExecute(qint64 time) final; |
| 36 | QAbstractPhysicalDevice *createPhysicalDevice(const QString &name) final; |
| 37 | QList<Qt3DCore::QNodeId> physicalDevices() const final; |
| 38 | QAbstractPhysicalDeviceBackendNode *physicalDevice(Qt3DCore::QNodeId id) const final; |
| 39 | QStringList deviceNames() const final; |
| 40 | |
| 41 | private: |
| 42 | void onInitialize() final; |
| 43 | |
| 44 | InputHandler *m_handler; |
| 45 | }; |
| 46 | |
| 47 | } // Input |
| 48 | |
| 49 | } // Qt3DInput |
| 50 | |
| 51 | QT_END_NAMESPACE |
| 52 | |
| 53 | #endif // QT3DINPUT_INPUT_KEYBOARDMOUSEGENERICDEVICEINTEGRATION_P_H |
| 54 | |