aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/pluginQuick_attachedClean.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qmllint/data/pluginQuick_attachedClean.qml')
-rw-r--r--tests/auto/qml/qmllint/data/pluginQuick_attachedClean.qml31
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/auto/qml/qmllint/data/pluginQuick_attachedClean.qml b/tests/auto/qml/qmllint/data/pluginQuick_attachedClean.qml
new file mode 100644
index 0000000000..5114628428
--- /dev/null
+++ b/tests/auto/qml/qmllint/data/pluginQuick_attachedClean.qml
@@ -0,0 +1,31 @@
+import QtQuick
+import QtQuick.Layouts
+import QtQuick.Controls
+
+Item {
+ // 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
+ SplitView.fillWidth: true
+ StackView.visible: true
+ property int swipeView: SwipeView.index // Read only, enforceable but complicated
+ Flickable {
+ TextArea.flickable: TextArea {}
+ ScrollIndicator.vertical: ScrollIndicator {}
+ ScrollBar.vertical: ScrollBar {}
+ }
+ ToolTip.delay: 50
+ TableView {
+ delegate: Item {
+ property bool tumbler: Tumbler.displacement // Read only, enforceable but complicated
+ }
+ }
+ property bool swipeDelegate: SwipeDelegate.pressed // Read only
+}