moment/harmonyqml/components/pages/MainUI.qml

43 lines
1.0 KiB
QML
Raw Normal View History

import QtQuick 2.7
import QtQuick.Controls 1.4 as Controls1
2019-03-22 14:28:14 +11:00
import QtQuick.Controls 2.2
import QtQuick.Layouts 1.4
2019-04-27 06:02:20 +10:00
import "../sidePane" as SidePane
import "../chat" as Chat
2019-03-22 14:28:14 +11:00
2019-03-26 09:29:46 +11:00
//https://doc.qt.io/qt-5/qml-qtquick-controls-splitview.html
Controls1.SplitView {
2019-03-22 14:28:14 +11:00
anchors.fill: parent
SidePane.Root {
Layout.minimumWidth: 36
width: 200
2019-03-26 09:29:46 +11:00
}
2019-03-22 14:28:14 +11:00
StackView {
function showRoom(userId, roomId) {
pageStack.replace(
2019-04-27 06:02:20 +10:00
"../chat/Root.qml", { userId: userId, roomId: roomId }
)
2019-03-22 14:28:14 +11:00
}
id: pageStack
2019-03-22 14:28:14 +11:00
2019-04-27 06:02:20 +10:00
onCurrentItemChanged: if (currentItem) {
currentItem.forceActiveFocus()
}
2019-03-22 14:28:14 +11:00
2019-04-22 00:44:04 +10:00
initialItem: Item { // TODO: (test, remove)
Keys.onEnterPressed: pageStack.showRoom(
2019-04-22 00:44:04 +10:00
"@test_mary:matrix.org", "!TSXGsbBbdwsdylIOJZ:matrix.org"
//"@test_mary:matrix.org", "!TEXkdeErtVCMqClNfb:matrix.org"
)
}
2019-03-22 14:28:14 +11:00
// Buggy
replaceExit: null
popExit: null
pushExit: null
}
}