Unity 8
launchermodelas.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 LAUNCHERMODEL_H
18 #define LAUNCHERMODEL_H
19 
20 #include <unity/shell/launcher/LauncherModelInterface.h>
21 #include <unity/shell/application/ApplicationManagerInterface.h>
22 
23 #include <QAbstractListModel>
24 
25 class LauncherItem;
26 class GSettings;
27 class AccountsServiceDBusAdaptor;
28 
29 using namespace unity::shell::launcher;
30 using namespace unity::shell::application;
31 
32 class LauncherModel: public LauncherModelInterface
33 {
34  Q_OBJECT
35 
36 public:
37  LauncherModel(QObject *parent = 0);
38  ~LauncherModel();
39 
40  int rowCount(const QModelIndex &parent = QModelIndex()) const override;
41 
42  QVariant data(const QModelIndex &index, int role) const override;
43 
44  Q_INVOKABLE void setAlerting(const QString &appId, bool alerting) override;
45  Q_INVOKABLE unity::shell::launcher::LauncherItemInterface* get(int index) const override;
46  Q_INVOKABLE void move(int oldIndex, int newIndex) override;
47  Q_INVOKABLE void pin(const QString &appId, int index = -1) override;
48  Q_INVOKABLE void quickListActionInvoked(const QString &appId, int actionIndex) override;
49  Q_INVOKABLE void setUser(const QString &username) override;
50  Q_INVOKABLE QString getUrlForAppId(const QString &appId) const;
51 
52  unity::shell::application::ApplicationManagerInterface* applicationManager() const override;
53  void setApplicationManager(unity::shell::application::ApplicationManagerInterface *appManager) override;
54 
55  bool onlyPinned() const override;
56  void setOnlyPinned(bool onlyPinned) override;
57 
58  int findApplication(const QString &appId);
59 
60 public Q_SLOTS:
61  void requestRemove(const QString &appId) override;
62  Q_INVOKABLE void refresh();
63 
64 private Q_SLOTS:
65  void propertiesChanged(const QString &user, const QString &interface, const QStringList &changed);
66 
67 private:
68  QString m_user;
69  QList<LauncherItem*> m_list;
70  AccountsServiceDBusAdaptor *m_accounts;
71  bool m_onlyPinned;
72 
73  friend class LauncherModelASTest;
74 };
75 
76 #endif // LAUNCHERMODEL_H