aboutsummaryrefslogtreecommitdiff
path: root/ui.qt/source/qml/MainWindow.qml
blob: d81fb4f01721edad0f8863a613fa31305279cd9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import QtQuick

Window {
    width: 640
    height: 480
    visible: true
    title: qsTr("Hello World")

    Navigator {
        id: navigator
        width: childrenRect.width
        height: parent.height
    }

    Document {
        id: document
        height: parent.height
        anchors.left: navigator.right
        anchors.right: parent.right
    }
}