summaryrefslogtreecommitdiffstats
path: root/src/render/picking/qpickevent.h
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/picking/qpickevent.h
parentc0cf00711a84b2ec5c2d0d24a83db57a31bfcdae (diff)
Move picking into its own directory
Change-Id: I4982f08d18c855a57f621af28b13cc876f20eb16 Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Diffstat (limited to 'src/render/picking/qpickevent.h')
-rw-r--r--src/render/picking/qpickevent.h71
1 files changed, 71 insertions, 0 deletions
diff --git a/src/render/picking/qpickevent.h b/src/render/picking/qpickevent.h
new file mode 100644
index 000000000..5a9408516
--- /dev/null
+++ b/src/render/picking/qpickevent.h
@@ -0,0 +1,71 @@
+/****************************************************************************
+**
+** 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 QT3DRENDER_QPICKEVENT_H
+#define QT3DRENDER_QPICKEVENT_H
+
+#include <QObject>
+#include <Qt3DRender/qt3drender_global.h>
+
+QT_BEGIN_NAMESPACE
+
+namespace Qt3DRender {
+
+class QPickEventPrivate;
+
+class QT3DRENDERSHARED_EXPORT QPickEvent : public QObject
+{
+ Q_OBJECT
+ Q_PROPERTY(bool accepted READ isAccepted WRITE setAccepted NOTIFY acceptedChanged)
+public:
+ QPickEvent();
+ ~QPickEvent();
+
+ bool isAccepted() const;
+ void setAccepted(bool accepted);
+
+Q_SIGNALS:
+ void acceptedChanged();
+
+private:
+ Q_DECLARE_PRIVATE(QPickEvent)
+};
+
+} // Qt3DRender
+
+QT_END_NAMESPACE
+
+#endif // QT3DRENDER_QPICKEVENT_H