aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/scxmleditor/common/searchmodel.h
blob: 403c34b262860a0f9c7caeff5c85b70b00d082e9 (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
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include "scxmldocument.h"
#include "scxmltag.h"

#include <QAbstractTableModel>

namespace ScxmlEditor {

namespace Common {

class SearchModel : public QAbstractTableModel
{
    Q_OBJECT

public:
    enum AttributeRole {
        FilterRole = Qt::UserRole + 1
    };

    SearchModel(QObject *parent = nullptr);

    int rowCount(const QModelIndex &parent = QModelIndex()) const override;
    int columnCount(const QModelIndex &parent) const override;
    QVariant data(const QModelIndex &index, int role) const override;
    QVariant headerData(int section, Qt::Orientation orientation, int role) const override;
    PluginInterface::ScxmlTag *tag(const QModelIndex &ind);
    void setFilter(const QString &filter);
    void setDocument(PluginInterface::ScxmlDocument *document);

private:
    void tagChange(PluginInterface::ScxmlDocument::TagChange change, PluginInterface::ScxmlTag *tag, const QVariant &value);
    void resetModel();

    PluginInterface::ScxmlDocument *m_document = nullptr;
    QVector<PluginInterface::ScxmlTag*> m_allTags;
    QString m_strFilter;
};

} // namespace Common
} // namespace ScxmlEditor