moment/harmonyqml/components/UI.qml

36 lines
818 B
QML
Raw Normal View History

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
import "side_pane" 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 show_page(componentName) {
pageStack.replace(componentName + ".qml")
}
2019-04-15 02:56:30 +10:00
function show_room(user_id, room_obj) {
pageStack.replace(
2019-04-15 02:56:30 +10:00
"chat/Root.qml", { user_id: user_id, room: room_obj }
)
2019-03-22 14:28:14 +11:00
}
id: "pageStack"
onCurrentItemChanged: currentItem.forceActiveFocus()
// Buggy
replaceExit: null
popExit: null
pushExit: null
}
}