2022-05-13 13:12:05 +00:00
|
|
|
// Copyright (C) 2021 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2021-08-23 13:14:25 +00:00
|
|
|
import QtQuick
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
Item {
|
|
|
|
property alias color : rectangle.color
|
|
|
|
|
2012-04-18 04:41:14 +00:00
|
|
|
//! [shadow]
|
2011-04-27 10:05:43 +00:00
|
|
|
BorderImage {
|
|
|
|
anchors.fill: rectangle
|
2023-03-30 07:12:28 +00:00
|
|
|
anchors {
|
|
|
|
leftMargin: -6
|
|
|
|
topMargin: -6
|
|
|
|
rightMargin: -8
|
|
|
|
bottomMargin: -8
|
|
|
|
}
|
|
|
|
border {
|
|
|
|
left: 10
|
|
|
|
top: 10
|
|
|
|
right: 10
|
|
|
|
bottom: 10
|
|
|
|
}
|
2021-08-31 15:54:15 +00:00
|
|
|
source: "pics/shadow.png"
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
2012-04-18 04:41:14 +00:00
|
|
|
//! [shadow]
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2023-03-30 07:12:28 +00:00
|
|
|
Rectangle {
|
|
|
|
id: rectangle
|
|
|
|
|
|
|
|
anchors.fill: parent
|
|
|
|
}
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|