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

ApplicationWindow {
    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
    }
}