Lomiri
Loading...
Searching...
No Matches
quicklistmodel.h
1/*
2 * Copyright 201, 2015 Canonical Ltd.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Lesser General Public License as published by
6 * the Free Software Foundation; version 3.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU Lesser General Public License for more details.
12 *
13 * You should have received a copy of the GNU Lesser General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 *
16 * Authors:
17 * Michael Zanetti <michael.zanetti@canonical.com>
18 */
19
20#ifndef QUICKLISTMODEL_H
21#define QUICKLISTMODEL_H
22
23#include "quicklistentry.h"
24
25#include <lomiri/shell/launcher/QuickListModelInterface.h>
26
27using namespace lomiri::shell::launcher;
28
29class QuickListModel: public QuickListModelInterface
30{
31 Q_OBJECT
32
33public:
34 explicit QuickListModel(QObject *parent = 0);
35
36 ~QuickListModel();
37
38 void appendAction(const QuickListEntry &entry);
39 void insertAction(const QuickListEntry &entry, int index);
40
48 void updateAction(const QuickListEntry &entry);
49
50 void removeAction(const QuickListEntry &entry);
51
52 QuickListEntry get(int index) const;
53
54 int rowCount(const QModelIndex &parent = QModelIndex()) const override;
55 QVariant data(const QModelIndex &index, int role) const override;
56
57private:
58 QList<QuickListEntry> m_list;
59};
60
61#endif // QUICKLISTMODEL_H