FreeKill/Fk/LobbyElement/BGSetting.qml

108 lines
2.0 KiB
QML
Raw Normal View History

2023-04-28 18:24:31 +08:00
// SPDX-License-Identifier: GPL-3.0-or-later
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
import QtQuick.Dialogs
ColumnLayout {
RowLayout {
anchors.rightMargin: 8
spacing: 16
Text {
text: luatr("Lobby BG")
2023-04-28 18:24:31 +08:00
}
TextField {
2023-10-27 22:53:25 +08:00
Layout.fillWidth: true
2023-04-28 18:24:31 +08:00
text: config.lobbyBg
}
Button {
text: "..."
onClicked: {
fdialog.nameFilters = ["Image Files (*.jpg *.png)"];
fdialog.configKey = "lobbyBg";
fdialog.open();
}
}
}
RowLayout {
anchors.rightMargin: 8
spacing: 16
Text {
text: luatr("Room BG")
2023-04-28 18:24:31 +08:00
}
TextField {
2023-10-27 22:53:25 +08:00
Layout.fillWidth: true
2023-04-28 18:24:31 +08:00
text: config.roomBg
}
Button {
text: "..."
onClicked: {
fdialog.nameFilters = ["Image Files (*.jpg *.png)"];
fdialog.configKey = "roomBg";
fdialog.open();
}
}
}
RowLayout {
anchors.rightMargin: 8
spacing: 16
Text {
text: luatr("Game BGM")
2023-04-28 18:24:31 +08:00
}
TextField {
2023-10-27 22:53:25 +08:00
Layout.fillWidth: true
2023-04-28 18:24:31 +08:00
text: config.bgmFile
}
Button {
text: "..."
onClicked: {
fdialog.nameFilters = ["Music Files (*.mp3)"];
fdialog.configKey = "bgmFile";
fdialog.open();
}
}
}
RowLayout {
anchors.rightMargin: 8
spacing: 16
Text {
text: luatr("Poster Girl")
2023-04-28 18:24:31 +08:00
}
TextField {
2023-10-27 22:53:25 +08:00
Layout.fillWidth: true
2023-04-28 18:24:31 +08:00
text: config.ladyImg
}
Button {
text: "..."
onClicked: {
fdialog.nameFilters = ["Image Files (*.jpg *.png)"];
fdialog.configKey = "ladyImg";
fdialog.open();
}
}
}
RowLayout {
anchors.rightMargin: 8
spacing: 16
Text {
text: "Language"
}
ComboBox {
model: ["zh_CN", "en_US"]
currentIndex: model.indexOf(config.language)
onCurrentTextChanged: { config.language = currentText; }
}
}
FileDialog {
id: fdialog
property string configKey
onAccepted: { config[configKey] = selectedFile; }
}
}