2022-05-13 13:12:05 +00:00
|
|
|
// Copyright (C) 2017 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2022-08-31 07:59:05 +00:00
|
|
|
import QtQuick
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
Rectangle {
|
2012-02-20 00:34:44 +00:00
|
|
|
width: 320; height: 480
|
2011-04-27 10:05:43 +00:00
|
|
|
color: "#343434"
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
anchors.centerIn: parent
|
|
|
|
width: 200; height: 200
|
|
|
|
radius: 30
|
|
|
|
color: "transparent"
|
|
|
|
border.width: 4; border.color: "white"
|
|
|
|
|
|
|
|
|
|
|
|
SideRect {
|
|
|
|
id: leftRect
|
2019-11-15 12:25:13 +00:00
|
|
|
focusItem: focusRect
|
2011-04-27 10:05:43 +00:00
|
|
|
anchors { verticalCenter: parent.verticalCenter; horizontalCenter: parent.left }
|
|
|
|
text: "Left"
|
|
|
|
}
|
|
|
|
|
|
|
|
SideRect {
|
|
|
|
id: rightRect
|
2019-11-15 12:25:13 +00:00
|
|
|
focusItem: focusRect
|
2011-04-27 10:05:43 +00:00
|
|
|
anchors { verticalCenter: parent.verticalCenter; horizontalCenter: parent.right }
|
|
|
|
text: "Right"
|
|
|
|
}
|
|
|
|
|
|
|
|
SideRect {
|
|
|
|
id: topRect
|
2019-11-15 12:25:13 +00:00
|
|
|
focusItem: focusRect
|
2011-04-27 10:05:43 +00:00
|
|
|
anchors { verticalCenter: parent.top; horizontalCenter: parent.horizontalCenter }
|
|
|
|
text: "Top"
|
|
|
|
}
|
|
|
|
|
|
|
|
SideRect {
|
|
|
|
id: bottomRect
|
2019-11-15 12:25:13 +00:00
|
|
|
focusItem: focusRect
|
2011-04-27 10:05:43 +00:00
|
|
|
anchors { verticalCenter: parent.bottom; horizontalCenter: parent.horizontalCenter }
|
|
|
|
text: "Bottom"
|
|
|
|
}
|
|
|
|
|
2019-11-15 12:25:13 +00:00
|
|
|
FocusRect {
|
2011-04-27 10:05:43 +00:00
|
|
|
id: focusRect
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|