Files
pyqcrm/gui/main.qml
2024-11-15 14:57:52 +01:00

50 lines
827 B
QML

import QtQuick
import QtQuick.Layouts
import QtQuick.Controls
import "qrc:/gui"
ApplicationWindow
{
id: appWindow
width: Screen.width * .6
height: Screen.height * .7
visible: true
title: "PYQCRM"
TopBar
{
id:topBar
anchors
{
rightMargin: 9
leftMargin: 9
}
visible: bad_config? false: true
}
Item
{
id: mainView
}
Loader
{
id: appLoader
anchors
{
left: parent.left
right: parent.right
top: topBar.bottom
bottom: parent.bottom
topMargin: 0
rightMargin: 9
leftMargin: 9
}
source: bad_config? "firststart.qml": "Dashboard.qml"
property alias window: appWindow
}
}