1
0
Fork 0
mirror of https://github.com/HenkKalkwater/harbour-sailfin.git synced 2024-05-11 16:42:42 +00:00
harbour-sailfin/qtquick/qml/main.qml

68 lines
1.4 KiB
QML
Raw Normal View History

2021-02-16 17:01:17 +00:00
import QtQuick 2.12
import QtQuick.Controls 2.12
2021-02-16 17:01:17 +00:00
import QtQuick.Window 2.12
2021-03-24 19:04:03 +00:00
import nl.netsoj.chris.Jellyfin 1.0 as J
2021-02-16 17:01:17 +00:00
import "components"
2021-03-07 15:26:13 +00:00
import ".."
2021-03-24 19:04:03 +00:00
import "."
2021-02-16 17:01:17 +00:00
ApplicationWindow {
2021-03-07 15:26:13 +00:00
id: appWindow
2021-02-16 17:01:17 +00:00
width: 600
height: 600
visible: true
2021-03-07 15:26:13 +00:00
property int _oldDepth: 0
2021-03-29 21:48:16 +00:00
property alias playbackManager: playbackManager
J.PlaybackManager {
id: playbackManager
}
2021-02-16 17:01:17 +00:00
background: Background {
2021-03-07 15:26:13 +00:00
id: background
anchors.fill: parent
}
StackView {
id: pageStack
2021-02-16 17:01:17 +00:00
anchors.fill: parent
2021-03-07 15:26:13 +00:00
onDepthChanged: {
if (depth >= _oldDepth) {
background.enter();
} else {
background.exit();
}
_oldDepth = depth
}
initialItem: Qt.resolvedUrl("pages/MainPage.qml")
Keys.onEscapePressed: pop()
2021-02-16 17:01:17 +00:00
}
Connections {
target: ApiClient
onSetupRequired: { pageStack.replace(Qt.resolvedUrl("pages/setup/ServerSelectPage.qml")); }
}
Component.onCompleted: {
ApiClient.restoreSavedSession()
}
2021-03-29 21:48:16 +00:00
footer: Column {
id: footer
Text {
text: qsTr("Now playing")
color: "white"
}
Text {
text: playbackManager.item.name ? playbackManager.item.name : "Nothing"
color: "white"
}
}
Rectangle {
color: "darkblue"
anchors.fill: footer
}
2021-02-16 17:01:17 +00:00
}