Unity 8
launcheritem.h
1 /*
2  * Copyright 2013 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 LAUNCHERITEM_H
21 #define LAUNCHERITEM_H
22 
23 #include "quicklistmodel.h"
24 
25 #include <unity/shell/launcher/LauncherItemInterface.h>
26 #include <unity/shell/application/MirSurfaceInterface.h>
27 
28 class QuickListModel;
29 
30 using namespace unity::shell::launcher;
31 
32 class LauncherItem: public LauncherItemInterface
33 {
34  Q_OBJECT
35 public:
36  LauncherItem(const QString &appId, const QString &name, const QString &icon, QObject *parent);
37 
38  QString appId() const override;
39  QString name() const override;
40  QString icon() const override;
41  QStringList keywords() const override;
42  uint popularity() const override;
43  bool pinned() const override;
44  bool running() const override;
45  bool recent() const override;
46  int progress() const override;
47  int count() const override;
48  bool countVisible() const override;
49  bool focused() const override;
50  bool alerting() const override;
51  int surfaceCount() const override;
52 
53  unity::shell::launcher::QuickListModelInterface *quickList() const override;
54 
55 private:
56  void setName(const QString &name);
57  void setIcon(const QString &icon);
58  void setKeywords(const QStringList &keywords);
59  void setPopularity(uint popularity);
60  void setPinned(bool pinned);
61  void setRunning(bool running);
62  void setRecent(bool recent);
63  void setProgress(int progress);
64  void setCount(int count);
65  void setCountVisible(bool countVisible);
66  void setFocused(bool focused);
67  void setAlerting(bool alerting);
68  void setSurfaces(const QList<QPair<QString, QString >> &surfaces);
69 
70 private:
71  QString m_appId;
72  QString m_name;
73  QString m_icon;
74  QStringList m_keywords;
75  uint m_popularity;
76  bool m_pinned;
77  bool m_running;
78  bool m_recent;
79  int m_progress;
80  int m_count;
81  bool m_countVisible;
82  bool m_focused;
83  bool m_alerting;
84  QList<QPair<QString, QString> > m_surfaces;
85  QuickListModel *m_quickList;
86  QuickListEntry m_quitAction;
87 
88  friend class LauncherModel;
89  friend class AppDrawerModel;
90 };
91 
92 #endif // LAUNCHERITEM_H