aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/painterpathquickshape/quadraticCurve.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/painterpathquickshape/quadraticCurve.qml')
-rw-r--r--tests/manual/painterpathquickshape/quadraticCurve.qml47
1 files changed, 47 insertions, 0 deletions
diff --git a/tests/manual/painterpathquickshape/quadraticCurve.qml b/tests/manual/painterpathquickshape/quadraticCurve.qml
new file mode 100644
index 0000000000..9199302c1a
--- /dev/null
+++ b/tests/manual/painterpathquickshape/quadraticCurve.qml
@@ -0,0 +1,47 @@
+// Copyright (C) 2023 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+import QtQuick
+import QtQuick.Shapes
+
+Item {
+ ControlledShape {
+ id: shape
+ anchors.fill: parent
+ strokeWidth: 4
+ strokeColor: "black"
+ fillColor: "transparent"
+
+ startX: 50
+ startY: 50
+
+ delegate: [
+ PathQuad {
+ x: 150
+ y: 50
+ controlX: cp.x
+ controlY: cp.y
+ }
+ ]
+ }
+
+ Rectangle {
+ id: cp
+ color: "red"
+ width: 10
+ height: 10
+ SequentialAnimation on x {
+ loops: Animation.Infinite
+ NumberAnimation {
+ from: 0
+ to: shape.width - cp.width
+ duration: 5000
+ }
+ NumberAnimation {
+ from: shape.width - cp.width
+ to: 0
+ duration: 5000
+ }
+ }
+ }
+}