X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=homescreen%2Fqml%2FShortcutArea.qml;h=a708e6115c85f304143b01e70caa812500efdd7a;hb=687d3fd6162d6415b0e4eb5aaf408f4824e27a0c;hp=e0c9182f363b236dda4ade790120447dc83cf6f8;hpb=85392e71f90a0322fdc08359ef1d829cdcf67381;p=apps%2Fhomescreen.git diff --git a/homescreen/qml/ShortcutArea.qml b/homescreen/qml/ShortcutArea.qml index e0c9182..a708e61 100644 --- a/homescreen/qml/ShortcutArea.qml +++ b/homescreen/qml/ShortcutArea.qml @@ -24,6 +24,13 @@ Item { width: 785 height: 218 + Timer { + id:notificationTimer + interval: 3000 + running: false + repeat: true + onTriggered: notificationItem.visible = false + } ListModel { id: applicationModel @@ -32,15 +39,15 @@ Item { application: 'launcher@0.1' } ListElement { - name: 'MediaPlayer' - application: 'mediaplayer@0.1' + name: 'sdl_usb' + application: 'sdl_usb@5.0' } ListElement { - name: 'HVAC' - application: 'hvac@0.1' + name: 'Video' + application: 'video@0.1' } ListElement { - name: 'Navigation' + name: 'navigation' application: 'navigation@0.1' } } @@ -66,7 +73,7 @@ Item { console.warn(model.application) console.warn("app cannot be launched!") } - homescreenHandler.tapShortcut(model.name) + homescreenHandler.tapShortcut(model.name, false) } } }