overte/interface/resources/qml/Root.qml
2015-04-23 14:24:01 -07:00

40 lines
750 B
QML

import Hifi 1.0
import QtQuick 2.3
// This is our primary 'window' object to which all dialogs and controls will
// be childed.
Root {
id: root
anchors.fill: parent
Item {
Menu {
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"
}
}
}
}
}