aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickdeliveryagent/data
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/quick/qquickdeliveryagent/data')
-rw-r--r--tests/auto/quick/qquickdeliveryagent/data/clearItemsOnHoverLeave.qml32
-rw-r--r--tests/auto/quick/qquickdeliveryagent/data/compoundControl.qml28
-rw-r--r--tests/auto/quick/qquickdeliveryagent/data/flickableTextEdit.qml2
-rw-r--r--tests/auto/quick/qquickdeliveryagent/data/listViewDelegate.qml2
4 files changed, 62 insertions, 2 deletions
diff --git a/tests/auto/quick/qquickdeliveryagent/data/clearItemsOnHoverLeave.qml b/tests/auto/quick/qquickdeliveryagent/data/clearItemsOnHoverLeave.qml
new file mode 100644
index 0000000000..7b37b44050
--- /dev/null
+++ b/tests/auto/quick/qquickdeliveryagent/data/clearItemsOnHoverLeave.qml
@@ -0,0 +1,32 @@
+import QtQuick
+
+Rectangle{
+ id: mainWindow
+
+ visible: true
+ width: 800
+ height: 600
+
+ Column {
+ anchors.fill: parent
+ MouseArea {
+ width: parent.width
+ height: parent.height/3
+ hoverEnabled: true
+ }
+ MouseArea {
+ id: mouseArea
+ width: parent.width
+ height: parent.height/3
+ hoverEnabled: true
+ onExited: {
+ Window.window.close();
+ }
+ }
+ MouseArea {
+ width: parent.width
+ height: parent.height / 3
+ hoverEnabled: true
+ }
+ }
+}
diff --git a/tests/auto/quick/qquickdeliveryagent/data/compoundControl.qml b/tests/auto/quick/qquickdeliveryagent/data/compoundControl.qml
new file mode 100644
index 0000000000..8ed05fc8d2
--- /dev/null
+++ b/tests/auto/quick/qquickdeliveryagent/data/compoundControl.qml
@@ -0,0 +1,28 @@
+// Copyright (C) 2024 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+import QtQuick
+import QtQuick.Controls
+import QtQuick.Controls.Basic
+
+Item {
+ id: root
+ objectName: "root"
+ width: 320
+ height: 240
+
+ FocusScope {
+ id: spinboxFocusScope
+ objectName: "spinboxFocusScope"
+ width: spinbox.width
+ height: spinbox.height
+ SpinBox {
+ id: spinbox
+ objectName: "spinbox"
+ editable: true
+ contentItem: TextField {
+ objectName: "spinboxContentItem"
+ }
+ }
+ }
+} \ No newline at end of file
diff --git a/tests/auto/quick/qquickdeliveryagent/data/flickableTextEdit.qml b/tests/auto/quick/qquickdeliveryagent/data/flickableTextEdit.qml
index 5286def525..79d91a25d4 100644
--- a/tests/auto/quick/qquickdeliveryagent/data/flickableTextEdit.qml
+++ b/tests/auto/quick/qquickdeliveryagent/data/flickableTextEdit.qml
@@ -1,5 +1,5 @@
// Copyright (C) 2021 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
import QtQuick
diff --git a/tests/auto/quick/qquickdeliveryagent/data/listViewDelegate.qml b/tests/auto/quick/qquickdeliveryagent/data/listViewDelegate.qml
index bdb7246450..c5207e2a5d 100644
--- a/tests/auto/quick/qquickdeliveryagent/data/listViewDelegate.qml
+++ b/tests/auto/quick/qquickdeliveryagent/data/listViewDelegate.qml
@@ -1,5 +1,5 @@
// Copyright (C) 2022 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
import QtQuick