force display homescreen at startup
[staging/HomeScreen.git] / HomeScreen / qml / ShortcutArea.qml
index d9931cb..2590747 100644 (file)
@@ -29,22 +29,38 @@ 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'
+            application: 'navigation@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
 
     RowLayout {
@@ -56,23 +72,34 @@ Item {
                 Layout.fillWidth: true
                 Layout.fillHeight: true
                 name: model.name
-                active: model.index === root.currentIndex
+                active: model.application === launcher.current
                 onClicked: {
-                    root.currentIndex = active ? -1 : model.index
                     if (0 === model.index) {
                         appLauncherAreaLauncher.visible = true
                         applicationArea.visible = false
                         layoutHandler.hideAppLayer()
+                        launcher.current = ''
                     }
                     else {
-                        applicationArea.visible = true
-                        appLauncherAreaLauncher.visible = false
                         pid = launcher.launch(model.application)
-                        layoutHandler.makeMeVisible(pid)
-                        layoutHandler.showAppLayer()
+                        if (1 < pid) {
+                            applicationArea.visible = true
+                            appLauncherAreaLauncher.visible = false
+                            layoutHandler.makeMeVisible(pid)
+                            layoutHandler.showAppLayer(pid)
+                        }
+                        else {
+                            console.warn("app cannot be launched!")
+                        }
                     }
                 }
             }
         }
     }
+    Component.onCompleted: {
+        root.currentIndex = 0
+        appLauncherAreaLauncher.visible = true
+        applicationArea.visible = false
+        layoutHandler.hideAppLayer()
+    }
 }