aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/pluginQuick_attached.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qmllint/data/pluginQuick_attached.qml')
-rw-r--r--tests/auto/qml/qmllint/data/pluginQuick_attached.qml27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/auto/qml/qmllint/data/pluginQuick_attached.qml b/tests/auto/qml/qmllint/data/pluginQuick_attached.qml
new file mode 100644
index 0000000000..c5f4e0d552
--- /dev/null
+++ b/tests/auto/qml/qmllint/data/pluginQuick_attached.qml
@@ -0,0 +1,27 @@
+import QtQuick
+import QtQuick.Layouts
+import QtQuick.Controls
+
+Item {
+ QtObject {
+ // QtQuick
+ Accessible.name: "Foo"
+ LayoutMirroring.enabled: true
+ EnterKey.type: Qt.EnterKeyGo
+
+ // QtQuick.Layouts
+ Layout.minimumHeight: 3
+ property bool stackLayout: StackLayout.isCurrentItem // Read-only
+
+ // QtQuick.Templates
+ ScrollBar.vertical: ScrollBar {}
+ ScrollIndicator.vertical: ScrollIndicator {}
+ SplitView.fillWidth: true
+ StackView.visible: true
+ property int swipeView: SwipeView.index // Read-only
+ TextArea.flickable: TextArea {}
+ ToolTip.delay: 50
+ property bool tumbler: Tumbler.displacement // Read-only
+ property bool swipeDelegate: SwipeDelegate.pressed // Read-only
+ }
+}