2019-12-19 22:46:16 +11:00
|
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
|
2019-07-13 19:39:01 +10:00
|
|
|
import QtQuick 2.12
|
|
|
|
import QtQuick.Controls 2.12
|
|
|
|
import QtQuick.Layouts 1.12
|
2020-03-17 00:04:59 +11:00
|
|
|
import QtQuick.Window 2.12
|
2019-08-31 09:21:51 +10:00
|
|
|
import QtGraphicalEffects 1.12
|
2019-04-29 05:18:36 +10:00
|
|
|
import "Base"
|
2019-12-11 06:17:41 +11:00
|
|
|
import "MainPane"
|
2019-04-28 08:54:33 +10:00
|
|
|
|
2019-08-31 09:09:21 +10:00
|
|
|
Item {
|
2019-04-28 11:07:20 +10:00
|
|
|
id: mainUI
|
2019-09-09 20:44:06 +10:00
|
|
|
focus: true
|
2019-12-19 08:00:02 +11:00
|
|
|
|
2019-07-25 07:40:06 +10:00
|
|
|
Component.onCompleted: window.mainUI = mainUI
|
|
|
|
|
2019-12-19 08:00:02 +11:00
|
|
|
|
|
|
|
property bool accountsPresent:
|
2019-12-03 07:29:29 +11:00
|
|
|
ModelStore.get("accounts").count > 0 || py.startupAnyAccountsSaved
|
2019-12-19 08:00:02 +11:00
|
|
|
|
2019-09-18 06:30:04 +10:00
|
|
|
readonly property alias shortcuts: shortcuts
|
2019-12-11 06:17:41 +11:00
|
|
|
readonly property alias mainPane: mainPane
|
2019-09-18 06:30:04 +10:00
|
|
|
readonly property alias pageLoader: pageLoader
|
|
|
|
readonly property alias pressAnimation: pressAnimation
|
2019-12-19 08:00:02 +11:00
|
|
|
|
2019-07-25 07:40:06 +10:00
|
|
|
|
2020-03-13 13:16:33 +11:00
|
|
|
function reloadSettings() {
|
|
|
|
py.loadSettings(() => { mainUI.pressAnimation.start() })
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-07-25 07:40:06 +10:00
|
|
|
SequentialAnimation {
|
2019-08-31 09:06:09 +10:00
|
|
|
id: pressAnimation
|
2019-12-16 19:42:41 +11:00
|
|
|
HNumberAnimation {
|
|
|
|
target: mainUI; property: "scale"; from: 1.0; to: 0.9
|
|
|
|
}
|
|
|
|
HNumberAnimation {
|
|
|
|
target: mainUI; property: "scale"; from: 0.9; to: 1.0
|
|
|
|
}
|
2019-07-25 07:40:06 +10:00
|
|
|
}
|
2019-04-28 14:44:55 +10:00
|
|
|
|
2019-12-20 04:41:57 +11:00
|
|
|
GlobalShortcuts {
|
|
|
|
id: shortcuts
|
|
|
|
defaultDebugConsoleLoader: debugConsoleLoader
|
|
|
|
}
|
|
|
|
|
|
|
|
DebugConsoleLoader {
|
|
|
|
id: debugConsoleLoader
|
|
|
|
active: false
|
|
|
|
}
|
2019-08-23 03:03:26 +10:00
|
|
|
|
2019-08-31 09:21:51 +10:00
|
|
|
LinearGradient {
|
2019-08-29 09:34:50 +10:00
|
|
|
id: mainUIGradient
|
2020-03-19 15:13:38 +11:00
|
|
|
visible: ! image.visible
|
2019-08-29 09:34:50 +10:00
|
|
|
anchors.fill: parent
|
2019-08-31 09:21:51 +10:00
|
|
|
start: theme.ui.gradientStart
|
|
|
|
end: theme.ui.gradientEnd
|
|
|
|
|
2019-08-29 09:34:50 +10:00
|
|
|
gradient: Gradient {
|
2019-08-31 09:21:51 +10:00
|
|
|
GradientStop { position: 0.0; color: theme.ui.gradientStartColor }
|
|
|
|
GradientStop { position: 1.0; color: theme.ui.gradientEndColor }
|
2019-08-29 09:34:50 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-19 15:13:38 +11:00
|
|
|
HImage {
|
|
|
|
id: image
|
|
|
|
visible: Boolean(Qt.resolvedUrl(source))
|
|
|
|
fillMode: Image.PreserveAspectCrop
|
|
|
|
source: theme.ui.image
|
|
|
|
sourceSize.width: Screen.width
|
|
|
|
sourceSize.height: Screen.height
|
|
|
|
anchors.fill: parent
|
|
|
|
asynchronous: false
|
|
|
|
}
|
|
|
|
|
2019-12-11 06:17:41 +11:00
|
|
|
MainPane {
|
|
|
|
id: mainPane
|
2019-12-22 04:12:02 +11:00
|
|
|
maximumSize: parent.width - theme.minimumSupportedWidth * 1.5
|
2019-12-09 05:43:41 +11:00
|
|
|
}
|
2019-04-28 08:54:33 +10:00
|
|
|
|
2019-12-19 08:00:02 +11:00
|
|
|
PageLoader {
|
2019-12-09 05:43:41 +11:00
|
|
|
id: pageLoader
|
|
|
|
anchors.fill: parent
|
2019-12-11 06:17:41 +11:00
|
|
|
anchors.leftMargin: mainPane.visibleSize
|
|
|
|
visible: ! mainPane.hidden || anchors.leftMargin < width
|
2019-09-18 06:30:04 +10:00
|
|
|
}
|
2019-04-28 08:54:33 +10:00
|
|
|
}
|