aboutsummaryrefslogtreecommitdiffstats
path: root/examples/webenginequick/nanobrowser/FullScreenNotification.qml
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2022-09-06 14:16:01 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2022-09-06 16:14:33 +0200
commit00cdb486a2c81def34cfb01ce8409e2b8d647634 (patch)
treefb801728dd940605a1f9a335dcad0036e6d42d19 /examples/webenginequick/nanobrowser/FullScreenNotification.qml
parent5a3c6c6b21d4e7434ed0601cf52900bfaa3d9280 (diff)
Sync the quick nano browser example
The example has gained more features since it was spawned from C++. Task-number: PYSIDE-841 Change-Id: I8f02703f3037502c9159d695824b77e09eab5b01 Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
Diffstat (limited to 'examples/webenginequick/nanobrowser/FullScreenNotification.qml')
-rw-r--r--examples/webenginequick/nanobrowser/FullScreenNotification.qml62
1 files changed, 62 insertions, 0 deletions
diff --git a/examples/webenginequick/nanobrowser/FullScreenNotification.qml b/examples/webenginequick/nanobrowser/FullScreenNotification.qml
new file mode 100644
index 000000000..779406432
--- /dev/null
+++ b/examples/webenginequick/nanobrowser/FullScreenNotification.qml
@@ -0,0 +1,62 @@
+// Copyright (C) 2022 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
+
+import QtQuick
+
+Rectangle {
+ id: fullScreenNotification
+ width: 500
+ height: 40
+ color: "white"
+ radius: 7
+
+ visible: false
+ opacity: 0
+
+ function show() {
+ visible = true;
+ opacity = 1;
+ reset.start();
+ }
+
+ function hide() {
+ reset.stop();
+ opacity = 0;
+ }
+
+ Behavior on opacity {
+ NumberAnimation {
+ duration: 750
+ onStopped: {
+ if (opacity == 0)
+ visible = false;
+ }
+ }
+ }
+
+ Timer {
+ id: reset
+ interval: 5000
+ onTriggered: hide()
+ }
+
+ anchors.horizontalCenter: parent.horizontalCenter
+ y: 125
+
+ Text {
+ id: message
+ width: parent.width
+
+ anchors.horizontalCenter: parent.horizontalCenter
+ anchors.verticalCenter: parent.verticalCenter
+
+ horizontalAlignment: Text.AlignHCenter
+ verticalAlignment: Text.AlignVCenter
+
+ wrapMode: Text.WordWrap
+ elide: Text.ElideNone
+ clip: true
+
+ text: qsTr("You are now in fullscreen mode. Press ESC to quit!")
+ }
+}