aboutsummaryrefslogtreecommitdiffstats
path: root/homescreen/qml/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'homescreen/qml/main.qml')
-rw-r--r--homescreen/qml/main.qml40
1 files changed, 38 insertions, 2 deletions
diff --git a/homescreen/qml/main.qml b/homescreen/qml/main.qml
index a8d095b..de833a9 100644
--- a/homescreen/qml/main.qml
+++ b/homescreen/qml/main.qml
@@ -142,13 +142,15 @@ Window {
container.state = 'fullscreen'
touchArea.switchArea(1)
homescreenHandler.tapShortcut(appName, true)
- container.opacity = 0.0
+ container.visible = false
+ voiceBtn.visible = false
} else {
image.source = './images/normal.png'
container.state = 'normal'
touchArea.switchArea(0)
homescreenHandler.tapShortcut(appName, false)
- container.opacity = 1.0
+ container.visible = true
+ voiceBtn.visible = true
}
}
}
@@ -189,6 +191,7 @@ Window {
image.visible = true
touchArea.switchArea(0)
container.opacity = 1.0
+ voiceBtn.visible = true
}
}
@@ -199,6 +202,7 @@ Window {
image.visible = false
touchArea.switchArea(1)
container.opacity = 0.0
+ voiceBtn.visible = false
}
}
@@ -293,4 +297,36 @@ Window {
notificationTimer.restart()
}
}
+
+ Connections {
+ target: homescreenVoice
+ onStatusChanged: {
+ voiceBtn.visible = status
+ }
+ }
+
+ Item {
+ id: voiceBtn
+ width: 110
+ height: 110
+ anchors.bottom: parent.bottom
+ anchors.right: parent.right
+ anchors.bottomMargin: 50
+ anchors.rightMargin: 0
+ visible: true
+ Image {
+ id: voiceimage
+ anchors.left: parent.left
+ anchors.top: parent.top
+ width: 110
+ height: 110
+ source: './images/voice.png'
+ }
+ MouseArea {
+ anchors.fill: parent
+ onClicked: {
+ homescreenVoice.startListening();
+ }
+ }
+ }
}