123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- #ifndef QT3DINPUT_QLOGICALDEVICE_H
- #define QT3DINPUT_QLOGICALDEVICE_H
- #include <Qt3DInput/qt3dinput_global.h>
- #include <Qt3DCore/qcomponent.h>
- QT_BEGIN_NAMESPACE
- namespace Qt3DInput {
- class QLogicalDevicePrivate;
- class QAction;
- class QAxis;
- class QT3DINPUTSHARED_EXPORT QLogicalDevice : public Qt3DCore::QComponent
- {
- Q_OBJECT
- public:
- explicit QLogicalDevice(Qt3DCore::QNode *parent = nullptr);
- ~QLogicalDevice();
- void addAction(QAction *action);
- void removeAction(QAction *action);
- QVector<QAction *> actions() const;
- void addAxis(QAxis *axis);
- void removeAxis(QAxis *axis);
- QVector<QAxis *> axes() const;
- private:
- Q_DECLARE_PRIVATE(QLogicalDevice)
- Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const Q_DECL_OVERRIDE;
- };
- }
- QT_END_NAMESPACE
- #endif
|