summaryrefslogtreecommitdiffstats
path: root/app/BodyTemplateDialog.qml
diff options
context:
space:
mode:
authorScott Murray <scott.murray@konsulko.com>2020-01-16 15:56:45 -0500
committerScott Murray <scott.murray@konsulko.com>2020-01-17 10:46:32 -0500
commit72d27a7ee129c4aea2d0d0a1039af73f9017db35 (patch)
tree46ca9b4e4045d89bc21c97f42479a34f8593275f /app/BodyTemplateDialog.qml
parentd37d1b09b688312f0119dac93221c633a8b8458c (diff)
A simple application that pops up to display the guimetadata responses from the voice capabilities API. It is currently considered to be Alexa specific, as it relies on the response templates provided by the Alexa voiceagent via the capabilities API, and there are no other voiceagents available to vet whether those template contents will be treated as a fixed part of the capabilities API. At the moment, only the two types of body template (BodyTemplate1 and 2) and the WeatherTemplate are handled, and rendering of the latter is only of the current day's weather. The application uses the onscreen role so that it can pop up above running applications. To drive the pop up behavior, a simple client is used to handle the guimetadata events from vshl-capabilities and show the window with the homescreen API. Filling in the template is handled with separate support from libqtappfw to provide the template data to Qt. Additionally, note that there currently is a hook for the navigation capability in the simple afb client to enable raising the navigation application when the setDestination capability is triggered. Once a better place to handle this is architected, it should be moved out of this application. Bug-AGL: SPEC-3110 Signed-off-by: Scott Murray <scott.murray@konsulko.com> Change-Id: Ifce9554b93d1e781283fd68f8e911a7010dd8cf0
Diffstat (limited to 'app/BodyTemplateDialog.qml')
-rw-r--r--app/BodyTemplateDialog.qml164
1 files changed, 164 insertions, 0 deletions
diff --git a/app/BodyTemplateDialog.qml b/app/BodyTemplateDialog.qml
new file mode 100644
index 0000000..4da85d9
--- /dev/null
+++ b/app/BodyTemplateDialog.qml
@@ -0,0 +1,164 @@
+/*
+ * Copyright (C) 2020 Konsulko Group
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import QtQuick 2.2
+import QtQuick.Layouts 1.1
+import QtQuick.Controls 2.0
+
+Rectangle {
+ id: body_main
+ width: 1000
+ height: 1000
+ radius: 2
+
+ color: "black"
+
+ ColumnLayout {
+ id: body_col
+ anchors.fill: parent.fill
+
+ Label {
+ id: body_title
+ Layout.fillWidth: true
+ Layout.fillHeight: false
+ Layout.topMargin: 20
+ Layout.leftMargin: 20
+ Layout.rightMargin: 20
+
+ text: bodyTemplate.title
+ color: "white"
+ font.pixelSize: 32
+ font.bold: true
+ maximumLineCount: 1
+ wrapMode: Text.Wrap
+ elide: Text.ElideRight
+ horizontalAlignment: Label.AlignLeft
+ verticalAlignment: Label.AlignVCenter
+ }
+
+ Label {
+ id: body_subtitle
+ Layout.fillWidth: true
+ Layout.fillHeight: false
+ Layout.topMargin: 0
+ Layout.leftMargin: 20
+ Layout.rightMargin: 20
+
+ text: bodyTemplate.subtitle
+ visible: bodyTemplate.subtitle != ""
+ color: "white"
+ font.pixelSize: 22
+ font.bold: false
+ maximumLineCount: 1
+ wrapMode: Text.Wrap
+ elide: Text.ElideRight
+ horizontalAlignment: Label.AlignLeft
+ verticalAlignment: Label.AlignVCenter
+ }
+
+ RowLayout {
+ id: body_row
+ Layout.fillWidth: true
+ Layout.fillHeight: true
+ Layout.topMargin: 20
+ Layout.leftMargin: 20
+ Layout.rightMargin: 20
+ spacing: 20
+
+ Text {
+ id: body_textContent
+ Layout.fillWidth: true
+ Layout.fillHeight: true
+
+ text: bodyTemplate.textContent
+ color: "white"
+ font.pixelSize: 32
+ font.bold: false
+ wrapMode: Text.Wrap
+ verticalAlignment: Text.AlignTop
+ maximumLineCount: 21
+
+ states: [
+ State {
+ name: "BodyTemplate2"
+ when: bodyTemplate.imageContentSource != ""
+ PropertyChanges {
+ target: body_textContent
+ Layout.maximumWidth: (body_main.width - 3 * parent.spacing) / 2
+ Layout.preferredWidth: (body_main.width - 3 * parent.spacing) / 2
+ }
+ },
+ State {
+ name: "BodyTemplate1"
+ when: bodyTemplate.imageContentSource == ""
+ PropertyChanges {
+ target: body_textContent
+ Layout.maximumWidth: body_main.width - 2 * parent.spacing
+ Layout.preferredWidth: body_main.width - 2 * parent.spacing
+ }
+ }
+ ]
+ }
+
+ Image {
+ id: body_imageContent
+ Layout.fillWidth: true
+ Layout.fillHeight: false
+ Layout.maximumWidth: (body_main.width - 3 * parent.spacing) / 2
+ Layout.preferredWidth: (body_main.width - 3 * parent.spacing) / 2
+ Layout.alignment: Qt.AlignTop
+
+ source: bodyTemplate.imageContentSource
+ visible: bodyTemplate.imageContentSource != ""
+ fillMode: Image.PreserveAspectFit
+ horizontalAlignment: Image.AlignHCenter
+ verticalAlignment: Image.AlignTop
+ }
+ }
+ }
+
+ Button {
+ id: body_close
+ anchors.bottom: parent.bottom
+ anchors.horizontalCenter: parent.horizontalCenter
+ anchors.bottomMargin: 20
+
+ text: "Close"
+
+ onReleased: {
+ body_close.highlighted = false
+ clear()
+ hide()
+ }
+ onPressed: {
+ body_close.highlighted = true
+ }
+ onCanceled: {
+ body_close.highlighted = false
+ }
+ }
+
+ // Functions
+
+ function clear() {
+ bodyTemplate.visible = false
+
+ bodyTemplate.title = ""
+ bodyTemplate.subtitle = ""
+ bodyTemplate.textContent = ""
+ bodyTemplate.imageContentSource = ""
+ }
+}