From b57a3197dad42bdd7a72266aaa160341573b0627 Mon Sep 17 00:00:00 2001 From: Scott Murray Date: Sun, 29 Dec 2019 17:36:25 -0500 Subject: Display Alexa specific chrome when it is used Add logic to key off the voiceagent name and display Alexa specific chrome (the required Alexa icon) when it is used. Bug-AGL: SPEC-3075 Signed-off-by: Scott Murray Change-Id: I4bacad2e3906ee1e8221ed3e6bfe92b340d65aab --- homescreen/qml/SpeechChrome.qml | 5 +++-- .../qml/images/SpeechChrome/push_to_talk_alexa.png | Bin 0 -> 1544 bytes homescreen/qml/images/SpeechChrome/speechchrome.qrc | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 homescreen/qml/images/SpeechChrome/push_to_talk_alexa.png (limited to 'homescreen/qml') diff --git a/homescreen/qml/SpeechChrome.qml b/homescreen/qml/SpeechChrome.qml index ab46cb6..123928c 100644 --- a/homescreen/qml/SpeechChrome.qml +++ b/homescreen/qml/SpeechChrome.qml @@ -7,6 +7,7 @@ Item { clip: true property bool agentPresent: speechChromeController.agentPresent + property string agentName: speechChromeController.agentName visible: agentPresent @@ -33,7 +34,7 @@ Item { anchors.left: parent.left anchors.leftMargin: parent.width / 128 anchors.verticalCenter: parent.verticalCenter - source: "./images/SpeechChrome/push_to_talk.svg" + source: agentName === "Alexa" ? "./images/SpeechChrome/push_to_talk_alexa.png" : "./images/SpeechChrome/push_to_talk.svg" MouseArea { anchors.fill: parent @@ -54,7 +55,7 @@ Item { anchors.right: parent.right anchors.rightMargin: parent.width / 128 anchors.verticalCenter: parent.verticalCenter - source: "./images/SpeechChrome/push_to_talk.svg" + source: agentName === "Alexa" ? "./images/SpeechChrome/push_to_talk_alexa.png" : "./images/SpeechChrome/push_to_talk.svg" MouseArea { anchors.fill: parent diff --git a/homescreen/qml/images/SpeechChrome/push_to_talk_alexa.png b/homescreen/qml/images/SpeechChrome/push_to_talk_alexa.png new file mode 100644 index 0000000..f45218e Binary files /dev/null and b/homescreen/qml/images/SpeechChrome/push_to_talk_alexa.png differ diff --git a/homescreen/qml/images/SpeechChrome/speechchrome.qrc b/homescreen/qml/images/SpeechChrome/speechchrome.qrc index 42357f1..c5a9690 100644 --- a/homescreen/qml/images/SpeechChrome/speechchrome.qrc +++ b/homescreen/qml/images/SpeechChrome/speechchrome.qrc @@ -2,5 +2,6 @@ bar.png push_to_talk.svg + push_to_talk_alexa.png -- cgit 1.2.3-korg