-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.qml
53 lines (50 loc) · 996 Bytes
/
main.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
47
48
49
50
51
52
53
import QtQuick 2.15
import QtQuick.Window 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15
import QtQuick.Controls.Styles 1.4
import QtQuick.Controls.Material 2.1
import QtGraphicalEffects 1.0
import QtQuick.Extras 1.4
import CustomTypes 1.0
import io.smth 1.0
import "ui/RightPanel"
import "ui/PopupPanel"
import "ui/TopPanel"
import "ui/BottomPanel"
import "ui/VideoPanel"
import "ui/DrawerPanel"
import "ui/NotificationPanel"
import "ui/HorizonPanel"
import "ui/Indicators"
Window {
id: window
width: 1280
height: 720
visible: true
title: qsTr("AvaSYS - Ground Control System")
RightPanel {
id: rightPanel
}
VideoPanel {
id: videoRect
}
PopupPanel {
id: popupPanel1
}
BottomPanel {
id: bottomPanel1
}
DrawerPanel {
id: drawer
}
TopPanel {
id: topBar
}
HorizonPanel {
id: horizonPanel
}
NotificationPanel {
id: notifyPanel
}
}