diff options
author | Peter Varga <pvarga@inf.u-szeged.hu> | 2023-01-31 09:17:19 +0100 |
---|---|---|
committer | Peter Varga <pvarga@inf.u-szeged.hu> | 2023-02-02 10:55:34 +0100 |
commit | 756b8d63ac1710dc3661c1900a0a90ae3b0db926 (patch) | |
tree | 628aac8e82f0c486e2fafb67160e179b1a99ace2 /tests/quicktestbrowser/FullScreenNotification.qml | |
parent | c9852591cb8ccedfcdf0469db04be59671a912e9 (diff) | |
download | qtwebengine-756b8d63ac1710dc3661c1900a0a90ae3b0db926.tar.gz |
Remove quicktestbrowser
It is not maintained for a while and most probably also not used because
it is not working since Qt6.
QuickNanoBrowser example should be used instead, because it implements
most of the quicktestbrowser features.
Pick-to: 6.5
Change-Id: I330e1c6e0f4bf81c0bce0e6d70d47a513f63d8c7
Reviewed-by: Michal Klocek <michal.klocek@qt.io>
Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'tests/quicktestbrowser/FullScreenNotification.qml')
-rw-r--r-- | tests/quicktestbrowser/FullScreenNotification.qml | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/tests/quicktestbrowser/FullScreenNotification.qml b/tests/quicktestbrowser/FullScreenNotification.qml deleted file mode 100644 index e48d6c646..000000000 --- a/tests/quicktestbrowser/FullScreenNotification.qml +++ /dev/null @@ -1,62 +0,0 @@ -// Copyright (C) 2016 The Qt Company Ltd. -// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 - -import QtQuick 2.5 - -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!") - } -} |