diff options
| author | Mitch Curtis <mitch.curtis@qt.io> | 2024-11-08 10:53:29 +0800 |
|---|---|---|
| committer | Mitch Curtis <mitch.curtis@qt.io> | 2025-03-04 14:29:58 +0800 |
| commit | e31befb14e4c750ca2d52e7c331b07815f8bda4b (patch) | |
| tree | 0f1ab1f611fed11d9596b5ce2a2879d079c98982 /src/quick/doc/snippets/qml/pathrectangle | |
| parent | a05d62ad5aecd3d7be70cb91e9e7381d62c69af9 (diff) | |
PathRectangle: add bevel properties
These are needed for the RectangleShape from
QtQuick.Shapes.DesignHelpers.
[ChangeLog][Shapes] Added bevel properties.
Task-number: QDS-13283
Change-Id: I904d6bd9b02bc0fccd271cba5e764040f20de995
Reviewed-by: Eirik Aavitsland <eirik.aavitsland@qt.io>
Diffstat (limited to 'src/quick/doc/snippets/qml/pathrectangle')
| -rw-r--r-- | src/quick/doc/snippets/qml/pathrectangle/pathrectangle-bevel.qml | 34 | ||||
| -rw-r--r-- | src/quick/doc/snippets/qml/pathrectangle/pathrectangle.qml | 36 |
2 files changed, 70 insertions, 0 deletions
diff --git a/src/quick/doc/snippets/qml/pathrectangle/pathrectangle-bevel.qml b/src/quick/doc/snippets/qml/pathrectangle/pathrectangle-bevel.qml new file mode 100644 index 0000000000..90ad562e0b --- /dev/null +++ b/src/quick/doc/snippets/qml/pathrectangle/pathrectangle-bevel.qml @@ -0,0 +1,34 @@ +// 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 { + fillColor: "#3ad23c" + + PathRectangle { + width: rectangleShape.width + height: rectangleShape.height + topLeftRadius: 30 + bottomRightRadius: 30 + bevel: true + } + } + } +//! [shape] +} diff --git a/src/quick/doc/snippets/qml/pathrectangle/pathrectangle.qml b/src/quick/doc/snippets/qml/pathrectangle/pathrectangle.qml new file mode 100644 index 0000000000..a51a5a403d --- /dev/null +++ b/src/quick/doc/snippets/qml/pathrectangle/pathrectangle.qml @@ -0,0 +1,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] +} |
