moment/src/qml/UI.qml

103 lines
2.9 KiB
QML
Raw Normal View History

2019-07-08 13:52:41 +10:00
// Copyright 2019 miruka
// This file is part of harmonyqml, licensed under LGPLv3.
import QtQuick 2.12
import QtQuick.Controls 2.12
import QtQuick.Layouts 1.12
import QtQuick.Window 2.7
import "Base"
import "SidePane"
2019-04-28 14:44:55 +10:00
Item {
2019-04-28 11:07:20 +10:00
id: mainUI
2019-04-28 14:44:55 +10:00
Connections {
target: py
onWillLoadAccounts: will => {
2019-07-09 02:52:07 +10:00
pageStack.showPage(will ? "Default": "SignIn")
if (will) { initialRoomTimer.start() }
}
}
property bool accountsPresent:
2019-07-05 06:01:44 +10:00
accounts.count > 0 || py.loadingAccounts
HImage {
2019-04-28 14:44:55 +10:00
id: mainUIBackground
fillMode: Image.PreserveAspectCrop
source: "../images/background.jpg"
sourceSize.width: Screen.width
sourceSize.height: Screen.height
2019-04-28 14:44:55 +10:00
anchors.fill: parent
asynchronous: false
2019-04-28 14:44:55 +10:00
}
HSplitView {
id: uiSplitView
anchors.fill: parent
onAnyResizingChanged: if (anyResizing) {
sidePane.manuallyResizing = true
} else {
sidePane.manuallyResizing = false
sidePane.manuallyResized = true
sidePane.manualWidth = sidePane.width
}
SidePane {
id: sidePane
2019-07-17 07:08:06 +10:00
// Initial width until user manually resizes
width: implicitWidth
Layout.minimumWidth: reduce ? 0 : theme.sidePane.collapsedWidth
Layout.maximumWidth:
window.width -theme.minimumSupportedWidthPlusSpacing
Behavior on Layout.minimumWidth { HNumberAnimation {} }
}
StackView {
2019-04-28 14:44:55 +10:00
id: pageStack
property bool isWide: width > theme.contentIsWideAbove
2019-04-28 14:44:55 +10:00
function showPage(name, properties={}) {
pageStack.replace("Pages/" + name + ".qml", properties)
}
function showRoom(userId, category, roomId) {
2019-07-18 19:18:13 +10:00
let info = rooms.getWhere({userId, roomId, category}, 1)[0]
pageStack.replace("Chat/Chat.qml", {"roomInfo": info})
}
2019-05-13 03:17:42 +10:00
Timer {
// TODO: remove this, debug
id: initialRoomTimer
2019-07-18 21:22:41 +10:00
interval: 4000
2019-05-13 03:17:42 +10:00
repeat: false
// onTriggered: pageStack.showRoom(
// "@test_mary:matrix.org",
// "Rooms",
2019-07-18 21:22:41 +10:00
// "!TSXGsbBbdwsdylIOJZ:matrix.org" // st
2019-07-20 09:19:43 +10:00
// "!VDSsFIzQnXARSCVNxS:matrix.org" // hs
// "!XhxUcnVhVhUHkBZEIL:matrix.org" // nc
// "Invites",
// "!xjqvLOGhMVutPXpAqi:matrix.org"
// )
onTriggered: pageStack.showPage(
"EditAccount/EditAccount",
{"userId": "@test_mary:matrix.org"}
)
2019-04-28 14:44:55 +10:00
}
onCurrentItemChanged: if (currentItem) {
currentItem.forceActiveFocus()
}
// Buggy
replaceExit: null
popExit: null
pushExit: null
}
}
}