mirror of
https://github.com/overte-org/overte.git
synced 2025-05-06 17:49:38 +02:00
34 lines
511 B
QML
34 lines
511 B
QML
import QtQuick 2.4
|
|
import QtQuick.Controls 1.3
|
|
|
|
Item {
|
|
Menu {
|
|
id: rootMenuFooBar
|
|
objectName: "rootMenu"
|
|
Menu {
|
|
title: "File"
|
|
MenuItem {
|
|
text: "Test"
|
|
checkable: true
|
|
}
|
|
MenuItem {
|
|
text: "Quit"
|
|
}
|
|
}
|
|
Menu {
|
|
title: "Edit"
|
|
MenuItem {
|
|
text: "Copy"
|
|
}
|
|
MenuItem {
|
|
text: "Cut"
|
|
}
|
|
MenuItem {
|
|
text: "Paste"
|
|
}
|
|
MenuItem {
|
|
text: "Undo"
|
|
}
|
|
}
|
|
}
|
|
}
|