summaryrefslogtreecommitdiffstats
path: root/src/quick3d/quick3dinput/items/quick3dlogicaldevice.cpp
diff options
context:
space:
mode:
authorPaul Lemire <paul.lemire@kdab.com>2015-11-27 16:00:30 +0100
committerPaul Lemire <paul.lemire@kdab.com>2015-11-28 08:16:02 +0000
commit26dab9f4d7002ae9f7c7ab46b457236dbbd08abd (patch)
tree764575236264e52f61e59b5b8906025eb61b2896 /src/quick3d/quick3dinput/items/quick3dlogicaldevice.cpp
parentb8d5ffe5609cd0907191602f607106a1288c08fe (diff)
Quick3DLogicalDevice: QML extension for QLogicalDevice
Change-Id: I4d9615a2bc8502143f054559c43ca2b9c543f415 Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'src/quick3d/quick3dinput/items/quick3dlogicaldevice.cpp')
-rw-r--r--src/quick3d/quick3dinput/items/quick3dlogicaldevice.cpp123
1 files changed, 123 insertions, 0 deletions
diff --git a/src/quick3d/quick3dinput/items/quick3dlogicaldevice.cpp b/src/quick3d/quick3dinput/items/quick3dlogicaldevice.cpp
new file mode 100644
index 000000000..0b41cd723
--- /dev/null
+++ b/src/quick3d/quick3dinput/items/quick3dlogicaldevice.cpp
@@ -0,0 +1,123 @@
+/****************************************************************************
+**
+** Copyright (C) 2015 Klaralvdalens Datakonsult AB (KDAB).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of the Qt3D module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL3$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see http://www.qt.io/terms-conditions. For further
+** information use the contact form at http://www.qt.io/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 3 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPLv3 included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 3 requirements
+** will be met: https://www.gnu.org/licenses/lgpl.html.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 2.0 or later as published by the Free
+** Software Foundation and appearing in the file LICENSE.GPL included in
+** the packaging of this file. Please review the following information to
+** ensure the GNU General Public License version 2.0 requirements will be
+** met: http://www.gnu.org/licenses/gpl-2.0.html.
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#include "quick3dlogicaldevice_p.h"
+
+QT_BEGIN_NAMESPACE
+
+namespace Qt3DInput {
+namespace Input {
+namespace Quick {
+
+Quick3DLogicalDevice::Quick3DLogicalDevice(QObject *parent)
+ : QObject(parent)
+{
+}
+
+QQmlListProperty<QAxis> Quick3DLogicalDevice::qmlAxes()
+{
+ return QQmlListProperty<QAxis>(this, 0,
+ &Quick3DLogicalDevice::appendAxis,
+ &Quick3DLogicalDevice::axesCount,
+ &Quick3DLogicalDevice::axisAt,
+ &Quick3DLogicalDevice::clearAxes);
+}
+
+QQmlListProperty<QAction> Quick3DLogicalDevice::qmlActions()
+{
+ return QQmlListProperty<QAction>(this, 0,
+ &Quick3DLogicalDevice::appendAction,
+ &Quick3DLogicalDevice::actionCount,
+ &Quick3DLogicalDevice::actionAt,
+ &Quick3DLogicalDevice::clearActions);
+}
+
+void Quick3DLogicalDevice::appendAxis(QQmlListProperty<QAxis> *list, QAxis *axes)
+{
+ Quick3DLogicalDevice *device = qobject_cast<Quick3DLogicalDevice *>(list->object);
+ device->parentLogicalDevice()->addAxis(axes);
+}
+
+QAxis *Quick3DLogicalDevice::axisAt(QQmlListProperty<QAxis> *list, int index)
+{
+ Quick3DLogicalDevice *device = qobject_cast<Quick3DLogicalDevice *>(list->object);
+ return device->parentLogicalDevice()->axes().at(index);
+}
+
+int Quick3DLogicalDevice::axesCount(QQmlListProperty<QAxis> *list)
+{
+ Quick3DLogicalDevice *device = qobject_cast<Quick3DLogicalDevice *>(list->object);
+ return device->parentLogicalDevice()->axes().count();
+}
+
+void Quick3DLogicalDevice::clearAxes(QQmlListProperty<QAxis> *list)
+{
+ Quick3DLogicalDevice *device = qobject_cast<Quick3DLogicalDevice *>(list->object);
+ Q_FOREACH (QAxis *axis, device->parentLogicalDevice()->axes())
+ device->parentLogicalDevice()->removeAxis(axis);
+}
+
+void Quick3DLogicalDevice::appendAction(QQmlListProperty<QAction> *list, QAction *action)
+{
+ Quick3DLogicalDevice *device = qobject_cast<Quick3DLogicalDevice *>(list->object);
+ device->parentLogicalDevice()->addAction(action);
+}
+
+QAction *Quick3DLogicalDevice::actionAt(QQmlListProperty<QAction> *list, int index)
+{
+ Quick3DLogicalDevice *device = qobject_cast<Quick3DLogicalDevice *>(list->object);
+ return device->parentLogicalDevice()->actions().at(index);
+}
+
+int Quick3DLogicalDevice::actionCount(QQmlListProperty<QAction> *list)
+{
+ Quick3DLogicalDevice *device = qobject_cast<Quick3DLogicalDevice *>(list->object);
+ return device->parentLogicalDevice()->actions().count();
+}
+
+void Quick3DLogicalDevice::clearActions(QQmlListProperty<QAction> *list)
+{
+ Quick3DLogicalDevice *device = qobject_cast<Quick3DLogicalDevice *>(list->object);
+ Q_FOREACH (QAction *action, device->parentLogicalDevice()->actions())
+ device->parentLogicalDevice()->removeAction(action);
+}
+
+
+} // namespace Quick
+} // namespace Input
+} // namespace Qt3DInput
+
+QT_END_NAMESPACE