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
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
id: window
|
|
|
|
|
2023-03-30 07:12:28 +00:00
|
|
|
width: 480
|
|
|
|
height: 320
|
2011-04-27 10:05:43 +00:00
|
|
|
color: "gray"
|
|
|
|
|
|
|
|
ShadowRectangle {
|
2023-03-30 07:12:28 +00:00
|
|
|
anchors.centerIn: parent
|
|
|
|
width: 250
|
|
|
|
height: 250
|
2011-04-27 10:05:43 +00:00
|
|
|
color: "lightsteelblue"
|
|
|
|
}
|
|
|
|
|
|
|
|
ShadowRectangle {
|
2023-03-30 07:12:28 +00:00
|
|
|
anchors.centerIn: parent
|
|
|
|
width: 200
|
|
|
|
height: 200
|
2011-04-27 10:05:43 +00:00
|
|
|
color: "steelblue"
|
|
|
|
}
|
|
|
|
|
|
|
|
ShadowRectangle {
|
2023-03-30 07:12:28 +00:00
|
|
|
anchors.centerIn: parent
|
|
|
|
width: 150
|
|
|
|
height: 150
|
2011-04-27 10:05:43 +00:00
|
|
|
color: "thistle"
|
|
|
|
}
|
|
|
|
}
|