summaryrefslogtreecommitdiff
path: root/tests/auto/extras/data/PieMenu3ItemsLongPress.qml
blob: 5503c8d413d45072a5fd912c2e9d14ae53ce7ea1 (plain)
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
import QtQuick 2.2
import QtQuick.Controls 1.1
import QtQuick.Extras 1.4

Rectangle {
    id: rect
    anchors.fill: parent

    signal actionTriggered(int index)

    property alias mouseArea: area

    MouseArea {
        id: area
        anchors.fill: parent
        onPressAndHold: pieMenu.popup(mouseX, mouseY)
    }

    property alias pieMenu: menu

    PieMenu {
        id: menu
        width: 200
        height: 200

        MenuItem {
            text: "Action 1"
            onTriggered: actionTriggered(0)
        }
        MenuItem {
            text: "Action 2"
            onTriggered: actionTriggered(1)
        }
        MenuItem {
            text: "Action 3"
            onTriggered: actionTriggered(2)
        }
    }
    Rectangle {
        anchors.fill: menu
        color: "transparent"
        border.color: "black"
    }
}