12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- 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
- }
- }
|