forked from qt-creator/qt-creator
Change-Id: If9ee9a946fc973a6dcc47625f5b26ca0a203be42 Reviewed-by: Thomas Hartmann <Thomas.Hartmann@theqtcompany.com>
21 lines
358 B
QML
21 lines
358 B
QML
import QtQuick 2.4
|
|
import QtQuick.Extras 1.4
|
|
import QtQuick.Controls 1.4
|
|
|
|
PieMenu {
|
|
id: pieMenu
|
|
|
|
MenuItem {
|
|
text: "Action 1"
|
|
onTriggered: print("Action 1")
|
|
}
|
|
MenuItem {
|
|
text: "Action 2"
|
|
onTriggered: print("Action 2")
|
|
}
|
|
MenuItem {
|
|
text: "Action 3"
|
|
onTriggered: print("Action 3")
|
|
}
|
|
}
|