aboutsummaryrefslogtreecommitdiffstats
path: root/HomeScreen/qml
diff options
context:
space:
mode:
Diffstat (limited to 'HomeScreen/qml')
-rw-r--r--HomeScreen/qml/Home.qml70
-rw-r--r--HomeScreen/qml/ShortcutArea.qml18
-rw-r--r--HomeScreen/qml/ShortcutIcon.qml11
-rw-r--r--HomeScreen/qml/StatusArea.qml62
-rw-r--r--HomeScreen/qml/TopArea.qml2
-rwxr-xr-xHomeScreen/qml/images/Home/B14-90.pngbin0 -> 32719 bytes
-rw-r--r--HomeScreen/qml/images/Home/HMI_AppLauncher_Connectivity_Active-01.pngbin34136 -> 29960 bytes
-rw-r--r--HomeScreen/qml/images/Home/HMI_AppLauncher_Connectivity_Inactive-01.pngbin26878 -> 24092 bytes
-rw-r--r--HomeScreen/qml/images/Home/HMI_AppLauncher_Dashboard_Active-01.pngbin32014 -> 27843 bytes
-rw-r--r--HomeScreen/qml/images/Home/HMI_AppLauncher_Dashboard_Inactive-01.pngbin25298 -> 22518 bytes
-rw-r--r--HomeScreen/qml/images/Home/HMI_AppLauncher_HVAC_Active-01.pngbin31650 -> 28618 bytes
-rw-r--r--HomeScreen/qml/images/Home/HMI_AppLauncher_HVAC_Inactive-01.pngbin24398 -> 22444 bytes
-rw-r--r--HomeScreen/qml/images/Home/HMI_AppLauncher_Multimedia_Active-01.pngbin29605 -> 25868 bytes
-rw-r--r--HomeScreen/qml/images/Home/HMI_AppLauncher_Multimedia_Inactive-01.pngbin23307 -> 20765 bytes
-rw-r--r--HomeScreen/qml/images/Home/HMI_AppLauncher_Navigation_Active-01.pngbin38244 -> 34333 bytes
-rw-r--r--HomeScreen/qml/images/Home/HMI_AppLauncher_Navigation_Inactive-01.pngbin33027 -> 29913 bytes
-rw-r--r--HomeScreen/qml/images/Home/HMI_AppLauncher_POI_Active-01.pngbin33356 -> 28719 bytes
-rw-r--r--HomeScreen/qml/images/Home/HMI_AppLauncher_POI_Inactive-01.pngbin26924 -> 23904 bytes
-rw-r--r--HomeScreen/qml/images/Home/HMI_AppLauncher_Phone_Active-01.pngbin30830 -> 27829 bytes
-rw-r--r--HomeScreen/qml/images/Home/HMI_AppLauncher_Phone_Inactive-01.pngbin23978 -> 22063 bytes
-rw-r--r--HomeScreen/qml/images/Home/HMI_AppLauncher_Radio_Active-01.pngbin29028 -> 25877 bytes
-rw-r--r--HomeScreen/qml/images/Home/HMI_AppLauncher_Radio_Inactive-01.pngbin21186 -> 19474 bytes
-rw-r--r--HomeScreen/qml/images/Home/HMI_AppLauncher_Settings_Active-01.pngbin33558 -> 29989 bytes
-rw-r--r--HomeScreen/qml/images/Home/HMI_AppLauncher_Settings_Inactive-01.pngbin26571 -> 24202 bytes
-rw-r--r--HomeScreen/qml/images/Home/home.qrc1
-rw-r--r--HomeScreen/qml/images/Shortcut/HMI_Shortcut_HVAC-01.pngbin4108 -> 3501 bytes
-rw-r--r--HomeScreen/qml/images/Shortcut/HMI_Shortcut_HVAC_Active-01.pngbin5908 -> 4861 bytes
-rw-r--r--HomeScreen/qml/images/Shortcut/HMI_Shortcut_Home-01.pngbin3435 -> 2757 bytes
-rw-r--r--HomeScreen/qml/images/Shortcut/HMI_Shortcut_Home_Active-01.pngbin4924 -> 3875 bytes
-rw-r--r--HomeScreen/qml/images/Shortcut/HMI_Shortcut_Multimedia-01.pngbin4114 -> 3263 bytes
-rw-r--r--HomeScreen/qml/images/Shortcut/HMI_Shortcut_Multimedia_Active-01.pngbin5973 -> 4306 bytes
-rw-r--r--HomeScreen/qml/images/Shortcut/HMI_Shortcut_Navigation-01.pngbin7122 -> 6105 bytes
-rw-r--r--HomeScreen/qml/images/Shortcut/HMI_Shortcut_Navigation_Active-01.pngbin9799 -> 7804 bytes
-rw-r--r--HomeScreen/qml/main.qml3
34 files changed, 163 insertions, 4 deletions
diff --git a/HomeScreen/qml/Home.qml b/HomeScreen/qml/Home.qml
index cfcd1c8..36f3f8a 100644
--- a/HomeScreen/qml/Home.qml
+++ b/HomeScreen/qml/Home.qml
@@ -21,6 +21,8 @@ import Home 1.0
Item {
id: root
+ property int pid: -1
+ signal languageChanged
Image {
anchors.fill: parent
@@ -28,8 +30,58 @@ Item {
anchors.bottomMargin: -215
source: './images/AGL_HMI_Background_Car-01.png'
}
+ Image {
+ id: sign90
+ width: 200
+ height: 200
+ anchors.horizontalCenter: parent.horizontalCenter
+ anchors.top: parent.top
+ anchors.topMargin: 20
+ source: './images/B14-90.png'
+ visible: false
+ }
+ Item {
+ id: hello
+ anchors.horizontalCenter: parent.horizontalCenter
+ anchors.bottom: parent.bottom
+ anchors.bottomMargin: 40
+ visible: false
+ Text {
+ id: helloText
+ anchors.centerIn: parent
+ color: "white"
+ text: "Hello José!"
+ font.pixelSize: 40
+ font.family: "Roboto"
+ SequentialAnimation on font.letterSpacing {
+ id: animation1
+ loops: 1;
+ NumberAnimation { from: 0; to: 50; easing.type: Easing.InQuad; duration: 3000 }
+ onRunningChanged: {
+ if(running)
+ hello.visible = true
+ else
+ hello.visible = false
+ }
+ }
- property int pid: -1
+ SequentialAnimation on opacity {
+ id: animation2
+ loops: 1;
+ NumberAnimation { from: 1; to: 0; duration: 2600 }
+ PauseAnimation { duration: 400 }
+ }
+ }
+ }
+ function showHello(helloString) {
+ helloText.text = helloString
+ animation1.running = true;
+ animation2.running = true;
+ }
+
+ function showSign90(show) {
+ sign90.visible = show
+ }
GridView {
anchors.centerIn: parent
@@ -45,6 +97,22 @@ Item {
Image {
anchors.fill: parent
source: './images/HMI_AppLauncher_%1_%2-01.png'.arg(model.icon).arg(pressed ? 'Active' : 'Inactive')
+ Label {
+ id: labelName
+ anchors.horizontalCenter: parent.horizontalCenter
+ horizontalAlignment: Text.AlignHCenter
+ y: 257
+ font.pixelSize: 32
+ font.family: "Roboto"
+ color: "white"
+ text: '%1'.arg(model.name)
+ function myChangeLanguage() {
+ text = '%1'.arg(model.name)
+ }
+ Component.onCompleted: {
+ root.languageChanged.connect(myChangeLanguage)
+ }
+ }
}
onClicked: {
console.log("app is ", model.id)
diff --git a/HomeScreen/qml/ShortcutArea.qml b/HomeScreen/qml/ShortcutArea.qml
index d9931cb..e2afc53 100644
--- a/HomeScreen/qml/ShortcutArea.qml
+++ b/HomeScreen/qml/ShortcutArea.qml
@@ -29,21 +29,37 @@ Item {
ListElement {
name: 'Home'
application: 'home@0.1'
+ label: 'HOME'
}
ListElement {
name: 'Multimedia'
application: 'mediaplayer@0.1'
+ label: 'MULTIMEDIA'
}
ListElement {
name: 'HVAC'
application: 'hvac@0.1'
+ label: 'HVAC'
}
ListElement {
name: 'Navigation'
application: 'controls@0.1'
+ label: 'NAVIGATION'
+ }
+ }
+ function languageChanged(lang) {
+ if(lang === "fr") {
+ applicationModel.setProperty(0, "label", 'ACCEUIL')
+ applicationModel.setProperty(1, "label", 'MULTIMÉDIA')
+ applicationModel.setProperty(2, "label", 'CLIMATISATION')
+ applicationModel.setProperty(3, "label", 'NAVIGATION')
+ } else {
+ applicationModel.setProperty(0, "label", 'HOME')
+ applicationModel.setProperty(1, "label", 'MULTIMEDIA')
+ applicationModel.setProperty(2, "label", 'HVAC')
+ applicationModel.setProperty(3, "label", 'NAVIGATION')
}
}
-
property int currentIndex: -1 // TODO: to be moved to whereever right
property int pid: -1
diff --git a/HomeScreen/qml/ShortcutIcon.qml b/HomeScreen/qml/ShortcutIcon.qml
index 299f6a8..34ade01 100644
--- a/HomeScreen/qml/ShortcutIcon.qml
+++ b/HomeScreen/qml/ShortcutIcon.qml
@@ -16,6 +16,7 @@
*/
import QtQuick 2.2
+import QtQuick.Controls 1.0
MouseArea {
id: root
@@ -33,6 +34,16 @@ MouseArea {
source: './images/Shortcut/HMI_Shortcut_%1_Active-01.png'.arg(root.name)
opacity: 1.0 - icon.opacity
}
+ Label {
+ id: labelName
+ anchors.horizontalCenter: parent.horizontalCenter
+ horizontalAlignment: Text.AlignHCenter
+ y: 155
+ font.pixelSize: 20
+ font.family: "Roboto"
+ color: "white"
+ text: '%1'.arg(model.label)
+ }
states: [
State {
when: root.active
diff --git a/HomeScreen/qml/StatusArea.qml b/HomeScreen/qml/StatusArea.qml
index 4ed969d..25c66d7 100644
--- a/HomeScreen/qml/StatusArea.qml
+++ b/HomeScreen/qml/StatusArea.qml
@@ -24,6 +24,62 @@ Item {
id: root
width: 295
height: 218
+ function languageChanged(lang) {
+ if(lang === "fr") {
+ labelTime.text = Qt.formatTime(now, 'HH:mm').toUpperCase()
+ labelTemperature.text = '18°C'
+ switch(now.getDay()) {
+ case 1:
+ labelDay.text = 'LUNDI'
+ break
+ case 2:
+ labelDay.text = 'MARDI'
+ break
+ case 3:
+ labelDay.text = 'MERCREDI'
+ break
+ case 4:
+ labelDay.text = 'JEUDI'
+ break
+ case 5:
+ labelDay.text = 'VENDREDI'
+ break
+ case 6:
+ labelDay.text = 'SAMEDI'
+ break
+ case 7:
+ labelDay.text = 'DIMANCHE'
+ break
+ }
+
+ } else {
+ labelTime.text = Qt.formatTime(now, 'h:mm ap').toUpperCase()
+ labelTemperature.text = '64°F'
+ switch(now.getDay()) {
+ case 1:
+ labelDay.text = 'MONDAY'
+ break
+ case 2:
+ labelDay.text = 'TUESDAY'
+ break
+ case 3:
+ labelDay.text = 'WEDNESDAY'
+ break
+ case 4:
+ labelDay.text = 'THURSDAY'
+ break
+ case 5:
+ labelDay.text = 'FRIDAY'
+ break
+ case 6:
+ labelDay.text = 'SATURDAY'
+ break
+ case 7:
+ labelDay.text = 'SUNDAY'
+ break
+ }
+ }
+ }
property date now: new Date
Timer {
@@ -43,11 +99,13 @@ Item {
anchors.margins: 40
spacing: 0
Label {
+ id: labelDay
Layout.fillWidth: true
Layout.fillHeight: true
text: Qt.formatDate(now, 'dddd').toUpperCase()
font.family: 'Roboto'
- font.pixelSize: 13
+// font.pixelSize: 13
+ font.pixelSize: 18
color: 'white'
verticalAlignment: Text.AlignVCenter
// Rectangle {
@@ -60,6 +118,7 @@ Item {
// }
}
Label {
+ id: labelTime
Layout.fillWidth: true
Layout.fillHeight: true
text: Qt.formatTime(now, 'h:mm ap').toUpperCase()
@@ -77,6 +136,7 @@ Item {
source: './images/Weather/WeatherIcons_Rain-01.png'
}
Label {
+ id: labelTemperature
text: '64°F'
color: 'white'
font.family: 'Helvetica'
diff --git a/HomeScreen/qml/TopArea.qml b/HomeScreen/qml/TopArea.qml
index fdf5a13..76430e2 100644
--- a/HomeScreen/qml/TopArea.qml
+++ b/HomeScreen/qml/TopArea.qml
@@ -29,12 +29,14 @@ Image {
spacing: 0
ShortcutArea {
id: shortcutArea
+ objectName: "ShortcutArea"
Layout.fillWidth: true
Layout.fillHeight: true
Layout.preferredWidth: 785
}
StatusArea {
id: statusArea
+ objectName: "StatusArea"
Layout.fillWidth: true
Layout.fillHeight: true
Layout.preferredWidth: 295
diff --git a/HomeScreen/qml/images/Home/B14-90.png b/HomeScreen/qml/images/Home/B14-90.png
new file mode 100755
index 0000000..702f8c6
--- /dev/null
+++ b/HomeScreen/qml/images/Home/B14-90.png
Binary files differ
diff --git a/HomeScreen/qml/images/Home/HMI_AppLauncher_Connectivity_Active-01.png b/HomeScreen/qml/images/Home/HMI_AppLauncher_Connectivity_Active-01.png
index 888d0bd..b37a2d9 100644
--- a/HomeScreen/qml/images/Home/HMI_AppLauncher_Connectivity_Active-01.png
+++ b/HomeScreen/qml/images/Home/HMI_AppLauncher_Connectivity_Active-01.png
Binary files differ
diff --git a/HomeScreen/qml/images/Home/HMI_AppLauncher_Connectivity_Inactive-01.png b/HomeScreen/qml/images/Home/HMI_AppLauncher_Connectivity_Inactive-01.png
index ab83b0e..c4b12a9 100644
--- a/HomeScreen/qml/images/Home/HMI_AppLauncher_Connectivity_Inactive-01.png
+++ b/HomeScreen/qml/images/Home/HMI_AppLauncher_Connectivity_Inactive-01.png
Binary files differ
diff --git a/HomeScreen/qml/images/Home/HMI_AppLauncher_Dashboard_Active-01.png b/HomeScreen/qml/images/Home/HMI_AppLauncher_Dashboard_Active-01.png
index 11d39e5..d1fba09 100644
--- a/HomeScreen/qml/images/Home/HMI_AppLauncher_Dashboard_Active-01.png
+++ b/HomeScreen/qml/images/Home/HMI_AppLauncher_Dashboard_Active-01.png
Binary files differ
diff --git a/HomeScreen/qml/images/Home/HMI_AppLauncher_Dashboard_Inactive-01.png b/HomeScreen/qml/images/Home/HMI_AppLauncher_Dashboard_Inactive-01.png
index 6c0b914..138ebf7 100644
--- a/HomeScreen/qml/images/Home/HMI_AppLauncher_Dashboard_Inactive-01.png
+++ b/HomeScreen/qml/images/Home/HMI_AppLauncher_Dashboard_Inactive-01.png
Binary files differ
diff --git a/HomeScreen/qml/images/Home/HMI_AppLauncher_HVAC_Active-01.png b/HomeScreen/qml/images/Home/HMI_AppLauncher_HVAC_Active-01.png
index efc11e9..deeb402 100644
--- a/HomeScreen/qml/images/Home/HMI_AppLauncher_HVAC_Active-01.png
+++ b/HomeScreen/qml/images/Home/HMI_AppLauncher_HVAC_Active-01.png
Binary files differ
diff --git a/HomeScreen/qml/images/Home/HMI_AppLauncher_HVAC_Inactive-01.png b/HomeScreen/qml/images/Home/HMI_AppLauncher_HVAC_Inactive-01.png
index b528376..92cd8a8 100644
--- a/HomeScreen/qml/images/Home/HMI_AppLauncher_HVAC_Inactive-01.png
+++ b/HomeScreen/qml/images/Home/HMI_AppLauncher_HVAC_Inactive-01.png
Binary files differ
diff --git a/HomeScreen/qml/images/Home/HMI_AppLauncher_Multimedia_Active-01.png b/HomeScreen/qml/images/Home/HMI_AppLauncher_Multimedia_Active-01.png
index 1c99ac4..c1af827 100644
--- a/HomeScreen/qml/images/Home/HMI_AppLauncher_Multimedia_Active-01.png
+++ b/HomeScreen/qml/images/Home/HMI_AppLauncher_Multimedia_Active-01.png
Binary files differ
diff --git a/HomeScreen/qml/images/Home/HMI_AppLauncher_Multimedia_Inactive-01.png b/HomeScreen/qml/images/Home/HMI_AppLauncher_Multimedia_Inactive-01.png
index 0bed61d..9a9c96a 100644
--- a/HomeScreen/qml/images/Home/HMI_AppLauncher_Multimedia_Inactive-01.png
+++ b/HomeScreen/qml/images/Home/HMI_AppLauncher_Multimedia_Inactive-01.png
Binary files differ
diff --git a/HomeScreen/qml/images/Home/HMI_AppLauncher_Navigation_Active-01.png b/HomeScreen/qml/images/Home/HMI_AppLauncher_Navigation_Active-01.png
index e7ad085..e5bae8b 100644
--- a/HomeScreen/qml/images/Home/HMI_AppLauncher_Navigation_Active-01.png
+++ b/HomeScreen/qml/images/Home/HMI_AppLauncher_Navigation_Active-01.png
Binary files differ
diff --git a/HomeScreen/qml/images/Home/HMI_AppLauncher_Navigation_Inactive-01.png b/HomeScreen/qml/images/Home/HMI_AppLauncher_Navigation_Inactive-01.png
index dd40750..cc9cb1a 100644
--- a/HomeScreen/qml/images/Home/HMI_AppLauncher_Navigation_Inactive-01.png
+++ b/HomeScreen/qml/images/Home/HMI_AppLauncher_Navigation_Inactive-01.png
Binary files differ
diff --git a/HomeScreen/qml/images/Home/HMI_AppLauncher_POI_Active-01.png b/HomeScreen/qml/images/Home/HMI_AppLauncher_POI_Active-01.png
index 2df01d3..c52d5bb 100644
--- a/HomeScreen/qml/images/Home/HMI_AppLauncher_POI_Active-01.png
+++ b/HomeScreen/qml/images/Home/HMI_AppLauncher_POI_Active-01.png
Binary files differ
diff --git a/HomeScreen/qml/images/Home/HMI_AppLauncher_POI_Inactive-01.png b/HomeScreen/qml/images/Home/HMI_AppLauncher_POI_Inactive-01.png
index ec62b87..d55e5fb 100644
--- a/HomeScreen/qml/images/Home/HMI_AppLauncher_POI_Inactive-01.png
+++ b/HomeScreen/qml/images/Home/HMI_AppLauncher_POI_Inactive-01.png
Binary files differ
diff --git a/HomeScreen/qml/images/Home/HMI_AppLauncher_Phone_Active-01.png b/HomeScreen/qml/images/Home/HMI_AppLauncher_Phone_Active-01.png
index 2150581..7a079e2 100644
--- a/HomeScreen/qml/images/Home/HMI_AppLauncher_Phone_Active-01.png
+++ b/HomeScreen/qml/images/Home/HMI_AppLauncher_Phone_Active-01.png
Binary files differ
diff --git a/HomeScreen/qml/images/Home/HMI_AppLauncher_Phone_Inactive-01.png b/HomeScreen/qml/images/Home/HMI_AppLauncher_Phone_Inactive-01.png
index 61dcedc..0de908b 100644
--- a/HomeScreen/qml/images/Home/HMI_AppLauncher_Phone_Inactive-01.png
+++ b/HomeScreen/qml/images/Home/HMI_AppLauncher_Phone_Inactive-01.png
Binary files differ
diff --git a/HomeScreen/qml/images/Home/HMI_AppLauncher_Radio_Active-01.png b/HomeScreen/qml/images/Home/HMI_AppLauncher_Radio_Active-01.png
index 1aa5a01..8503ae2 100644
--- a/HomeScreen/qml/images/Home/HMI_AppLauncher_Radio_Active-01.png
+++ b/HomeScreen/qml/images/Home/HMI_AppLauncher_Radio_Active-01.png
Binary files differ
diff --git a/HomeScreen/qml/images/Home/HMI_AppLauncher_Radio_Inactive-01.png b/HomeScreen/qml/images/Home/HMI_AppLauncher_Radio_Inactive-01.png
index 616983e..f8693c9 100644
--- a/HomeScreen/qml/images/Home/HMI_AppLauncher_Radio_Inactive-01.png
+++ b/HomeScreen/qml/images/Home/HMI_AppLauncher_Radio_Inactive-01.png
Binary files differ
diff --git a/HomeScreen/qml/images/Home/HMI_AppLauncher_Settings_Active-01.png b/HomeScreen/qml/images/Home/HMI_AppLauncher_Settings_Active-01.png
index 1d13fd6..ff030ef 100644
--- a/HomeScreen/qml/images/Home/HMI_AppLauncher_Settings_Active-01.png
+++ b/HomeScreen/qml/images/Home/HMI_AppLauncher_Settings_Active-01.png
Binary files differ
diff --git a/HomeScreen/qml/images/Home/HMI_AppLauncher_Settings_Inactive-01.png b/HomeScreen/qml/images/Home/HMI_AppLauncher_Settings_Inactive-01.png
index 027f1fe..15bdeb8 100644
--- a/HomeScreen/qml/images/Home/HMI_AppLauncher_Settings_Inactive-01.png
+++ b/HomeScreen/qml/images/Home/HMI_AppLauncher_Settings_Inactive-01.png
Binary files differ
diff --git a/HomeScreen/qml/images/Home/home.qrc b/HomeScreen/qml/images/Home/home.qrc
index 7dde212..4a112ce 100644
--- a/HomeScreen/qml/images/Home/home.qrc
+++ b/HomeScreen/qml/images/Home/home.qrc
@@ -19,5 +19,6 @@
<file>HMI_AppLauncher_Radio_Inactive-01.png</file>
<file>HMI_AppLauncher_Settings_Active-01.png</file>
<file>HMI_AppLauncher_Settings_Inactive-01.png</file>
+ <file>B14-90.png</file>
</qresource>
</RCC>
diff --git a/HomeScreen/qml/images/Shortcut/HMI_Shortcut_HVAC-01.png b/HomeScreen/qml/images/Shortcut/HMI_Shortcut_HVAC-01.png
index f5188f5..221fe60 100644
--- a/HomeScreen/qml/images/Shortcut/HMI_Shortcut_HVAC-01.png
+++ b/HomeScreen/qml/images/Shortcut/HMI_Shortcut_HVAC-01.png
Binary files differ
diff --git a/HomeScreen/qml/images/Shortcut/HMI_Shortcut_HVAC_Active-01.png b/HomeScreen/qml/images/Shortcut/HMI_Shortcut_HVAC_Active-01.png
index abe92d2..cbd625a 100644
--- a/HomeScreen/qml/images/Shortcut/HMI_Shortcut_HVAC_Active-01.png
+++ b/HomeScreen/qml/images/Shortcut/HMI_Shortcut_HVAC_Active-01.png
Binary files differ
diff --git a/HomeScreen/qml/images/Shortcut/HMI_Shortcut_Home-01.png b/HomeScreen/qml/images/Shortcut/HMI_Shortcut_Home-01.png
index 9aca151..3685d4a 100644
--- a/HomeScreen/qml/images/Shortcut/HMI_Shortcut_Home-01.png
+++ b/HomeScreen/qml/images/Shortcut/HMI_Shortcut_Home-01.png
Binary files differ
diff --git a/HomeScreen/qml/images/Shortcut/HMI_Shortcut_Home_Active-01.png b/HomeScreen/qml/images/Shortcut/HMI_Shortcut_Home_Active-01.png
index 696168f..4c64670 100644
--- a/HomeScreen/qml/images/Shortcut/HMI_Shortcut_Home_Active-01.png
+++ b/HomeScreen/qml/images/Shortcut/HMI_Shortcut_Home_Active-01.png
Binary files differ
diff --git a/HomeScreen/qml/images/Shortcut/HMI_Shortcut_Multimedia-01.png b/HomeScreen/qml/images/Shortcut/HMI_Shortcut_Multimedia-01.png
index 229860c..797d893 100644
--- a/HomeScreen/qml/images/Shortcut/HMI_Shortcut_Multimedia-01.png
+++ b/HomeScreen/qml/images/Shortcut/HMI_Shortcut_Multimedia-01.png
Binary files differ
diff --git a/HomeScreen/qml/images/Shortcut/HMI_Shortcut_Multimedia_Active-01.png b/HomeScreen/qml/images/Shortcut/HMI_Shortcut_Multimedia_Active-01.png
index b0a023c..3d831bf 100644
--- a/HomeScreen/qml/images/Shortcut/HMI_Shortcut_Multimedia_Active-01.png
+++ b/HomeScreen/qml/images/Shortcut/HMI_Shortcut_Multimedia_Active-01.png
Binary files differ
diff --git a/HomeScreen/qml/images/Shortcut/HMI_Shortcut_Navigation-01.png b/HomeScreen/qml/images/Shortcut/HMI_Shortcut_Navigation-01.png
index 34b0671..a58534c 100644
--- a/HomeScreen/qml/images/Shortcut/HMI_Shortcut_Navigation-01.png
+++ b/HomeScreen/qml/images/Shortcut/HMI_Shortcut_Navigation-01.png
Binary files differ
diff --git a/HomeScreen/qml/images/Shortcut/HMI_Shortcut_Navigation_Active-01.png b/HomeScreen/qml/images/Shortcut/HMI_Shortcut_Navigation_Active-01.png
index 98e6146..99fbc23 100644
--- a/HomeScreen/qml/images/Shortcut/HMI_Shortcut_Navigation_Active-01.png
+++ b/HomeScreen/qml/images/Shortcut/HMI_Shortcut_Navigation_Active-01.png
Binary files differ
diff --git a/HomeScreen/qml/main.qml b/HomeScreen/qml/main.qml
index 6a515fc..4a44f4c 100644
--- a/HomeScreen/qml/main.qml
+++ b/HomeScreen/qml/main.qml
@@ -36,7 +36,7 @@ Window {
anchors.centerIn: parent
width: 1080
height: 1920
- scale: 1.0
+ scale: 0.5
source: './images/AGL_HMI_Background_NoCar-01.png'
ColumnLayout {
@@ -59,6 +59,7 @@ Window {
Home {
id: appLauncherAreaLauncher
+ objectName: "Home"
Layout.fillWidth: true
Layout.fillHeight: true
Layout.preferredHeight: 1920 - 218 - 215