aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/painterpathquickshape/dashPattern.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/painterpathquickshape/dashPattern.qml')
-rw-r--r--tests/manual/painterpathquickshape/dashPattern.qml36
1 files changed, 36 insertions, 0 deletions
diff --git a/tests/manual/painterpathquickshape/dashPattern.qml b/tests/manual/painterpathquickshape/dashPattern.qml
new file mode 100644
index 0000000000..23a7cbbc55
--- /dev/null
+++ b/tests/manual/painterpathquickshape/dashPattern.qml
@@ -0,0 +1,36 @@
+// Copyright (C) 2023 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+import QtQuick
+import QtQuick.Shapes
+
+ControlledShape {
+ id: shape
+ anchors.fill: parent
+ strokeWidth: 5
+ strokeColor: "blue"
+ strokeStyle: ShapePath.DashLine
+ //dashPattern: [ 1, 4, 4, 4 ]
+ fillColor: "lightBlue"
+ property real xr: 70
+ property real yr: 30
+ startX: shape.width / 2 - xr
+ startY: shape.height / 2 - yr
+
+ delegate: [
+ PathArc {
+ x: shape.width / 2 + shape.xr
+ y: shape.height / 2 + shape.yr
+ radiusX: shape.xr
+ radiusY: shape.yr
+ useLargeArc: true
+ },
+ PathArc {
+ x: shape.width / 2 - shape.xr
+ y: shape.height / 2 - shape.yr
+ radiusX: shape.xr
+ radiusY: shape.yr
+ useLargeArc: true
+ }
+ ]
+}