Lomiri
Loading...
Searching...
No Matches
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 <lomiri/shell/launcher/LauncherModelInterface.h>
21#include <lomiri/shell/application/ApplicationManagerInterface.h>
22
23#include <QAbstractListModel>
24
25class LauncherItem;
26class GSettings;
27class AccountsServiceDBusAdaptor;
28
29using namespace lomiri::shell::launcher;
30using namespace lomiri::shell::application;
31
32class LauncherModel: public LauncherModelInterface
33{
34 Q_OBJECT
35
36public:
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 lomiri::shell::launcher::LauncherItemInterface* get(int index) const override;
45 Q_INVOKABLE void move(int oldIndex, int newIndex) override;
46 Q_INVOKABLE void pin(const QString &appId, int index = -1) override;
47 Q_INVOKABLE void quickListActionInvoked(const QString &appId, int actionIndex) override;
48 Q_INVOKABLE void setUser(const QString &username) override;
49 Q_INVOKABLE QString getUrlForAppId(const QString &appId) const;
50
51 lomiri::shell::application::ApplicationManagerInterface* applicationManager() const override;
52 void setApplicationManager(lomiri::shell::application::ApplicationManagerInterface *appManager) override;
53
54 bool onlyPinned() const override;
55 void setOnlyPinned(bool onlyPinned) override;
56
57 int findApplication(const QString &appId);
58
59public Q_SLOTS:
60 void requestRemove(const QString &appId) override;
61 Q_INVOKABLE void refresh();
62
63private Q_SLOTS:
64 void propertiesChanged(const QString &user, const QString &interface, const QStringList &changed);
65
66private:
67 void refreshWithItems(const QList<QVariantMap> &items);
68
69 QString m_user;
70 QList<LauncherItem*> m_list;
71 AccountsServiceDBusAdaptor *m_accounts;
72 bool m_onlyPinned;
73
74 friend class LauncherModelASTest;
75};
76
77#endif // LAUNCHERMODEL_H