Custom checkboxes

This commit is contained in:
armored-dragon 2024-11-17 04:21:59 -06:00
parent 52d354541e
commit ee93cabdd5
No known key found for this signature in database
GPG key ID: C7207ACC3382AD8B
2 changed files with 109 additions and 59 deletions

View file

@ -0,0 +1,56 @@
import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.3
Item {
id: root;
property string settingText: "";
property bool settingEnabled: false;
height: 50;
width: parent.width;
RowLayout {
width: parent.width;
height: parent.height;
Rectangle {
color: settingEnabled ? "#077e30" : "darkgray";
height: parent.parent.height - 15;
width: 90;
radius: 10;
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: parent.children[0].right + 5;
height: parent.height;
text: settingText;
color: "white";
font.pointSize: 14;
}
}
}

View file

@ -102,73 +102,67 @@ Rectangle {
}
}
// FIXME: Height is hardcoded
// Rendering Effects sub options
Item {
Layout.fillWidth: true
visible: rendering_effects_state.checked == true
height: 150
Layout.fillWidth: true;
visible: rendering_effects_state.checked == true;
height: children[0].height;
Rectangle {
color: "#333333"
height: parent.children[1].height
width: parent.width
}
color: "#222222";
width: parent.width;
height: children[0].height;
radius: 10;
GridLayout {
columns: 2
height: 150
width: parent.width - 10
anchors.horizontalCenter: parent.horizontalCenter
id: renderSettingsContainer
GridLayout {
columns: 2;
width: parent.width - 10;
anchors.horizontalCenter: parent.horizontalCenter;
id: renderSettingsContainer;
CheckBox {
text: "Shadows"
Layout.fillWidth: true
palette.windowText: "gray"
checked: Render.shadowsEnabled
onCheckedChanged: {
Render.shadowsEnabled = checked;
}
}
CheckBox {
text: "Local Lights"
Layout.fillWidth: true
palette.windowText: "gray"
checked: Render.localLightsEnabled
onCheckedChanged: {
Render.localLightsEnabled = checked;
}
}
CheckBox {
text: "Fog"
Layout.fillWidth: true
palette.windowText: "gray"
checked: Render.fogEnabled
onCheckedChanged: {
Render.fogEnabled = checked;
}
}
SettingBoolean {
settingText: "Shadows";
settingEnabled: Render.shadowsEnabled
CheckBox {
text: "Haze"
Layout.fillWidth: true
palette.windowText: "gray"
checked: Render.hazeEnabled
onCheckedChanged: {
Render.hazeEnabled = checked;
onSettingEnabledChanged: {
Render.shadowsEnabled = settingEnabled;
}
}
}
CheckBox {
text: "Bloom"
Layout.fillWidth: true
palette.windowText: "gray"
checked: Render.bloomEnabled
onCheckedChanged: {
Render.bloomEnabled = checked;
SettingBoolean {
settingText: "Local Lights";
settingEnabled: Render.localLightsEnabled
onSettingEnabledChanged: {
Render.localLightsEnabled = settingEnabled;
}
}
SettingBoolean {
settingText: "Fog";
settingEnabled: Render.fogEnabled
onSettingEnabledChanged: {
Render.fogEnabled = settingEnabled;
}
}
SettingBoolean {
settingText: "Haze";
settingEnabled: Render.hazeEnabled
onSettingEnabledChanged: {
Render.hazeEnabled = settingEnabled;
}
}
SettingBoolean {
settingText: "Bloom";
settingEnabled: Render.bloomEnabled
onSettingEnabledChanged: {
Render.bloomEnabled = settingEnabled;
}
}
}
}