summaryrefslogtreecommitdiffstats
path: root/src/quick3d/quick3dinput
diff options
context:
space:
mode:
authorPaul Lemire <paul.lemire@kdab.com>2015-11-27 12:26:27 +0100
committerPaul Lemire <paul.lemire@kdab.com>2015-11-28 08:14:54 +0000
commitdfe2d2f551034489b592167894c922f5e184e468 (patch)
tree6a2a118f5e2715eb3580eab9be2e60ad7f55d111 /src/quick3d/quick3dinput
parent9c726452eba19e765e4a5a5d5363c889d7c36056 (diff)
Added Quick3DAxis QML extension
Change-Id: I240aba4683eb278edd4ccc3e852bb118b798c559 Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'src/quick3d/quick3dinput')
-rw-r--r--src/quick3d/quick3dinput/items/items.pri6
-rw-r--r--src/quick3d/quick3dinput/items/quick3daxis.cpp89
-rw-r--r--src/quick3d/quick3dinput/items/quick3daxis_p.h86
3 files changed, 179 insertions, 2 deletions
diff --git a/src/quick3d/quick3dinput/items/items.pri b/src/quick3d/quick3dinput/items/items.pri
index 8becb86ab..7061527e3 100644
--- a/src/quick3d/quick3dinput/items/items.pri
+++ b/src/quick3d/quick3dinput/items/items.pri
@@ -1,5 +1,7 @@
-SOURCES +=
+SOURCES += \
+ $$PWD/quick3daxis.cpp
-HEADERS +=
+HEADERS += \
+ $$PWD/quick3daxis_p.h
INCLUDEPATH += $$PWD
diff --git a/src/quick3d/quick3dinput/items/quick3daxis.cpp b/src/quick3d/quick3dinput/items/quick3daxis.cpp
new file mode 100644
index 000000000..b71f899c3
--- /dev/null
+++ b/src/quick3d/quick3dinput/items/quick3daxis.cpp
@@ -0,0 +1,89 @@
+/****************************************************************************
+**
+** 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 "quick3daxis_p.h"
+
+QT_BEGIN_NAMESPACE
+
+namespace Qt3DInput {
+namespace Input {
+namespace Quick {
+
+Quick3DAxis::Quick3DAxis(QObject *parent)
+ : QObject(parent)
+{
+}
+
+QQmlListProperty<QAxisInput> Quick3DAxis::qmlAxisInputs()
+{
+ return QQmlListProperty<QAxisInput>(this, 0,
+ &Quick3DAxis::appendAxisInput,
+ &Quick3DAxis::axesInputCount,
+ &Quick3DAxis::axisInputAt,
+ &Quick3DAxis::clearAxisInputs);
+}
+
+void Quick3DAxis::appendAxisInput(QQmlListProperty<QAxisInput> *list, QAxisInput *input)
+{
+ Quick3DAxis *axis = qobject_cast<Quick3DAxis *>(list->object);
+ axis->parentAxis()->addInput(input);
+}
+
+QAxisInput *Quick3DAxis::axisInputAt(QQmlListProperty<QAxisInput> *list, int index)
+{
+ Quick3DAxis *axis = qobject_cast<Quick3DAxis *>(list->object);
+ return axis->parentAxis()->inputs().at(index);
+}
+
+int Quick3DAxis::axesInputCount(QQmlListProperty<QAxisInput> *list)
+{
+ Quick3DAxis *axis = qobject_cast<Quick3DAxis *>(list->object);
+ return axis->parentAxis()->inputs().count();
+}
+
+void Quick3DAxis::clearAxisInputs(QQmlListProperty<QAxisInput> *list)
+{
+ Quick3DAxis *axis = qobject_cast<Quick3DAxis *>(list->object);
+ Q_FOREACH (QAxisInput *input, axis->parentAxis()->inputs())
+ axis->parentAxis()->removeInput(input);
+}
+
+
+} // namespace Quick
+} // namespace Input
+} // namespace Qt3DInput
+
+QT_END_NAMESPACE
diff --git a/src/quick3d/quick3dinput/items/quick3daxis_p.h b/src/quick3d/quick3dinput/items/quick3daxis_p.h
new file mode 100644
index 000000000..2a626b6e7
--- /dev/null
+++ b/src/quick3d/quick3dinput/items/quick3daxis_p.h
@@ -0,0 +1,86 @@
+/****************************************************************************
+**
+** 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$
+**
+****************************************************************************/
+
+#ifndef QT3DINPUT_INPUT_QUICK_QUICK3DAXIS_H
+#define QT3DINPUT_INPUT_QUICK_QUICK3DAXIS_H
+
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. It exists for the convenience
+// of other Qt classes. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
+#include <Qt3DQuickInput/private/qt3dquickinput_global_p.h>
+#include <Qt3DInput/QAxis>
+#include <Qt3DInput/QAxisInput>
+#include <QQmlListProperty>
+
+QT_BEGIN_NAMESPACE
+
+namespace Qt3DInput {
+namespace Input {
+namespace Quick {
+
+class QT3DQUICKINPUTSHARED_PRIVATE_EXPORT Quick3DAxis : public QObject
+{
+ Q_OBJECT
+ Q_PROPERTY(QQmlListProperty<Qt3DInput::QAxisInput> inputs READ qmlAxisInputs CONSTANT)
+public:
+ explicit Quick3DAxis(QObject *parent = Q_NULLPTR);
+
+ inline QAxis *parentAxis() const { return qobject_cast<QAxis *>(parent()); }
+ QQmlListProperty<QAxisInput> qmlAxisInputs();
+
+private:
+ static void appendAxisInput(QQmlListProperty<QAxisInput> *list, QAxisInput *input);
+ static QAxisInput *axisInputAt(QQmlListProperty<QAxisInput> *list, int index);
+ static int axesInputCount(QQmlListProperty<QAxisInput> *list);
+ static void clearAxisInputs(QQmlListProperty<QAxisInput> *list);
+};
+
+} // namespace Quick
+} // namespace Input
+} // namespace Qt3DInput
+
+QT_END_NAMESPACE
+
+
+#endif // QT3DINPUT_INPUT_QUICK_QUICK3DAXIS_H