summaryrefslogtreecommitdiff
path: root/tests/auto/extras/data/PieMenuRotatedBoundingItem.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/extras/data/PieMenuRotatedBoundingItem.qml')
-rw-r--r--tests/auto/extras/data/PieMenuRotatedBoundingItem.qml49
1 files changed, 49 insertions, 0 deletions
diff --git a/tests/auto/extras/data/PieMenuRotatedBoundingItem.qml b/tests/auto/extras/data/PieMenuRotatedBoundingItem.qml
new file mode 100644
index 00000000..2df592ab
--- /dev/null
+++ b/tests/auto/extras/data/PieMenuRotatedBoundingItem.qml
@@ -0,0 +1,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)
+ }
+ }
+ }
+}