aboutsummaryrefslogtreecommitdiff
path: root/src/widget/Overlay.qml
diff options
context:
space:
mode:
authorAdrian Kummerlaender2015-12-15 19:48:16 +0100
committerAdrian Kummerlaender2015-12-15 19:48:16 +0100
commit012d8f7503d9d49ff33da621aee5fabd252e57f5 (patch)
tree232dab8c038d554f55d8c58837e4ebe26208c343 /src/widget/Overlay.qml
parent1562641cc744ff9d6c0e0fd0ce1936010331000f (diff)
downloadMetaTerm-012d8f7503d9d49ff33da621aee5fabd252e57f5.tar
MetaTerm-012d8f7503d9d49ff33da621aee5fabd252e57f5.tar.gz
MetaTerm-012d8f7503d9d49ff33da621aee5fabd252e57f5.tar.bz2
MetaTerm-012d8f7503d9d49ff33da621aee5fabd252e57f5.tar.lz
MetaTerm-012d8f7503d9d49ff33da621aee5fabd252e57f5.tar.xz
MetaTerm-012d8f7503d9d49ff33da621aee5fabd252e57f5.tar.zst
MetaTerm-012d8f7503d9d49ff33da621aee5fabd252e57f5.zip
Extract terminal resize overlay into separate QML item
Diffstat (limited to 'src/widget/Overlay.qml')
-rw-r--r--src/widget/Overlay.qml61
1 files changed, 61 insertions, 0 deletions
diff --git a/src/widget/Overlay.qml b/src/widget/Overlay.qml
new file mode 100644
index 0000000..2a50219
--- /dev/null
+++ b/src/widget/Overlay.qml
@@ -0,0 +1,61 @@
+import QtQuick 2.0
+
+Item {
+ id: item
+
+ property bool enabled : false
+
+ property alias text : content.text
+
+ function displayBriefly() {
+ if ( enabled ) {
+ animation.restart()
+ }
+ }
+
+ Rectangle {
+ id: background
+
+ anchors.fill: parent
+
+ opacity: 0
+ color: settings.terminal.overlayBackground
+
+ SequentialAnimation {
+ id: animation
+
+ ScriptAction {
+ script: background.opacity = 0.8
+ }
+
+ PauseAnimation {
+ duration: 500
+ }
+
+ NumberAnimation {
+ target: background
+ property: "opacity"
+
+ easing.type: Easing.InSine
+ duration: 300
+ from: 0.8
+ to: 0
+ }
+ }
+
+ Text {
+ id: content
+
+ anchors {
+ horizontalCenter: background.horizontalCenter
+ verticalCenter: background.verticalCenter
+ }
+
+ font {
+ family: settings.terminal.fontFamily
+ pointSize: settings.terminal.fontSize * 2
+ }
+ color: settings.terminal.overlayFontColor
+ }
+ }
+}