2018-07-04 21:16:25 +00:00
|
|
|
import QtQuick 2.9
|
|
|
|
import QtQuick.Controls 2.2
|
2018-07-08 05:15:02 +00:00
|
|
|
import QtQuick.Layouts 1.3
|
2018-08-14 02:47:42 +00:00
|
|
|
import QtQuick.Window 2.2
|
2018-07-04 21:16:25 +00:00
|
|
|
|
2018-07-09 06:24:26 +00:00
|
|
|
import QtQuick.Controls.Material 2.1
|
|
|
|
|
2018-08-14 02:47:42 +00:00
|
|
|
import ComputerManager 1.0
|
2018-08-10 05:51:27 +00:00
|
|
|
import AutoUpdateChecker 1.0
|
|
|
|
|
2018-07-04 21:16:25 +00:00
|
|
|
ApplicationWindow {
|
2018-08-14 02:47:42 +00:00
|
|
|
property bool pollingActive: false
|
|
|
|
|
2018-07-04 21:16:25 +00:00
|
|
|
id: window
|
|
|
|
visible: true
|
2018-07-06 05:08:55 +00:00
|
|
|
width: 1280
|
|
|
|
height: 600
|
2018-07-09 06:24:26 +00:00
|
|
|
|
|
|
|
Material.theme: Material.Dark
|
|
|
|
Material.accent: Material.Purple
|
2018-07-04 21:16:25 +00:00
|
|
|
|
2018-07-06 03:37:51 +00:00
|
|
|
StackView {
|
|
|
|
id: stackView
|
|
|
|
initialItem: "PcView.qml"
|
|
|
|
anchors.fill: parent
|
2018-07-04 21:16:25 +00:00
|
|
|
}
|
2018-07-08 05:15:02 +00:00
|
|
|
|
2018-08-14 02:47:42 +00:00
|
|
|
onVisibilityChanged: {
|
|
|
|
// We don't want to just use 'active' here because that will stop polling if
|
|
|
|
// we lose focus, which might be overzealous for users with multiple screens
|
|
|
|
// where we may be clearly visible on the other display. Ideally we'll poll
|
|
|
|
// only if the window is visible to the user (not if obscured by other windows),
|
|
|
|
// but it seems difficult to do this portably.
|
|
|
|
var shouldPoll = visibility !== Window.Minimized && visibility !== Window.Hidden
|
|
|
|
|
|
|
|
if (shouldPoll && !pollingActive) {
|
|
|
|
ComputerManager.startPolling()
|
|
|
|
pollingActive = true
|
|
|
|
}
|
|
|
|
else if (!shouldPoll && pollingActive) {
|
|
|
|
ComputerManager.stopPollingAsync()
|
|
|
|
pollingActive = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-09 05:37:29 +00:00
|
|
|
function navigateTo(url, objectName)
|
|
|
|
{
|
|
|
|
var existingItem = stackView.find(function(item, index) {
|
|
|
|
return item.objectName === objectName
|
|
|
|
})
|
|
|
|
|
|
|
|
if (existingItem !== null) {
|
|
|
|
// Pop to the existing item
|
|
|
|
stackView.pop(existingItem)
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Create a new item
|
|
|
|
stackView.push(url)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-08 05:15:02 +00:00
|
|
|
header: ToolBar {
|
2018-07-09 07:12:27 +00:00
|
|
|
id: toolBar
|
2018-07-08 05:15:02 +00:00
|
|
|
|
|
|
|
RowLayout {
|
|
|
|
spacing: 20
|
|
|
|
anchors.fill: parent
|
|
|
|
|
|
|
|
ToolButton {
|
|
|
|
// Only make the button visible if the user has navigated somewhere.
|
|
|
|
visible: stackView.depth > 1
|
|
|
|
|
2018-07-15 20:09:16 +00:00
|
|
|
icon.source: "qrc:/res/arrow_left.svg"
|
2018-07-08 05:15:02 +00:00
|
|
|
onClicked: stackView.pop()
|
|
|
|
|
|
|
|
Menu {
|
|
|
|
id: backButton
|
|
|
|
x: parent.width - width
|
|
|
|
transformOrigin: Menu.TopRight
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Label {
|
|
|
|
id: titleLabel
|
|
|
|
text: stackView.currentItem.objectName
|
|
|
|
font.pointSize: 15
|
|
|
|
elide: Label.ElideRight
|
|
|
|
horizontalAlignment: Qt.AlignHCenter
|
|
|
|
verticalAlignment: Qt.AlignVCenter
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
|
2018-08-10 05:51:27 +00:00
|
|
|
ToolButton {
|
|
|
|
property string browserUrl: ""
|
|
|
|
|
|
|
|
id: updateButton
|
|
|
|
icon.source: "qrc:/res/update.svg"
|
2018-08-10 06:18:07 +00:00
|
|
|
icon.color: "#0BF200"
|
2018-08-10 05:51:27 +00:00
|
|
|
|
2018-08-10 06:20:20 +00:00
|
|
|
ToolTip.delay: 1000
|
|
|
|
ToolTip.timeout: 3000
|
|
|
|
ToolTip.visible: hovered
|
|
|
|
ToolTip.text: "Update available for Moonlight"
|
|
|
|
|
2018-08-10 05:51:27 +00:00
|
|
|
// Invisible until we get a callback notifying us that
|
|
|
|
// an update is available
|
|
|
|
visible: false
|
|
|
|
|
|
|
|
onClicked: Qt.openUrlExternally(browserUrl);
|
|
|
|
|
|
|
|
Menu {
|
|
|
|
x: parent.width
|
|
|
|
transformOrigin: Menu.TopRight
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function updateAvailable(url)
|
|
|
|
{
|
|
|
|
updateButton.browserUrl = url
|
|
|
|
updateButton.visible = true
|
|
|
|
}
|
|
|
|
|
|
|
|
Component.onCompleted: {
|
|
|
|
AutoUpdateChecker.onUpdateAvailable.connect(updateAvailable)
|
|
|
|
AutoUpdateChecker.start()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-08 05:15:02 +00:00
|
|
|
ToolButton {
|
2018-07-15 20:09:16 +00:00
|
|
|
icon.source: "qrc:/res/question_mark.svg"
|
2018-07-09 05:37:29 +00:00
|
|
|
|
2018-08-10 06:20:20 +00:00
|
|
|
ToolTip.delay: 1000
|
|
|
|
ToolTip.timeout: 3000
|
|
|
|
ToolTip.visible: hovered
|
|
|
|
ToolTip.text: "Help"
|
|
|
|
|
2018-07-09 05:37:29 +00:00
|
|
|
// TODO need to make sure browser is brought to foreground.
|
|
|
|
onClicked: Qt.openUrlExternally("https://github.com/moonlight-stream/moonlight-docs/wiki/Setup-Guide");
|
2018-07-08 05:15:02 +00:00
|
|
|
|
|
|
|
Menu {
|
|
|
|
x: parent.width
|
|
|
|
transformOrigin: Menu.TopRight
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ToolButton {
|
2018-07-28 08:27:42 +00:00
|
|
|
// TODO: Implement gamepad mapping then unhide this button
|
|
|
|
visible: false
|
|
|
|
|
2018-08-10 06:20:20 +00:00
|
|
|
ToolTip.delay: 1000
|
|
|
|
ToolTip.timeout: 3000
|
|
|
|
ToolTip.visible: hovered
|
|
|
|
ToolTip.text: "Gamepad Mapper"
|
|
|
|
|
2018-07-09 05:37:29 +00:00
|
|
|
icon.source: "qrc:/res/ic_videogame_asset_white_48px.svg"
|
|
|
|
onClicked: navigateTo("qrc:/gui/GamepadMapper.qml", "Gamepad Mapping")
|
2018-07-08 05:15:02 +00:00
|
|
|
|
2018-07-09 05:37:29 +00:00
|
|
|
Menu {
|
|
|
|
x: parent.width
|
|
|
|
transformOrigin: Menu.TopRight
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ToolButton {
|
2018-07-15 20:09:16 +00:00
|
|
|
icon.source: "qrc:/res/settings.svg"
|
2018-07-09 05:37:29 +00:00
|
|
|
onClicked: navigateTo("qrc:/gui/SettingsView.qml", "Settings")
|
2018-07-08 05:15:02 +00:00
|
|
|
|
2018-08-10 06:20:20 +00:00
|
|
|
ToolTip.delay: 1000
|
|
|
|
ToolTip.timeout: 3000
|
|
|
|
ToolTip.visible: hovered
|
|
|
|
ToolTip.text: "Settings"
|
|
|
|
|
2018-07-08 05:15:02 +00:00
|
|
|
Menu {
|
|
|
|
x: parent.width
|
|
|
|
transformOrigin: Menu.TopRight
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-07-04 21:16:25 +00:00
|
|
|
}
|