aboutsummaryrefslogtreecommitdiffstats
path: root/homescreen/src
diff options
context:
space:
mode:
authorJan-Simon Moeller <jsmoeller@linuxfoundation.org>2018-08-01 11:24:08 +0000
committerGerrit Code Review <gerrit@automotivelinux.org>2018-08-01 11:24:08 +0000
commit761c15a8ab0c0b390e1cff84ad5d33d48b99ed98 (patch)
treeaa7d7d8605a6e3e7e9e0e27d54d6c58261b7cb50 /homescreen/src
parent220d40ffb6339edd3bb14d29d32cabfa44293fc9 (diff)
parent564c3c80884c0e9064a19e31655fd80f92eb594a (diff)
Merge "Change bluetooth status using agl-service-bluetooth"
Diffstat (limited to 'homescreen/src')
-rw-r--r--homescreen/src/main.cpp4
-rw-r--r--homescreen/src/statusbarmodel.cpp10
-rw-r--r--homescreen/src/statusbarserver.h3
3 files changed, 14 insertions, 3 deletions
diff --git a/homescreen/src/main.cpp b/homescreen/src/main.cpp
index 71dc782..39903e8 100644
--- a/homescreen/src/main.cpp
+++ b/homescreen/src/main.cpp
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2016, 2017 Mentor Graphics Development (Deutschland) GmbH
- * Copyright (c) 2017 TOYOTA MOTOR CORPORATION
+ * Copyright (c) 2017, 2018 TOYOTA MOTOR CORPORATION
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -25,6 +25,7 @@
#include <qlibwindowmanager.h>
#include <weather.h>
+#include <bluetooth.h>
#include "applicationlauncher.h"
#include "statusbarmodel.h"
#include "afm_user_daemon_proxy.h"
@@ -134,6 +135,7 @@ int main(int argc, char *argv[])
engine.rootContext()->setContextProperty("homescreenHandler", homescreenHandler);
engine.rootContext()->setContextProperty("launcher", launcher);
engine.rootContext()->setContextProperty("weather", new Weather(bindingAddress));
+ engine.rootContext()->setContextProperty("bluetooth", new Bluetooth(bindingAddress));
engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
QObject *root = engine.rootObjects().first();
diff --git a/homescreen/src/statusbarmodel.cpp b/homescreen/src/statusbarmodel.cpp
index 19767a9..5e63b7d 100644
--- a/homescreen/src/statusbarmodel.cpp
+++ b/homescreen/src/statusbarmodel.cpp
@@ -1,5 +1,6 @@
/*
* Copyright (C) 2016 The Qt Company Ltd.
+ * Copyright (C) 2017, 2018 TOYOTA MOTOR CORPORATION
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -110,7 +111,8 @@ int StatusBarModel::rowCount(const QModelIndex &parent) const
if (parent.isValid())
return 0;
- return StatusBarServer::SupportedCount;
+ // Delete bluetooth because use agl-service-bluetooth.
+ return StatusBarServer::SupportedCount - 1;
}
QVariant StatusBarModel::data(const QModelIndex &index, int role) const
@@ -121,7 +123,11 @@ QVariant StatusBarModel::data(const QModelIndex &index, int role) const
switch (role) {
case Qt::DisplayRole:
- ret = d->iconList[index.row()];
+ if (index.row() == 0){
+ ret = d->iconList[StatusBarServer::StatusWifi];
+ }else if (index.row() == 1){
+ ret = d->iconList[StatusBarServer::StatusCellular];
+ }
break;
default:
break;
diff --git a/homescreen/src/statusbarserver.h b/homescreen/src/statusbarserver.h
index a5b89e5..dabf6d3 100644
--- a/homescreen/src/statusbarserver.h
+++ b/homescreen/src/statusbarserver.h
@@ -24,6 +24,9 @@ class StatusBarServer : public QObject
Q_OBJECT
public:
enum {
+ StatusWifi = 0,
+ StatusBluetooth = 1,
+ StatusCellular = 2,
SupportedCount = 3,
};
explicit StatusBarServer(QObject *parent = NULL);