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
25QT_BEGIN_NAMESPACE
26
27namespace Qt3DRender {
28namespace Render {
29namespace Quick {
30
31class 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
37public:
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
50QT_END_NAMESPACE
51
52#endif // QT3DRENDER_RENDER_QUICK_QUICK3DRENDERPASSFILTER_P_H
53

source code of qt3d/src/quick3d/quick3drender/items/quick3drenderpassfilter_p.h