aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/shapes/shapegallery.qml
blob: dec1b4a5c5f57f06b117cc3fe3465f729f387956 (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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick
import QtQuick.Shapes

Rectangle {
    id: root
    width: 1024
    height: 768

    property color col: "lightsteelblue"
    gradient: Gradient {
        GradientStop { position: 0.0; color: Qt.tint(root.col, "#20FFFFFF") }
        GradientStop { position: 0.1; color: Qt.tint(root.col, "#20AAAAAA") }
        GradientStop { position: 0.9; color: Qt.tint(root.col, "#20666666") }
        GradientStop { position: 1.0; color: Qt.tint(root.col, "#20000000") }
    }

    ListModel {
        id: pathGalleryModel
        ListElement {
            name: "Stroke and fill"
            shapeUrl: "tapableTriangle.qml"
        }
        ListElement {
            name: "Stroke or fill only"
            shapeUrl: "strokeOrFill.qml"
        }
        ListElement {
            name: "Dash pattern"
            shapeUrl: "linearGradient.qml"
        }
        ListElement {
            name: "Linear gradient"
            shapeUrl: "radialGradient.qml"
        }
        ListElement {
            name: "Radial gradient"
            shapeUrl: "dashPattern.qml"
        }
        ListElement {
            name: "Fill rules"
            shapeUrl: "fillRules.qml"
        }
        ListElement {
            name: "Join styles"
            shapeUrl: "joinStyles.qml"
        }
        ListElement {
            name: "Cap styles"
            shapeUrl: "capStyles.qml"
        }
        ListElement {
            name: "Quadratic curve"
            shapeUrl: "quadraticCurve.qml"
        }
        ListElement {
            name: "Cubic curve"
            shapeUrl: "cubicCurve.qml"
        }
        ListElement {
            name: "Elliptical arc"
            shapeUrl: "ellipticalArcs.qml"
        }
        ListElement {
            name: "Gradient spread modes"
            shapeUrl: "gradientSpreadModes.qml"
        }
        ListElement {
            name: "Arc direction"
            shapeUrl: "arcDirection.qml"
        }
        ListElement {
            name: "Large/small arc"
            shapeUrl: "largeOrSmallArc.qml"
        }
        ListElement {
            name: "Arc rotation"
            shapeUrl: "arcRotation.qml"
        }
        ListElement {
            name: "Tiger"
            shapeUrl: "tigerLoader.qml"
        }
        ListElement {
            name: "Text"
            shapeUrl: "text.qml"
        }
    }

    property int gridSpacing: 10

    Component {
        id: pathGalleryDelegate
        Rectangle {
            border.color: "purple"
            width: grid.cellWidth - root.gridSpacing
            height: grid.cellHeight - root.gridSpacing
            Column {
                anchors.fill: parent
                anchors.margins: 4
                Item {
                    width: parent.width
                    height: parent.height - delegText.height
                    Loader {
                        source: Qt.resolvedUrl(shapeUrl)
                        anchors.fill: parent
                    }
                }
                Text {
                    id: delegText
                    text: model.name
                    font.pointSize: 16
                    anchors.horizontalCenter: parent.horizontalCenter
                }
            }
        }
    }

    Rectangle {
        anchors.fill: parent
        anchors.margins: 10
        color: "lightBlue"
        clip: true

        GridView {
            id: grid
            anchors.fill: parent
            anchors.margins: root.gridSpacing
            cellWidth: 300
            cellHeight: 300
            delegate: pathGalleryDelegate
            model: pathGalleryModel
        }
    }

    Text {
        anchors.right: parent.right
        Shape { id: dummyShape; ShapePath { } } // used only to get the renderer type
        color: "darkBlue"
        font.pointSize: 12
        property variant rendererStrings: [ "Unknown", "Generic (QtGui triangulator)", "GL_NV_path_rendering", "Software (QPainter)" ]
        text: "Active Shape backend: " + rendererStrings[dummyShape.rendererType]
        SequentialAnimation on opacity {
            NumberAnimation { from: 1; to: 0; duration: 5000 }
            PauseAnimation { duration: 5000 }
            NumberAnimation { from: 0; to: 1; duration: 1000 }
            PauseAnimation { duration: 5000 }
            loops: Animation.Infinite
        }
    }
}