Lomiri
Loading...
Searching...
No Matches
quicklistmodel.h
1/*
2 * Copyright 2014-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
17#ifndef QUICKLISTMODEL_H
18#define QUICKLISTMODEL_H
19
20#include "quicklistentry.h"
21
22#include <lomiri/shell/launcher/QuickListModelInterface.h>
23
24using namespace lomiri::shell::launcher;
25
26class QuickListModel: public QuickListModelInterface
27{
28 Q_OBJECT
29
30public:
31 explicit QuickListModel(QObject *parent = 0);
32
33 ~QuickListModel();
34
35 void appendAction(const QuickListEntry &entry);
36
44 void updateAction(const QuickListEntry &entry);
45
46 QuickListEntry get(int index) const;
47
48 int rowCount(const QModelIndex &parent = QModelIndex()) const override;
49 QVariant data(const QModelIndex &index, int role) const override;
50
51private:
52 QList<QuickListEntry> m_list;
53};
54
55#endif // QUICKLISTMODEL_H