aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/doc/snippets/qml/pathrectangle/pathrectangle.qml
blob: a51a5a403d790864fbffda747b88d140c3ae107a (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
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick
import QtQuick.Shapes

Window {
    width: rectangleShape.width + 10
    height: rectangleShape.height + 10
    visible: true
    flags: Qt.FramelessWindowHint

//! [shape]
    Shape {
        id: rectangleShape
        width: 200
        height: 150
        anchors.centerIn: parent
        preferredRendererType: Shape.CurveRenderer

        ShapePath {
            strokeColor: "black"
            strokeWidth: 4
            joinStyle: ShapePath.MiterJoin

            PathRectangle {
                width: rectangleShape.width
                height: rectangleShape.height
                radius: 10
                topLeftRadius: 0
                bottomRightBevel: true
            }
        }
    }
//! [shape]
}