-
Notifications
You must be signed in to change notification settings - Fork 1
/
RootWindow.qml
46 lines (37 loc) · 886 Bytes
/
RootWindow.qml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import QtQuick 2.4
import QtQuick.Window 2.2
Window {
property string title: "Beere Components"
property bool menuActive: false
property alias currentPage: main.source
id: root
visible: true
color: "black"
Loader {
id: main
anchors.top: titlebar.bottom
anchors.bottom: taskbar.top
width: parent.width
//source: "qrc:/StartPage.qml"
visible: !menuActive
}
TitleBar {
id: titlebar
anchors.top: parent.top
width: parent.width
height: 0.12*parent.height
}
Menu {
id: menu
anchors.top: titlebar.bottom
anchors.bottom: taskbar.top
width: parent.width
visible: menuActive
}
Loader {
id: taskbar
anchors.bottom: parent.bottom
width: parent.width
height: 0.12*parent.height
}
}