summaryrefslogtreecommitdiffstats
path: root/src/render/backend
diff options
context:
space:
mode:
authorSean Harmer <sean.harmer@kdab.com>2015-10-25 10:13:19 +0000
committerPaul Lemire <paul.lemire@kdab.com>2015-10-25 11:07:14 +0000
commit9273ccc5dd0616d1443791dfba90ba9aa7b9c458 (patch)
treecdb8e4049b56d5116099a6a02aeb517e4229aa8c /src/render/backend
parentc0cf00711a84b2ec5c2d0d24a83db57a31bfcdae (diff)
Move picking into its own directory
Change-Id: I4982f08d18c855a57f621af28b13cc876f20eb16 Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Diffstat (limited to 'src/render/backend')
-rw-r--r--src/render/backend/objectpicker.cpp163
-rw-r--r--src/render/backend/objectpicker_p.h92
-rw-r--r--src/render/backend/pickeventfilter.cpp93
-rw-r--r--src/render/backend/pickeventfilter_p.h84
-rw-r--r--src/render/backend/render-backend.pri8
5 files changed, 2 insertions, 438 deletions
diff --git a/src/render/backend/objectpicker.cpp b/src/render/backend/objectpicker.cpp
deleted file mode 100644
index 38775327c..000000000
--- a/src/render/backend/objectpicker.cpp
+++ /dev/null
@@ -1,163 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2015 Paul Lemire paul.lemire350@gmail.com
-** 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 "objectpicker_p.h"
-#include <Qt3DRender/qobjectpicker.h>
-#include <Qt3DRender/qattribute.h>
-#include <Qt3DCore/qscenepropertychange.h>
-#include <Qt3DCore/qbackendscenepropertychange.h>
-
-QT_BEGIN_NAMESPACE
-
-namespace Qt3DRender {
-
-namespace Render {
-
-ObjectPicker::ObjectPicker()
- : QBackendNode(QBackendNode::ReadWrite)
- , m_isDirty(false)
- , m_hoverEnabled(false)
-{
-}
-
-ObjectPicker::~ObjectPicker()
-{
-}
-
-void ObjectPicker::cleanup()
-{
- m_isDirty = false;
- m_hoverEnabled = false;
- m_pickAttributeId = Qt3DCore::QNodeId();
-}
-
-void ObjectPicker::updateFromPeer(Qt3DCore::QNode *peer)
-{
- QObjectPicker *picker = static_cast<QObjectPicker *>(peer);
- if (picker) {
- if (picker->pickAttribute())
- m_pickAttributeId = picker->pickAttribute()->id();
- m_hoverEnabled = picker->hoverEnabled();
- m_isDirty = true;
- }
-}
-
-void ObjectPicker::sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e)
-{
- const Qt3DCore::QScenePropertyChangePtr propertyChange = qSharedPointerCast<Qt3DCore::QScenePropertyChange>(e);
- const QByteArray propertyName = propertyChange->propertyName();
-
- if (propertyChange->type() == Qt3DCore::NodeUpdated) {
- if (propertyName == QByteArrayLiteral("pickAttribute")) {
- m_pickAttributeId = propertyChange->value().value<Qt3DCore::QNodeId>();
- m_isDirty = true;
- } else if (propertyName == QByteArrayLiteral("hoverEnabled")) {
- m_hoverEnabled = propertyChange->value().toBool();
- m_isDirty = true;
- }
- }
-}
-
-Qt3DCore::QNodeId ObjectPicker::pickAttributeId() const
-{
- return m_pickAttributeId;
-}
-
-bool ObjectPicker::isDirty() const
-{
- return m_isDirty;
-}
-
-void ObjectPicker::unsetDirty()
-{
- m_isDirty = false;
-}
-
-void ObjectPicker::makeDirty()
-{
- m_isDirty = true;
-}
-
-bool ObjectPicker::hoverEnabled() const
-{
- return m_hoverEnabled;
-}
-
-void ObjectPicker::onClicked()
-{
- Qt3DCore::QBackendScenePropertyChangePtr e(new Qt3DCore::QBackendScenePropertyChange(Qt3DCore::NodeUpdated, peerUuid()));
- e->setPropertyName("clicked");
- e->setTargetNode(peerUuid());
- notifyObservers(e);
-}
-
-void ObjectPicker::onPressed()
-{
- Qt3DCore::QBackendScenePropertyChangePtr e(new Qt3DCore::QBackendScenePropertyChange(Qt3DCore::NodeUpdated, peerUuid()));
- e->setPropertyName("pressed");
- e->setTargetNode(peerUuid());
- notifyObservers(e);
-}
-
-void ObjectPicker::onReleased()
-{
- Qt3DCore::QBackendScenePropertyChangePtr e(new Qt3DCore::QBackendScenePropertyChange(Qt3DCore::NodeUpdated, peerUuid()));
- e->setPropertyName("released");
- e->setTargetNode(peerUuid());
- notifyObservers(e);
-}
-
-void ObjectPicker::onEntered()
-{
- Qt3DCore::QBackendScenePropertyChangePtr e(new Qt3DCore::QBackendScenePropertyChange(Qt3DCore::NodeUpdated, peerUuid()));
- e->setPropertyName("entered");
- e->setTargetNode(peerUuid());
- notifyObservers(e);
-}
-
-void ObjectPicker::onExited()
-{
- Qt3DCore::QBackendScenePropertyChangePtr e(new Qt3DCore::QBackendScenePropertyChange(Qt3DCore::NodeUpdated, peerUuid()));
- e->setPropertyName("exited");
- e->setTargetNode(peerUuid());
- notifyObservers(e);
-}
-
-} // Render
-
-} // Qt3DRender
-
-QT_END_NAMESPACE
diff --git a/src/render/backend/objectpicker_p.h b/src/render/backend/objectpicker_p.h
deleted file mode 100644
index a7dc0e3a2..000000000
--- a/src/render/backend/objectpicker_p.h
+++ /dev/null
@@ -1,92 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2015 Paul Lemire paul.lemire350@gmail.com
-** 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 QT3DRENDER_RENDER_OBJECTPICKER_P_H
-#define QT3DRENDER_RENDER_OBJECTPICKER_P_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 <Qt3DCore/qbackendnode.h>
-
-QT_BEGIN_NAMESPACE
-
-namespace Qt3DRender {
-
-namespace Render {
-
-class Q_AUTOTEST_EXPORT ObjectPicker : public Qt3DCore::QBackendNode
-{
-public:
- ObjectPicker();
- ~ObjectPicker();
-
- void cleanup();
- void updateFromPeer(Qt3DCore::QNode *peer) Q_DECL_FINAL;
- void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &e) Q_DECL_FINAL;
- Qt3DCore::QNodeId pickAttributeId() const;
- bool isDirty() const;
- void unsetDirty();
- void makeDirty();
- bool hoverEnabled() const;
-
- void onClicked();
- void onPressed();
- void onReleased();
- void onEntered();
- void onExited();
-
-private:
- Qt3DCore::QNodeId m_pickAttributeId;
- bool m_isDirty;
- bool m_hoverEnabled;
-};
-
-} // Render
-
-} // Qt3DRender
-
-QT_END_NAMESPACE
-
-#endif // QT3DRENDER_RENDER_OBJECTPICKER_H
diff --git a/src/render/backend/pickeventfilter.cpp b/src/render/backend/pickeventfilter.cpp
deleted file mode 100644
index 35aed07a7..000000000
--- a/src/render/backend/pickeventfilter.cpp
+++ /dev/null
@@ -1,93 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2015 Paul Lemire paul.lemire350@gmail.com
-** 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 "pickeventfilter_p.h"
-
-#include <QtCore/QMutexLocker>
-
-QT_BEGIN_NAMESPACE
-
-namespace Qt3DRender {
-
-namespace Render {
-
-PickEventFilter::PickEventFilter(QObject *parent)
- : QObject(parent)
-{
-}
-
-PickEventFilter::~PickEventFilter()
-{
-}
-
-/*!
- \internal
- Called from a worker thread in the thread pool so be sure to
- mutex protect the data.
-*/
-QList<QMouseEvent> PickEventFilter::pendingEvents()
-{
- QMutexLocker locker(&m_mutex);
- QList<QMouseEvent> pendingEvents(m_pendingEvents);
- m_pendingEvents.clear();
- return pendingEvents;
-}
-
-/*!
- \internal
- Called from the main thread.
-*/
-bool PickEventFilter::eventFilter(QObject *obj, QEvent *e)
-{
- switch (e->type()) {
- case QEvent::MouseButtonPress:
- case QEvent::MouseButtonRelease:
- case QEvent::MouseMove:
- case Qt::TapGesture: {
- QMutexLocker locker(&m_mutex);
- m_pendingEvents.push_back(QMouseEvent(*static_cast<QMouseEvent *>(e)));
- }
- default:
- break;
- }
- return false;
-}
-
-} // Render
-
-} // Qt3DRender
-
-QT_END_NAMESPACE
diff --git a/src/render/backend/pickeventfilter_p.h b/src/render/backend/pickeventfilter_p.h
deleted file mode 100644
index d34172e69..000000000
--- a/src/render/backend/pickeventfilter_p.h
+++ /dev/null
@@ -1,84 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2015 Paul Lemire paul.lemire350@gmail.com
-** 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 QT3DRENDER_RENDER_PICKEVENTFILTER_H
-#define QT3DRENDER_RENDER_PICKEVENTFILTER_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 <QObject>
-#include <QMouseEvent>
-#include <QtCore/qmutex.h>
-
-QT_BEGIN_NAMESPACE
-
-namespace Qt3DRender {
-
-namespace Render {
-
-class PickEventFilter : public QObject
-{
- Q_OBJECT
-public:
- explicit PickEventFilter(QObject *parent = Q_NULLPTR);
- ~PickEventFilter();
-
- QList<QMouseEvent> pendingEvents();
-
-protected:
- bool eventFilter(QObject *obj, QEvent *e) Q_DECL_FINAL;
-
-private:
- QList<QMouseEvent> m_pendingEvents;
- QMutex m_mutex;
-};
-
-} // Render
-
-} // Qt3DRender
-
-QT_END_NAMESPACE
-
-#endif // QT3DRENDER_RENDER_PICKEVENTFILTER_H
diff --git a/src/render/backend/render-backend.pri b/src/render/backend/render-backend.pri
index a2d0e8395..a69f1d450 100644
--- a/src/render/backend/render-backend.pri
+++ b/src/render/backend/render-backend.pri
@@ -21,9 +21,7 @@ HEADERS += \
$$PWD/entity_p.h \
$$PWD/layer_p.h \
$$PWD/nodefunctor_p.h \
- $$PWD/transform_p.h \
- $$PWD/objectpicker_p.h \
- $$PWD/pickeventfilter_p.h
+ $$PWD/transform_p.h
SOURCES += \
$$PWD/renderthread.cpp \
@@ -41,6 +39,4 @@ SOURCES += \
$$PWD/cameralens.cpp \
$$PWD/entity.cpp \
$$PWD/layer.cpp \
- $$PWD/transform.cpp \
- $$PWD/objectpicker.cpp \
- $$PWD/pickeventfilter.cpp
+ $$PWD/transform.cpp