aboutsummaryrefslogtreecommitdiff
path: root/libqmenumodel/src/qmenumodel.h
blob: bbb35a04d7f76d82cabba4fbc541911d3b5c507e (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*
 * Copyright 2012 Canonical Ltd.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation; version 3.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 * Authors:
 *      Renato Araujo Oliveira Filho <renato@canonical.com>
 */

#ifndef QMENUTREEMODEL_H
#define QMENUTREEMODEL_H

#include <QAbstractItemModel>

class MenuNode;
typedef struct _GMenuModel GMenuModel;

class QMenuModel : public QAbstractItemModel
{
    Q_OBJECT

public:
    enum MenuRoles {
        Action  = Qt::DisplayRole + 1,
        Label,
        Extra,
        Depth,
        hasSection,
        hasSubMenu
    };

    ~QMenuModel();

    /* QAbstractItemModel */
    int rowCount(const QModelIndex &parent = QModelIndex()) const;
    int columnCount(const QModelIndex &parent = QModelIndex()) const;
    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
    QModelIndex index(int row, int column = 0, const QModelIndex &parent = QModelIndex()) const;
    QModelIndex parent(const QModelIndex &index) const;
    QHash<int, QByteArray> roleNames() const;

Q_SIGNALS:
    void countChanged();

protected:
    QMenuModel(GMenuModel *other=0, QObject *parent=0);
    void setMenuModel(GMenuModel *model);
    GMenuModel *menuModel() const;

    virtual bool event(QEvent* e);

private:
    MenuNode *m_root;

    MenuNode* nodeFromIndex(const QModelIndex &index) const;
    QModelIndex indexFromNode(MenuNode *node) const;

    QVariant getStringAttribute(MenuNode *node, int row, const QString &attribute) const;
    QVariant getExtraProperties(MenuNode *node, int row) const;
    bool hasLink(MenuNode *node, int row, const QString &linkType) const;

    QString parseExtraPropertyName(const QString &name) const;
    void clearModel();
};

#endif