123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- import QtQuick
- import QtQuick.Templates as T
- import QtQuick.Controls.impl
- import QtQuick.Controls.Material
- import QtQuick.Controls.Material.impl
- T.SelectionRectangle {
- id: control
- topLeftHandle: handle
- bottomRightHandle: handle
- Component {
- id: handle
- SliderHandle {
- palette: SelectionRectangle.control.palette
- handlePressed: tapHandler.pressed || SelectionRectangle.dragging
- handleHovered: hoverHandler.hovered
- visible: SelectionRectangle.control.active
- HoverHandler {
- id: hoverHandler
- }
- TapHandler {
- id: tapHandler
- }
- }
- }
- }
|