23import QtQuick.Controls
35 anchors.right: parent.right
42 cursorShape: Qt.SizeHorCursor
43 acceptedButtons: Qt.NoButton
48 grabPermissions: TapHandler.TakeOverForbidden
54 control.Window.window.startSystemResize(Qt.RightEdge)
69 anchors.left: parent.left
76 cursorShape: Qt.SizeHorCursor
77 acceptedButtons: Qt.NoButton
82 grabPermissions: TapHandler.TakeOverForbidden
88 control.Window.window.startSystemResize(Qt.LeftEdge)
103 anchors.bottom: parent.bottom
105 sourceComponent: Item
110 cursorShape: Qt.SizeVerCursor
111 acceptedButtons: Qt.NoButton
116 grabPermissions: TapHandler.TakeOverForbidden
122 control.Window.window.startSystemResize(Qt.BottomEdge)
132 active: canResizeV || canResizeH
138 anchors.bottom: parent.bottom
139 anchors.left: parent.left
141 sourceComponent: Item
146 cursorShape: Qt.SizeBDiagCursor
147 acceptedButtons: Qt.NoButton
152 grabPermissions: TapHandler.TakeOverForbidden
158 control.Window.window.startSystemResize(Qt.LeftEdge | Qt.BottomEdge);
171 anchors.bottom: parent.bottom
172 anchors.right: parent.right
174 sourceComponent:
Item
179 cursorShape:
Qt.SizeFDiagCursor
180 acceptedButtons:
Qt.NoButton
185 grabPermissions: TapHandler.TakeOverForbidden
191 control.Window.window.startSystemResize(
Qt.RightEdge |
Qt.BottomEdge)