aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmldesigner/components/effectmaker/effectnodescategory.h
blob: ba7d6868bc68e16c773e63c070638bb3e3479671 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#pragma once

#include "effectnode.h"

#include <QObject>

namespace QmlDesigner {

class EffectNodesCategory : public QObject
{
    Q_OBJECT

    Q_PROPERTY(QString categoryName MEMBER m_name CONSTANT)
    Q_PROPERTY(QList<EffectNode *> categoryNodes MEMBER m_categoryNodes CONSTANT)

public:
    EffectNodesCategory(const QString &name, const QList<EffectNode *> &nodes);

    QString name() const;
    QList<EffectNode *> nodes() const;

private:
    QString m_name;
    QList<EffectNode *> m_categoryNodes;
};

} // namespace QmlDesigner