2019-03-22 14:28:14 +11:00
|
|
|
import QtQuick 2.7
|
|
|
|
import QtQuick.Controls 2.2
|
2019-04-23 04:02:55 +10:00
|
|
|
import QtQuick.Window 2.7
|
2019-03-22 14:28:14 +11:00
|
|
|
|
|
|
|
ApplicationWindow {
|
2019-04-28 14:44:55 +10:00
|
|
|
id: appWindow
|
2019-03-22 14:28:14 +11:00
|
|
|
visible: true
|
2019-04-23 04:02:55 +10:00
|
|
|
width: Math.min(Screen.width, 1152)
|
|
|
|
height: Math.min(Screen.height, 768)
|
2019-03-22 14:28:14 +11:00
|
|
|
|
2019-05-03 04:54:37 +10:00
|
|
|
onClosing: Backend.clients.removeAll()
|
2019-05-01 15:23:38 +10:00
|
|
|
|
2019-03-22 14:28:14 +11:00
|
|
|
Loader {
|
|
|
|
anchors.fill: parent
|
2019-04-28 08:54:33 +10:00
|
|
|
source: "UI.qml"
|
2019-03-22 14:28:14 +11:00
|
|
|
objectName: "UILoader"
|
|
|
|
}
|
|
|
|
}
|