X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=HomeScreen%2Fqml%2FShortcutArea.qml;h=668498208ac8d62eed8f7f4a503872e6ec010011;hb=66263b2c54d6f34ed57eb422fc51ad80c6f1cc30;hp=1d4a7c064545051f6eb312c478723bed074b3efd;hpb=79714c0aa8fc461d77b75d6c5dae6a1a7d726954;p=staging%2FHomeScreen.git diff --git a/HomeScreen/qml/ShortcutArea.qml b/HomeScreen/qml/ShortcutArea.qml index 1d4a7c0..6684982 100644 --- a/HomeScreen/qml/ShortcutArea.qml +++ b/HomeScreen/qml/ShortcutArea.qml @@ -17,41 +17,49 @@ import QtQuick 2.2 import QtQuick.Layouts 1.1 -import HomeScreen 1.0 Item { id: root width: 785 height: 218 - ApplicationLauncher { - id: launcher - } - - LayoutHandler { - id: layoutHandler - } ListModel { id: applicationModel ListElement { name: 'Home' - application: 'webapps-rabbit@0.0' + application: 'home@0.1' + label: 'HOME' } ListElement { name: 'Multimedia' - application: 'smarthome@0.1' + application: 'mediaplayer@0.1' + label: 'MULTIMEDIA' } ListElement { name: 'HVAC' - application: 'hvac' + application: 'hvac@0.1' + label: 'HVAC' } ListElement { name: 'Navigation' - application: 'navigation' + 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 @@ -67,8 +75,23 @@ Item { active: model.index === root.currentIndex onClicked: { root.currentIndex = active ? -1 : model.index - pid = launcher.launch(model.application) - layoutHandler.makeMeVisible(pid) + if (0 === model.index) { + appLauncherAreaLauncher.visible = true + applicationArea.visible = false + layoutHandler.hideAppLayer() + } + else { + pid = launcher.launch(model.application) + if (1 < pid) { + applicationArea.visible = true + appLauncherAreaLauncher.visible = false + layoutHandler.makeMeVisible(pid) + layoutHandler.showAppLayer(pid) + } + else { + console.warn("app cannot be launched!") + } + } } } }