aboutsummaryrefslogtreecommitdiffstats
path: root/src/quickcontrols/basic/SelectionRectangle.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/quickcontrols/basic/SelectionRectangle.qml')
-rw-r--r--src/quickcontrols/basic/SelectionRectangle.qml28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/quickcontrols/basic/SelectionRectangle.qml b/src/quickcontrols/basic/SelectionRectangle.qml
new file mode 100644
index 0000000000..8e16d10418
--- /dev/null
+++ b/src/quickcontrols/basic/SelectionRectangle.qml
@@ -0,0 +1,28 @@
+// Copyright (C) 2021 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+
+import QtQuick
+import QtQuick.Controls.impl
+import QtQuick.Shapes
+import QtQuick.Templates as T
+
+T.SelectionRectangle {
+ id: control
+
+ topLeftHandle: Handle {}
+ bottomRightHandle: Handle {}
+
+ component Handle : Rectangle {
+ id: handle
+ width: 28
+ height: width
+ radius: width / 2
+ color: SelectionRectangle.dragging ? control.palette.light : control.palette.window
+ border.width: 1
+ border.color: control.enabled ? control.palette.mid : control.palette.midlight
+ visible: SelectionRectangle.control.active
+
+ property Item control: SelectionRectangle.control
+ }
+
+}