aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Porter <mporter@konsulko.com>2016-12-28 08:55:12 -0500
committerMatt Porter <mporter@konsulko.com>2016-12-28 13:08:53 -0500
commitebaaeae491e9e033faf5850192ea660fc83f087a (patch)
tree65bdd81ec7300c58d0451d249224ae2a0402c57e
parent48c42899cd19eb8f10ad763e63fdbc4404acca38 (diff)
Replace connectivity with mixer support
There is no top-level connectivity app. All connectivity management requirements are implemented as a part of settings. Replace the connectivity icon/launcher with the mixer icon/launcher and add the mixer artwork. Change-Id: I6126de401ce7e0ced52e4a9265b59d14fc9cc855 Signed-off-by: Matt Porter <mporter@konsulko.com>
-rw-r--r--HomeScreen/qml/images/Home/HMI_AppLauncher_Mixer_Active-01.pngbin0 -> 24360 bytes
-rw-r--r--HomeScreen/qml/images/Home/HMI_AppLauncher_Mixer_Inactive-01.pngbin0 -> 18415 bytes
-rw-r--r--HomeScreen/qml/images/Home/home.qrc2
-rw-r--r--HomeScreen/src/applicationmodel.cpp2
4 files changed, 3 insertions, 1 deletions
diff --git a/HomeScreen/qml/images/Home/HMI_AppLauncher_Mixer_Active-01.png b/HomeScreen/qml/images/Home/HMI_AppLauncher_Mixer_Active-01.png
new file mode 100644
index 0000000..502c758
--- /dev/null
+++ b/HomeScreen/qml/images/Home/HMI_AppLauncher_Mixer_Active-01.png
Binary files differ
diff --git a/HomeScreen/qml/images/Home/HMI_AppLauncher_Mixer_Inactive-01.png b/HomeScreen/qml/images/Home/HMI_AppLauncher_Mixer_Inactive-01.png
new file mode 100644
index 0000000..e2e7e3d
--- /dev/null
+++ b/HomeScreen/qml/images/Home/HMI_AppLauncher_Mixer_Inactive-01.png
Binary files differ
diff --git a/HomeScreen/qml/images/Home/home.qrc b/HomeScreen/qml/images/Home/home.qrc
index 7dde212..e73633e 100644
--- a/HomeScreen/qml/images/Home/home.qrc
+++ b/HomeScreen/qml/images/Home/home.qrc
@@ -7,6 +7,8 @@
<file>HMI_AppLauncher_Dashboard_Inactive-01.png</file>
<file>HMI_AppLauncher_HVAC_Active-01.png</file>
<file>HMI_AppLauncher_HVAC_Inactive-01.png</file>
+ <file>HMI_AppLauncher_Mixer_Active-01.png</file>
+ <file>HMI_AppLauncher_Mixer_Inactive-01.png</file>
<file>HMI_AppLauncher_Multimedia_Active-01.png</file>
<file>HMI_AppLauncher_Multimedia_Inactive-01.png</file>
<file>HMI_AppLauncher_Navigation_Active-01.png</file>
diff --git a/HomeScreen/src/applicationmodel.cpp b/HomeScreen/src/applicationmodel.cpp
index 2a16ace..2b56959 100644
--- a/HomeScreen/src/applicationmodel.cpp
+++ b/HomeScreen/src/applicationmodel.cpp
@@ -46,7 +46,7 @@ ApplicationModel::Private::Private(ApplicationModel *parent)
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("Connectivity"), QStringLiteral("CONNECTIVITY"), QStringLiteral("connectivity@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")));