1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-07-08 05:48:09 +02:00

Rename sidebar sections

This commit is contained in:
Elias Steurer 2023-12-08 20:05:26 +01:00
parent fa9d259f35
commit 2cf7f2f0ba
2 changed files with 8 additions and 20 deletions

View File

@ -56,7 +56,7 @@ ApplicationWindow {
visible: false
width: 1400
height: 810
title: "ScreenPlay Alpha - v" + App.version()
title: "ScreenPlay - v" + App.version()
minimumHeight: 450
minimumWidth: 1050
@ -104,8 +104,6 @@ ApplicationWindow {
}
Component.onCompleted: {
print("Settings.Language.Pl_PL", Settings.Language.Pl_PL);
print(App.settings.theme, Settings.Theme.Light);
setTheme(App.settings.theme);
stackView.push("qrc:/qml/ScreenPlayApp/qml/Installed/InstalledView.qml", {
"sidebar": sidebar

View File

@ -17,7 +17,7 @@ Rectangle {
property alias model: listView.model
property StackView stackView
width: 350
width: 380
state: expanded ? "" : "inactive"
layer.enabled: true
Component.onCompleted: expanded = true
@ -53,21 +53,18 @@ Rectangle {
headline: qsTr("Tools Overview")
source: "qrc:/qml/ScreenPlayApp/qml/Create/StartInfo.qml"
category: "Home"
objectName: ""
}
ListElement {
headline: qsTr("Video Import h264 (.mp4)")
source: "qrc:/qml/ScreenPlayApp/qml/Create/Wizards/Importh264/Importh264.qml"
category: "Video Wallpaper"
objectName: ""
}
ListElement {
headline: qsTr("Video Import VP8 & VP9 (.webm)")
source: "qrc:/qml/ScreenPlayApp/qml/Create/Wizards/ImportWebm/ImportWebm.qml"
category: "Video Wallpaper"
objectName: ""
}
ListElement {
@ -81,49 +78,42 @@ Rectangle {
headline: qsTr("GIF Wallpaper")
source: "qrc:/qml/ScreenPlayApp/qml/Create/Wizards/GifWallpaper.qml"
category: "Video Wallpaper"
objectName: ""
}
ListElement {
headline: qsTr("3D Engine Wallpaper (Godot 4.2)")
source: "qrc:/qml/ScreenPlayApp/qml/Create/Wizards/GodotWallpaper.qml"
category: "Code Wallpaper"
objectName: ""
category: "3D Engine & Code Wallpaper"
}
ListElement {
headline: qsTr("QML Wallpaper")
source: "qrc:/qml/ScreenPlayApp/qml/Create/Wizards/QMLWallpaper.qml"
category: "Code Wallpaper"
objectName: ""
category: "3D Engine & Code Wallpaper"
}
ListElement {
headline: qsTr("HTML5 Wallpaper")
source: "qrc:/qml/ScreenPlayApp/qml/Create/Wizards/HTMLWallpaper.qml"
category: "Code Wallpaper"
objectName: ""
category: "3D Engine & Code Wallpaper"
}
ListElement {
headline: qsTr("Website Wallpaper")
source: "qrc:/qml/ScreenPlayApp/qml/Create/Wizards/WebsiteWallpaper.qml"
category: "Code Wallpaper"
objectName: ""
category: "3D Engine & Code Wallpaper"
}
ListElement {
headline: qsTr("QML Widget")
source: "qrc:/qml/ScreenPlayApp/qml/Create/Wizards/QMLWidget.qml"
category: "Code Widgets"
objectName: ""
category: "Widgets"
}
ListElement {
headline: qsTr("HTML Widget")
source: "qrc:/qml/ScreenPlayApp/qml/Create/Wizards/HTMLWidget.qml"
category: "Code Widgets"
objectName: ""
category: "Widgets"
}
}