diff -r 000000000000 -r c0e13d2503b9 main.qml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.qml Tue May 27 12:00:47 2014 +0200 @@ -0,0 +1,51 @@ +import QtQuick 2.2 +import QtQuick.Controls 1.2 +import QtPositioning 5.3 +import QtWinExtras 1.0 +import QtQuick.Dialogs 1.2 +import QtQuick.Window 2.1 +import Qt.labs.settings 1.0 + + + +ApplicationWindow { + id: appWindow + visible: true + width: 640 + height: 480 + title: qsTr("MiniDisplay Manager") + SystemPalette { id: palette } + + Settings { + property alias x: appWindow.x + property alias y: appWindow.y + property alias width: appWindow.width + property alias height: appWindow.height + } + + /* + menuBar: MenuBar { + Menu { + title: qsTr("File") + MenuItem { + text: qsTr("Exit") + onTriggered: Qt.quit(); + } + } + + }*/ + + TabView { + anchors.fill: parent + anchors.margins: 8 + Tab { + title: qsTr("Fonts") + FontsTab { anchors.fill: parent } + } + Tab { + title: qsTr("Tests") + TestsTab { anchors.fill: parent } + } + + } +}