mirror of
https://github.com/Qsgs-Fans/FreeKill.git
synced 2024-11-16 03:32:34 +08:00
7fb5f7bb14
修复了qml的一些问题;增加利好私服的服主配置项。 --------- Co-authored-by: YoumuKon <38815081+YoumuKon@users.noreply.github.com>
46 lines
840 B
QML
46 lines
840 B
QML
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
Item {
|
|
id: root
|
|
anchors.fill: parent
|
|
|
|
signal finished()
|
|
|
|
TabBar {
|
|
id: bar
|
|
y: -height
|
|
transformOrigin: Item.BottomLeft
|
|
rotation: 90
|
|
width: root.height
|
|
TabButton {
|
|
text: Backend.translate("General Settings")
|
|
}
|
|
TabButton {
|
|
text: Backend.translate("Package Settings")
|
|
}
|
|
TabButton {
|
|
text: Backend.translate("Ban General Settings")
|
|
}
|
|
}
|
|
|
|
SwipeView {
|
|
width: root.width - bar.height - 16
|
|
x: bar.height + 16
|
|
height: root.height
|
|
interactive: false
|
|
orientation: Qt.Vertical
|
|
currentIndex: bar.currentIndex
|
|
RoomGeneralSettings {}
|
|
Item {
|
|
RoomPackageSettings {
|
|
anchors.fill: parent
|
|
}
|
|
}
|
|
BanGeneralSetting {}
|
|
}
|
|
}
|