From c460a582e4d588446dbd9d41758c5f69aaa656cb Mon Sep 17 00:00:00 2001 From: armored-dragon Date: Mon, 18 Nov 2024 05:28:48 -0600 Subject: [PATCH] Changed boolean style. --- .../settings/qml_widgets/SettingBoolean.qml | 88 ++++++++++++------- scripts/system/settings/settings.qml | 39 ++------ 2 files changed, 64 insertions(+), 63 deletions(-) diff --git a/scripts/system/settings/qml_widgets/SettingBoolean.qml b/scripts/system/settings/qml_widgets/SettingBoolean.qml index 2ba4015f75..21c933973e 100644 --- a/scripts/system/settings/qml_widgets/SettingBoolean.qml +++ b/scripts/system/settings/qml_widgets/SettingBoolean.qml @@ -11,47 +11,69 @@ Item { width: parent.width; RowLayout { - width: parent.width; + width: parent.width - 10; height: parent.height; + anchors.horizontalCenter: parent.horizontalCenter; - Rectangle { - color: settingEnabled ? "#077e30" : "darkgray"; - height: parent.parent.height - 15; - width: 90; - radius: 10; - id: toggleButton - - Text { - width: parent.width; - height: parent.height; - text: settingEnabled ? "On" : "Off"; - color: "white"; - horizontalAlignment: Text.AlignHCenter; - verticalAlignment: Text.AlignVCenter; - font.pointSize: 14; - } - - MouseArea { - anchors.fill: parent - - onClicked: { - settingEnabled = !settingEnabled - } - } - - Behavior on color { - ColorAnimation { - duration: 70 - } - } - } Text { - anchors.left: toggleButton.right + 5; + id: settingTextElem height: parent.height; text: settingText; color: "white"; font.pointSize: 14; } + + + RowLayout { + Layout.alignment: Qt.AlignRight; + anchors.left: settingTextElem.right + 5; + + Text { + text: "<"; + font.pointSize: 16; + color: "white"; + } + + Rectangle { + color: "transparent"; + height: parent.parent.height - 15; + width: 200; + radius: 10; + border.color: settingEnabled ? "white" : "#333"; + border.width: 1; + + Text { + width: parent.width; + height: parent.height; + text: settingEnabled ? "Enabled" : "Disabled"; + color: settingEnabled ? "white" : "gray"; + horizontalAlignment: Text.AlignHCenter; + verticalAlignment: Text.AlignVCenter; + font.pointSize: 14; + } + + MouseArea { + anchors.fill: parent + + onClicked: { + settingEnabled = !settingEnabled + } + } + + Behavior on color { + ColorAnimation { + duration: 70 + } + } + } + + Text { + text: ">"; + font.pointSize: 16; + color: "white"; + } + } + } } \ No newline at end of file diff --git a/scripts/system/settings/settings.qml b/scripts/system/settings/settings.qml index d4cde569bc..9dd2887f2e 100644 --- a/scripts/system/settings/settings.qml +++ b/scripts/system/settings/settings.qml @@ -87,40 +87,21 @@ Rectangle { } // Rendering Effects - RowLayout { - width: parent.width + SettingBoolean { + settingText: "Rendering effects"; + settingEnabled: Render.renderMethod == 0 - Text { - text: "Rendering effects" - color: "white" - height: parent.height - width: parent.width - 150 - font.pointSize: 14 - Layout.fillWidth: true - } - - CheckBox { - id: rendering_effects_state - - Component.onCompleted: { - checked: Render.renderMethod == 1 - } - - onCheckedChanged: { - if (checked){ - Render.renderMethod = 0; - } else { - Render.renderMethod = 1; - } - } + onSettingEnabledChanged: { + Render.renderMethod = settingEnabled ? 0 : 1; } } // Rendering Effects sub options Item { Layout.fillWidth: true; - visible: rendering_effects_state.checked == true; + visible: Render.renderMethod == 0; height: children[0].height; + width: parent.width; Rectangle { color: "#222222"; @@ -128,15 +109,13 @@ Rectangle { height: children[0].height; radius: 10; - GridLayout { - columns: 2; + ColumnLayout { width: parent.width - 10; - anchors.horizontalCenter: parent.horizontalCenter; id: renderSettingsContainer; SettingBoolean { settingText: "Shadows"; - settingEnabled: Render.shadowsEnabled + settingEnabled: Render.shadowsEnabled; onSettingEnabledChanged: { Render.shadowsEnabled = settingEnabled;