aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/quickcontrols/styles-cover-flow/CoverFlowPath.qml
blob: 15869772d8010abcb64b29b7e4eb985049371973 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQuick

Path {
    // Point 1
    property PathView pathView

    startX: 0
    startY: pathView.centerY

    PathAttribute {
        name: "rotateY"
        value: 50.0
    }
    PathAttribute {
        name: "scale"
        value: 0.7
    }
    PathAttribute {
        name: "zOrder"
        value: 1.0
    }

    // Line to point 2
    PathLine {
        x: pathView.centerX - pathView.delegateSize * 0.4
        y: pathView.centerY
    }
    PathPercent {
        value: 0.44
    }
    PathAttribute {
        name: "rotateY"
        value: 50.0
    }
    PathAttribute {
        name: "scale"
        value: 0.7
    }
    PathAttribute {
        name: "zOrder"
        value: 10.0
    }

    // Quad to point 3
    PathQuad {
        x: pathView.centerX
        y: pathView.centerY + pathView.delegateSize * 0.04
        controlX: pathView.centerX - pathView.delegateSize * 0.2
        controlY: pathView.centerY + pathView.delegateSize * 0.04
    }
    PathPercent {
        value: 0.5
    }
    PathAttribute {
        name: "rotateY"
        value: 0.0
    }
    PathAttribute {
        name: "scale"
        value: 1.0
    }
    PathAttribute {
        name: "zOrder"
        value: 50.0
    }

    // Quad to point 4
    PathQuad {
        x: pathView.centerX + pathView.delegateSize * 0.4
        y: pathView.centerY
        controlX: pathView.centerX + pathView.delegateSize * 0.2
        controlY: pathView.centerY + pathView.delegateSize * 0.04
    }
    PathPercent {
        value: 0.56
    }
    PathAttribute {
        name: "rotateY"
        value: -50.0
    }
    PathAttribute {
        name: "scale"
        value: 0.7
    }
    PathAttribute {
        name: "zOrder"
        value: 10.0
    }

    // Line to point 5
    PathLine {
        x: pathView.width
        y: pathView.centerY
    }
    PathAttribute {
        name: "rotateY"
        value: -50.0
    }
    PathAttribute {
        name: "scale"
        value: 0.7
    }
    PathAttribute {
        name: "zOrder"
        value: 1.0
    }
}