mirror of
https://github.com/overte-org/overte.git
synced 2025-04-29 18:02:35 +02:00
Conflicts: interface/resources/qml/HifiMenu.qml interface/resources/qml/MessageDialog.qml interface/resources/qml/Root.qml interface/resources/qml/TestRoot.qml interface/resources/qml/controls/Dialog.qml interface/src/Application.cpp interface/src/ui/LoginDialog.cpp libraries/ui/src/MessageDialog.cpp libraries/ui/src/MessageDialog.h libraries/ui/src/OffscreenQmlDialog.h libraries/ui/src/OffscreenUi.cpp libraries/ui/src/OffscreenUi.h tests/ui/src/main.cpp
20 lines
256 B
QML
20 lines
256 B
QML
import QtQuick 2.4
|
|
import QtQuick.Controls 1.3
|
|
|
|
ApplicationWindow {
|
|
id: root
|
|
width: 800
|
|
height: 600
|
|
visible: true
|
|
|
|
menuBar: MenuBar {
|
|
Menu {
|
|
title: "File"
|
|
MenuItem {
|
|
text: "Quit"
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|