2021-09-26 17:56:40 +02:00
import QtQuick
import QtQuick . Controls
import QtQuick . Controls . Material
import QtQuick . Layouts
import Qt5Compat . GraphicalEffects
2022-05-05 13:02:54 +02:00
import ScreenPlayApp
2024-01-12 16:10:34 +01:00
2021-09-23 15:55:40 +02:00
Item {
id: root
Rectangle {
id: navWrapper
color: Material . theme === Material . Light ? "white" : Material . background
height: 46
anchors {
top: parent . top
right: parent . right
left: parent . left
}
RowLayout {
2023-02-02 15:25:26 +01:00
anchors {
2021-09-23 15:55:40 +02:00
fill: parent
rightMargin: 20
leftMargin: 20
}
spacing: 20
Text {
id: name
text: qsTr ( "Download Wallpaper and Widgets from our forums manually. If you want to download Steam Workshop content you have to install ScreenPlay via Steam." )
Layout.fillHeight: true
Layout.fillWidth: true
verticalAlignment: Text . AlignVCenter
font.pointSize: 10
color: Material . secondaryTextColor
}
Button {
text: qsTr ( "Install Steam Version" )
onClicked: Qt . openUrlExternally ( "https://store.steampowered.com/app/672870/ScreenPlay/" )
}
Button {
text: qsTr ( "Open In Browser" )
onClicked: Qt . openUrlExternally ( "https://forum.screen-play.app/category/5/wallpaper" )
}
}
}
}