X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=homescreen%2Fqml%2FShortcutArea.qml;h=3f78f57882d1585ef84e855c6cdb1d5b40641381;hb=e221104d1e51d84212d3ec131473113c8762d3e7;hp=e0c9182f363b236dda4ade790120447dc83cf6f8;hpb=85392e71f90a0322fdc08359ef1d829cdcf67381;p=apps%2Fhomescreen.git diff --git a/homescreen/qml/ShortcutArea.qml b/homescreen/qml/ShortcutArea.qml index e0c9182..3f78f57 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' + application: 'sdl@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) } } }