1 | // Copyright (C) 2014 Klaralvdalens Datakonsult AB (KDAB). |
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
3 | |
4 | #ifndef QT3DRENDER_RENDER_QUICK_QUICK3DRENDERPASSFILTER_P_H |
5 | #define QT3DRENDER_RENDER_QUICK_QUICK3DRENDERPASSFILTER_P_H |
6 | |
7 | // |
8 | // W A R N I N G |
9 | // ------------- |
10 | // |
11 | // This file is not part of the Qt API. It exists for the convenience |
12 | // of other Qt classes. This header file may change from version to |
13 | // version without notice, or even be removed. |
14 | // |
15 | // We mean it. |
16 | // |
17 | |
18 | #include <Qt3DRender/qfilterkey.h> |
19 | #include <Qt3DRender/qrenderpassfilter.h> |
20 | #include <QtQml/QQmlListProperty> |
21 | |
22 | #include <Qt3DQuick/private/quick3dnode_p.h> |
23 | #include <Qt3DQuickRender/private/qt3dquickrender_global_p.h> |
24 | |
25 | QT_BEGIN_NAMESPACE |
26 | |
27 | namespace Qt3DRender { |
28 | namespace Render { |
29 | namespace Quick { |
30 | |
31 | class Q_3DQUICKRENDERSHARED_PRIVATE_EXPORT Quick3DRenderPassFilter : public QObject |
32 | { |
33 | Q_OBJECT |
34 | Q_PROPERTY(QQmlListProperty<Qt3DRender::QFilterKey> matchAny READ includeList) |
35 | Q_PROPERTY(QQmlListProperty<Qt3DRender::QParameter> parameters READ parameterList) |
36 | |
37 | public: |
38 | explicit Quick3DRenderPassFilter(QObject *parent = 0); |
39 | |
40 | QQmlListProperty<QFilterKey> includeList(); |
41 | QQmlListProperty<QParameter> parameterList(); |
42 | |
43 | inline QRenderPassFilter *parentRenderPassFilter() const { return qobject_cast<Qt3DRender::QRenderPassFilter*>(object: parent()); } |
44 | }; |
45 | |
46 | } // namespace Quick |
47 | } // namespace Render |
48 | } // namespace Qt3DRender |
49 | |
50 | QT_END_NAMESPACE |
51 | |
52 | #endif // QT3DRENDER_RENDER_QUICK_QUICK3DRENDERPASSFILTER_P_H |
53 | |