1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
|
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
import QtQuick
import QtQuick.Shapes
TapHandler {
property var labels: [ "upperLeft", "upperRight", "lowerRight", "lowerLeft" ]
signal triggered(string text)
id: menuTap
acceptedButtons: Qt.RightButton
gesturePolicy: TapHandler.DragWithinBounds
onPressedChanged: if (pressed) {
impl.x = point.position.x - impl.width / 2
impl.y = point.position.y - impl.width / 2
} else {
if (impl.highlightedShape)
menuTap.triggered(impl.highlightedShape.text)
}
property Item impl: Item {
parent: menuTap.parent
width: 100
height: 100
// with touchscreen or stylus, long-press slowly expands the menu to size
// with mouse or touchpad right-click, it opens instantly
scale: menuTap.point.device.pointerType === PointerDevice.Generic ?
1 : Math.min(1, Math.max(0, menuTap.timeHeld * 4))
opacity: scale * 2
visible: menuTap.pressed
property Shape highlightedShape: null
component PieSegment : Shape {
id: shape
property int orientation: Qt.TopRightCorner
property alias text: text.text
width: 100
height: 100
containsMode: Shape.FillContains
preferredRendererType: Shape.CurveRenderer
property bool highlighted: menuTap.pressed &&
shape.contains(shape.mapFromItem(menuTap.parent, menuTap.point.position))
onHighlightedChanged: {
if (highlighted)
impl.highlightedShape = shape
else if (impl.highlightedShape === shape)
impl.highlightedShape = null
}
ShapePath {
fillColor: highlighted ? "darkturquoise" : "aliceblue"
PathSvg {
id: svgPath
path: switch (orientation) {
case Qt.TopRightCorner:
return "M75,50 l 25,0 a50,50 0 0,0 -50,-50 l 0,25 a25,25 0 0,1 25,25";
case Qt.BottomRightCorner:
return "M75,50 l 25,0 a50,50 0 0,1 -50,50 l 0,-25 a25,25 0 0,0 25,-25";
case Qt.TopLeftCorner:
return "M50,25 l 0,-25 a50,50 0 0,0 -50,50 l 25,0 a25,25 0 0,1 25,-25";
case Qt.BottomLeftCorner:
return "M50,75 l 0,25 a50,50 0 0,1 -50,-50 l 25,0 a25,25 0 0,0 25,25";
}
}
}
Text {
id: text
anchors {
centerIn: parent
horizontalCenterOffset: switch (orientation) {
case Qt.TopRightCorner:
case Qt.BottomRightCorner:
return 25;
default:
return -25;
}
verticalCenterOffset: switch (orientation) {
case Qt.BottomLeftCorner:
case Qt.BottomRightCorner:
return 25;
default:
return -25;
}
}
horizontalAlignment: Text.AlignHCenter
rotation: switch (orientation) {
case Qt.TopRightCorner:
case Qt.BottomLeftCorner:
return 45;
default:
return -45;
}
}
}
PieSegment {
orientation: Qt.TopLeftCorner
text: labels[0]
}
PieSegment {
orientation: Qt.TopRightCorner
text: labels[1]
}
PieSegment {
orientation: Qt.BottomRightCorner
text: labels[2]
}
PieSegment {
orientation: Qt.BottomLeftCorner
text: labels[3]
}
}
}
|