aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-04-20 16:20:39 +0200
committerMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-04-26 09:52:48 +0200
commitbce3ddbc15abdb2b3ca70bc66a366333e91f1685 (patch)
tree102591e6c8fd95124286415f533b9eff28fd5247
parent76a5099fd92984aa4e64b8f87549be1f21dcdec3 (diff)
Get installed app list from afm dbus
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
-rw-r--r--homescreen/src/applicationmodel.cpp37
1 files changed, 26 insertions, 11 deletions
diff --git a/homescreen/src/applicationmodel.cpp b/homescreen/src/applicationmodel.cpp
index 2601837..c5f0fc0 100644
--- a/homescreen/src/applicationmodel.cpp
+++ b/homescreen/src/applicationmodel.cpp
@@ -18,6 +18,8 @@
#include "applicationmodel.h"
#include "appinfo.h"
+#include <QtCore/QDebug>
+
#include <QtDBus/QDBusInterface>
#include <QtDBus/QDBusReply>
@@ -33,23 +35,36 @@ public:
QList<AppInfo> data;
};
+namespace {
+ // This is a disgrace, shouldn't we be having a defined way to know which icon (if it is not given by the getAvailableApps() reply)?
+ QString get_icon_name(AppInfo const &i)
+ {
+ QString icon = i.iconPath().isEmpty() ? i.id().split("@").front() : i.iconPath();
+ if (icon == "hvac" || icon == "poi") {
+ icon = icon.toUpper();
+ } else if (icon == "mediaplayer") {
+ icon = "Multimedia";
+ } else {
+ icon[0] = icon[0].toUpper();
+ }
+ return icon;
+ }
+}
+
ApplicationModel::Private::Private(ApplicationModel *parent)
: q(parent)
, proxy(QStringLiteral("org.agl.homescreenappframeworkbinder"), QStringLiteral("/AppFramework"), QStringLiteral("org.agl.appframework"), QDBusConnection::sessionBus())
{
QDBusReply<QList<AppInfo>> reply = proxy.call("getAvailableApps");
- if (false)/*reply.isValid()) TODO: test for CES! */ {
- data = reply.value();
+ if (reply.isValid()) {
+ // FIXME: Is the order from dbus the one we want to use?!
+ for (auto const &i: reply.value()) {
+ auto const name = i.name().split(" ").front().toUpper();
+ auto const icon = get_icon_name(i);
+ data.append(AppInfo(icon, name, i.id()));
+ }
} else {
- data.append(AppInfo(QStringLiteral("HVAC"), QStringLiteral("HVAC"), QStringLiteral("hvac@0.1")));
- data.append(AppInfo(QStringLiteral("Navigation"), QStringLiteral("NAVIGATION"), QStringLiteral("navigation@0.1")));
- data.append(AppInfo(QStringLiteral("Phone"), QStringLiteral("PHONE"), QStringLiteral("phone@0.1")));
- data.append(AppInfo(QStringLiteral("Radio"), QStringLiteral("RADIO"), QStringLiteral("radio@0.1")));
- data.append(AppInfo(QStringLiteral("Multimedia"), QStringLiteral("MULTIMEDIA"), QStringLiteral("mediaplayer@0.1")));
- data.append(AppInfo(QStringLiteral("Mixer"), QStringLiteral("MIXER"), QStringLiteral("mixer@0.1")));
- data.append(AppInfo(QStringLiteral("Dashboard"), QStringLiteral("DASHBOARD"), QStringLiteral("dashboard@0.1")));
- data.append(AppInfo(QStringLiteral("Settings"), QStringLiteral("SETTINGS"), QStringLiteral("settings@0.1")));
- data.append(AppInfo(QStringLiteral("POI"), QStringLiteral("POINT OF\nINTEREST"), QStringLiteral("poi@0.1")));
+ qDebug() << "getAvailableApps() reply is INVALID!";
}
}