aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmldesigner/components/eventlist/nodelistview.h
blob: 3de501e51ef9a630bdceb9947485e4e6f58c2380 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once

#include <abstractview.h>
#include <QStandardItemModel>

namespace QmlDesigner {

class NodeListModel : public QStandardItemModel
{
    Q_OBJECT

public:
    enum Columns : unsigned int {
        idColumn = 0,
        typeColumn = 1,
        fromColumn = 2,
        toColumn = 3
    };

    enum Roles : unsigned int {
        internalIdRole = Qt::UserRole + 1,
        eventIdsRole = Qt::UserRole + 2
    };

    NodeListModel(QObject *parent = nullptr);
};


class NodeListView : public AbstractView
{
    Q_OBJECT

public:
    explicit NodeListView(ExternalDependenciesInterface &externalDependencies);
    ~NodeListView() override;

    int currentNode() const;
    QStandardItemModel *itemModel() const;

    void reset();
    void selectNode(int internalId);
    bool addEventId(int nodeId, const QString &event);
    bool removeEventIds(int nodeId, const QStringList &events);
    QString setNodeId(int internalId, const QString &id);

private:
    ModelNode compatibleModelNode(int nodeId);
    bool setEventIds(const ModelNode &node, const QStringList &events);

    QStandardItemModel *m_itemModel;
};

} // namespace QmlDesigner.