// 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 } } }