// Copyright (C) 2015 Klaralvdalens Datakonsult AB (KDAB). // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #ifndef QT3DRENDER_QPICKTRIANGLEEVENT_H #define QT3DRENDER_QPICKTRIANGLEEVENT_H #include #include QT_BEGIN_NAMESPACE namespace Qt3DRender { class QPickTriangleEventPrivate; class Q_3DRENDERSHARED_EXPORT QPickTriangleEvent : public QPickEvent { Q_OBJECT Q_PROPERTY(uint triangleIndex READ triangleIndex CONSTANT) Q_PROPERTY(uint vertex1Index READ vertex1Index CONSTANT) Q_PROPERTY(uint vertex2Index READ vertex2Index CONSTANT) Q_PROPERTY(uint vertex3Index READ vertex3Index CONSTANT) Q_PROPERTY(QVector3D uvw READ uvw CONSTANT) public: QPickTriangleEvent(); QPickTriangleEvent(const QPointF &position, const QVector3D& worldIntersection, const QVector3D& localIntersection, float distance, uint triangleIndex, uint vertex1Index, uint vertex2Index, uint vertex3Index); QPickTriangleEvent(const QPointF &position, const QVector3D& worldIntersection, const QVector3D& localIntersection, float distance, uint triangleIndex, uint vertex1Index, uint vertex2Index, uint vertex3Index, Buttons button, int buttons, int modifiers, const QVector3D &uvw); ~QPickTriangleEvent(); public: uint triangleIndex() const; uint vertex1Index() const; uint vertex2Index() const; uint vertex3Index() const; QVector3D uvw() const; private: Q_DECLARE_PRIVATE(QPickTriangleEvent) }; typedef QSharedPointer QPickTriangleEventPtr; } // Qt3DRender QT_END_NAMESPACE #endif // QT3DRENDER_QPICKTRIANGLEEVENT_H