Unity 8
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 <unity/shell/launcher/QuickListModelInterface.h>
26 
27 using namespace unity::shell::launcher;
28 
29 class QuickListModel: public QuickListModelInterface
30 {
31  Q_OBJECT
32 
33 public:
34  explicit QuickListModel(QObject *parent = 0);
35 
36  ~QuickListModel();
37 
38  void appendAction(const QuickListEntry &entry);
39 
47  void updateAction(const QuickListEntry &entry);
48 
49  void removeAction(const QuickListEntry &entry);
50 
51  QuickListEntry get(int index) const;
52 
53  int rowCount(const QModelIndex &parent = QModelIndex()) const override;
54  QVariant data(const QModelIndex &index, int role) const override;
55 
56 private:
57  QList<QuickListEntry> m_list;
58 };
59 
60 #endif // QUICKLISTMODEL_H