summaryrefslogtreecommitdiff
path: root/tests/auto/extras/data/PieMenuRotatedBoundingItem.qml
blob: 2df592abc06c97a2c111d7bbae1f764026b1c3bd (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
45
46
47
48
49
import QtQuick 2.2
import QtQuick.Controls 1.1
import QtQuick.Extras 1.3

Rectangle {
    id: root
    anchors.fill: parent

    signal actionTriggered(int index)

    property alias mouseArea: area

    property alias pieMenu: menu

    readonly property int margins: 50

    Rectangle {
        id: rect
        rotation: 90
        anchors.fill: parent
        anchors.margins: root.margins
        border.color: "black"

        MouseArea {
            id: area
            anchors.fill: parent
            acceptedButtons: Qt.RightButton
            onClicked: menu.popup(mouseX, mouseY)
        }

        PieMenu {
            id: menu
            boundingItem: root

            MenuItem {
                text: "Action 1"
                onTriggered: actionTriggered(0)
            }
            MenuItem {
                text: "Action 2"
                onTriggered: actionTriggered(1)
            }
            MenuItem {
                text: "Action 3"
                onTriggered: actionTriggered(2)
            }
        }
    }
}