Fixed scrolling.

This commit is contained in:
armored-dragon 2024-11-17 19:33:16 -06:00
parent ee93cabdd5
commit f0f69eabe6
No known key found for this signature in database
GPG key ID: C7207ACC3382AD8B
2 changed files with 414 additions and 398 deletions

View file

@ -19,6 +19,7 @@ Item {
height: parent.parent.height - 15;
width: 90;
radius: 10;
id: toggleButton
Text {
width: parent.width;
@ -46,7 +47,7 @@ Item {
}
Text {
anchors.left: parent.children[0].right + 5;
anchors.left: toggleButton.right + 5;
height: parent.height;
text: settingText;
color: "white";

View file

@ -4,474 +4,489 @@ import QtQuick.Layouts 1.3
import "./qml_widgets"
Rectangle {
color: Qt.rgba(0.1,0.1,0.1,1)
signal sendToScript(var message);
width: 200
height: 700
color: Qt.rgba(0.1,0.1,0.1,1);
width: parent.width;
height: parent.height;
anchors.centerIn: parent;
anchors.horizontalCenter: parent.horizontalCenter
id: root
property var pages: ["Graphics", "Audio", "Controls", "Privacy and Security"]
property string current_page: "Settings"
property string current_page: "Settings"
// Navigation Header
HeaderElement {
id: header
}
// Home page
SettingCenterContainer {
id: home_page
visible: current_page == "Settings"
Repeater {
model: pages.length
delegate: SettingSubviewListElement {
property string page_name: pages[index];
}
}
}
// Graphics
ColumnLayout {
id: graphics_page
width: parent.width - 10
visible: current_page == "Graphics"
ColumnLayout {
width: parent.width
height: parent.height
anchors.horizontalCenter: parent.horizontalCenter
y: parent.children[0].height + 10
spacing: 10
id: root
// Graphics Presets
RowLayout {
// Navigation Header
HeaderElement {
id: header
}
// Home page
SettingCenterContainer {
id: home_page
visible: current_page == "Settings"
Layout.fillHeight: true
Repeater {
model: pages.length
delegate: SettingSubviewListElement {
property string page_name: pages[index];
}
}
}
// Graphics
Flickable {
id: graphics_page
visible: current_page == "Graphics"
width: parent.width
Layout.fillHeight: true
y: header.height + 10
contentWidth: parent.width
contentHeight: graphics_page_column.height
clip: true
Text {
text: "Graphics Preset"
color: "white"
height: parent.height
width: parent.width - 150
font.pointSize: 14
Layout.fillWidth: true
}
ComboBox {
currentIndex: Performance.getPerformancePreset() - 1 // One off error FTW!
Layout.fillWidth: true
model: ListModel {
id: cbItems
ListElement { text: "Low Power" }
ListElement { text: "Low" }
ListElement { text: "Medium" }
ListElement { text: "High" }
ListElement { text: "Custom" }
}
onCurrentIndexChanged: {
Performance.setPerformancePreset(currentIndex + 1)
}
}
}
// Rendering Effects
RowLayout {
width: parent.width
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;
}
}
}
}
// Rendering Effects sub options
Item {
Layout.fillWidth: true;
visible: rendering_effects_state.checked == true;
height: children[0].height;
Rectangle {
color: "#222222";
width: parent.width;
height: children[0].height;
radius: 10;
GridLayout {
columns: 2;
width: parent.width - 10;
anchors.horizontalCenter: parent.horizontalCenter;
id: renderSettingsContainer;
SettingBoolean {
settingText: "Shadows";
settingEnabled: Render.shadowsEnabled
onSettingEnabledChanged: {
Render.shadowsEnabled = settingEnabled;
}
}
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;
}
}
}
}
}
// FPS
RowLayout {
width: parent.width
Text {
text: "Refresh Rate"
color: "white"
height: parent.height
width: parent.width - 150
font.pointSize: 14
Layout.fillWidth: true
}
ComboBox {
id: refresh_rate_cb
currentIndex: 3
Layout.fillWidth: true
model: ListModel {
ListElement { text: "Economical" }
ListElement { text: "Interactive" }
ListElement { text: "Real-Time" }
ListElement { text: "Custom" }
}
Component.onCompleted: {
refresh_rate_cb.currentIndex = Performance.getRefreshRateProfile()
}
onCurrentIndexChanged: {
Performance.setRefreshRateProfile(currentIndex)
}
}
}
// FIXME: Height is hardcoded
// FPS sub options
Item {
Layout.fillWidth: true
visible: refresh_rate_cb.currentIndex == 3
height: 75 * 3
Rectangle {
color: "#333333"
height: parent.children[1].height
width: parent.width
}
GridLayout {
columns: 2
ColumnLayout {
id: graphics_page_column
width: parent.width - 10
anchors.horizontalCenter: parent.horizontalCenter
height: 75 * 3
spacing: 10
// Graphics Presets
RowLayout {
width: parent.width
Column {
Text {
text: "Focus Active"
Layout.fillWidth: true
text: "Graphics Preset"
color: "white"
height: parent.height
width: parent.width - 150
font.pointSize: 14
Layout.fillWidth: true
}
TextField {
width: 100
Layout.maximumWidth: 50
inputMethodHints: Qt.ImhFormattedNumbersOnly
validator: RegExpValidator { regExp: /[0-9]*/ }
Component.onCompleted: {
text = Performance.getCustomRefreshRate(0)
ComboBox {
currentIndex: Performance.getPerformancePreset() - 1 // One off error FTW!
Layout.fillWidth: true
model: ListModel {
id: cbItems
ListElement { text: "Low Power" }
ListElement { text: "Low" }
ListElement { text: "Medium" }
ListElement { text: "High" }
ListElement { text: "Custom" }
}
onTextChanged: {
Performance.setCustomRefreshRate(0, text)
onCurrentIndexChanged: {
Performance.setPerformancePreset(currentIndex + 1)
}
}
}
Column {
Text {
text: "Focus Inactive"
Layout.fillWidth: true
color: "white"
}
TextField {
width: 100
Layout.maximumWidth: 50
inputMethodHints: Qt.ImhFormattedNumbersOnly
validator: RegExpValidator { regExp: /[0-9]*/ }
// Rendering Effects
RowLayout {
width: parent.width
Component.onCompleted: {
text = Performance.getCustomRefreshRate(1)
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
}
onTextChanged: {
Performance.setCustomRefreshRate(1, text)
onCheckedChanged: {
if (checked){
Render.renderMethod = 0;
} else {
Render.renderMethod = 1;
}
}
}
}
Column {
Text {
text: "Unfocus"
Layout.fillWidth: true
color: "white"
}
TextField {
width: 100
Layout.maximumWidth: 50
inputMethodHints: Qt.ImhFormattedNumbersOnly
validator: RegExpValidator { regExp: /[0-9]*/ }
// Rendering Effects sub options
Item {
Layout.fillWidth: true;
visible: rendering_effects_state.checked == true;
height: children[0].height;
Component.onCompleted: {
text = Performance.getCustomRefreshRate(2)
}
onTextChanged: {
Performance.setCustomRefreshRate(2, text)
Rectangle {
color: "#222222";
width: parent.width;
height: children[0].height;
radius: 10;
GridLayout {
columns: 2;
width: parent.width - 10;
anchors.horizontalCenter: parent.horizontalCenter;
id: renderSettingsContainer;
SettingBoolean {
settingText: "Shadows";
settingEnabled: Render.shadowsEnabled
onSettingEnabledChanged: {
Render.shadowsEnabled = settingEnabled;
}
}
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;
}
}
}
}
}
Column {
Text {
text: "Minimized"
Layout.fillWidth: true
color: "white"
}
TextField {
width: 100
Layout.maximumWidth: 50
inputMethodHints: Qt.ImhFormattedNumbersOnly
validator: RegExpValidator { regExp: /[0-9]*/ }
// FPS
RowLayout {
width: parent.width
Component.onCompleted: {
text = Performance.getCustomRefreshRate(3)
Text {
text: "Refresh Rate"
color: "white"
height: parent.height
width: parent.width - 150
font.pointSize: 14
Layout.fillWidth: true
}
ComboBox {
id: refresh_rate_cb
currentIndex: 3
Layout.fillWidth: true
model: ListModel {
ListElement { text: "Economical" }
ListElement { text: "Interactive" }
ListElement { text: "Real-Time" }
ListElement { text: "Custom" }
}
onTextChanged: {
Performance.setCustomRefreshRate(3, text)
Component.onCompleted: {
refresh_rate_cb.currentIndex = Performance.getRefreshRateProfile()
}
onCurrentIndexChanged: {
Performance.setRefreshRateProfile(currentIndex)
}
}
}
Column {
// FIXME: Height is hardcoded
// FPS sub options
Item {
Layout.fillWidth: true
visible: refresh_rate_cb.currentIndex == 3
height: 75 * 3
Rectangle {
color: "#333333"
height: parent.children[1].height
width: parent.width
}
GridLayout {
columns: 2
width: parent.width - 10
anchors.horizontalCenter: parent.horizontalCenter
height: 75 * 3
Column {
Text {
text: "Focus Active"
Layout.fillWidth: true
color: "white"
}
TextField {
width: 100
Layout.maximumWidth: 50
inputMethodHints: Qt.ImhFormattedNumbersOnly
validator: RegExpValidator { regExp: /[0-9]*/ }
Component.onCompleted: {
text = Performance.getCustomRefreshRate(0)
}
onTextChanged: {
Performance.setCustomRefreshRate(0, text)
}
}
}
Column {
Text {
text: "Focus Inactive"
Layout.fillWidth: true
color: "white"
}
TextField {
width: 100
Layout.maximumWidth: 50
inputMethodHints: Qt.ImhFormattedNumbersOnly
validator: RegExpValidator { regExp: /[0-9]*/ }
Component.onCompleted: {
text = Performance.getCustomRefreshRate(1)
}
onTextChanged: {
Performance.setCustomRefreshRate(1, text)
}
}
}
Column {
Text {
text: "Unfocus"
Layout.fillWidth: true
color: "white"
}
TextField {
width: 100
Layout.maximumWidth: 50
inputMethodHints: Qt.ImhFormattedNumbersOnly
validator: RegExpValidator { regExp: /[0-9]*/ }
Component.onCompleted: {
text = Performance.getCustomRefreshRate(2)
}
onTextChanged: {
Performance.setCustomRefreshRate(2, text)
}
}
}
Column {
Text {
text: "Minimized"
Layout.fillWidth: true
color: "white"
}
TextField {
width: 100
Layout.maximumWidth: 50
inputMethodHints: Qt.ImhFormattedNumbersOnly
validator: RegExpValidator { regExp: /[0-9]*/ }
Component.onCompleted: {
text = Performance.getCustomRefreshRate(3)
}
onTextChanged: {
Performance.setCustomRefreshRate(3, text)
}
}
}
Column {
Text {
text: "Startup"
Layout.fillWidth: true
color: "white"
}
TextField {
width: 100
Layout.maximumWidth: 50
inputMethodHints: Qt.ImhFormattedNumbersOnly
validator: RegExpValidator { regExp: /[0-9]*/ }
Component.onCompleted: {
text = Performance.getCustomRefreshRate(4)
}
onTextChanged: {
Performance.setCustomRefreshRate(4, text)
}
}
}
Column {
Text {
text: "Shutdown"
Layout.fillWidth: true
color: "white"
}
TextField {
width: 100
Layout.maximumWidth: 50
inputMethodHints: Qt.ImhFormattedNumbersOnly
validator: RegExpValidator { regExp: /[0-9]*/ }
Component.onCompleted: {
text = Performance.getCustomRefreshRate(5)
}
onTextChanged: {
Performance.setCustomRefreshRate(5, text)
}
}
}
}
}
// Resolution Scale
RowLayout {
width: parent.width
Text {
text: "Startup"
text: "Resolution Scale"
color: "white"
height: parent.height
width: parent.width - 150
font.pointSize: 14
Layout.fillWidth: true
}
Text {
text: parent.children[2].value.toFixed(1)
color: "white"
}
TextField {
width: 100
Layout.maximumWidth: 50
inputMethodHints: Qt.ImhFormattedNumbersOnly
validator: RegExpValidator { regExp: /[0-9]*/ }
Component.onCompleted: {
text = Performance.getCustomRefreshRate(4)
}
onTextChanged: {
Performance.setCustomRefreshRate(4, text)
Slider {
id: resolution_slider
from: 0.1
to: 2
value: Render.viewportResolutionScale.toFixed(1)
stepSize: 0.1
onValueChanged: {
Render.viewportResolutionScale = value
}
}
}
Column {
// FOV
RowLayout {
width: parent.width
Text {
text: "Shutdown"
text: "FOV"
color: "white"
height: parent.height
width: parent.width - 150
font.pointSize: 14
Layout.fillWidth: true
}
Text {
text: parent.children[2].value.toFixed(0)
color: "white"
}
TextField {
width: 100
Layout.maximumWidth: 50
inputMethodHints: Qt.ImhFormattedNumbersOnly
validator: RegExpValidator { regExp: /[0-9]*/ }
Component.onCompleted: {
text = Performance.getCustomRefreshRate(5)
}
// FIXME: QML Slider binding loop
Slider {
id: fov_slider
from: 20
to: 130
value: Render.verticalFieldOfView.toFixed(1) // TODO: Need to set to Overte default
stepSize: 1
onTextChanged: {
Performance.setCustomRefreshRate(5, text)
onValueChanged: {
Render.verticalFieldOfView = value
}
}
}
}
}
// Anti Aliasing
RowLayout {
width: parent.width
// Resolution Scale
RowLayout {
width: parent.width
Text {
text: "Anti-Aliasing"
color: "white"
height: parent.height
width: parent.width - 150
font.pointSize: 14
Layout.fillWidth: true
}
Text {
text: "Resolution Scale"
color: "white"
height: parent.height
width: parent.width - 150
font.pointSize: 14
Layout.fillWidth: true
}
ComboBox {
currentIndex: Render.antialiasingMode
Layout.fillWidth: true
model: ListModel {
ListElement { text: "None" }
ListElement { text: "TAA" }
ListElement { text: "FXAA" }
}
Text {
text: parent.children[2].value.toFixed(1)
color: "white"
}
Slider {
id: resolution_slider
from: 0.1
to: 2
value: Render.viewportResolutionScale.toFixed(1)
stepSize: 0.1
onValueChanged: {
Render.viewportResolutionScale = value
onCurrentIndexChanged: {
Render.antialiasingMode = currentIndex;
}
}
}
}
}
// FOV
RowLayout {
width: parent.width
// Audio
SettingCenterContainer {
id: audio_page
visible: current_page == "Audio"
}
Text {
text: "FOV"
color: "white"
height: parent.height
width: parent.width - 150
font.pointSize: 14
Layout.fillWidth: true
}
Text {
text: parent.children[2].value.toFixed(0)
color: "white"
}
// FIXME: QML Slider binding loop
Slider {
id: fov_slider
from: 20
to: 130
value: Render.verticalFieldOfView.toFixed(1) // TODO: Need to set to Overte default
stepSize: 1
// Templates
onValueChanged: {
Render.verticalFieldOfView = value
}
// Messages from script
function fromScript(message) {
switch (message.type){
case "":
break;
}
}
// Anti Aliasing
RowLayout {
width: parent.width
Text {
text: "Anti-Aliasing"
color: "white"
height: parent.height
width: parent.width - 150
font.pointSize: 14
Layout.fillWidth: true
}
ComboBox {
currentIndex: Render.antialiasingMode
Layout.fillWidth: true
model: ListModel {
ListElement { text: "None" }
ListElement { text: "TAA" }
ListElement { text: "FXAA" }
}
onCurrentIndexChanged: {
Render.antialiasingMode = currentIndex;
}
}
// Send message to script
function toScript(packet){
sendToScript(packet)
}
}
// Audio
SettingCenterContainer {
id: audio_page
visible: current_page == "Audio"
}
// Templates
// Messages from script
function fromScript(message) {
switch (message.type){
case "":
break;
}
}
// Send message to script
function toScript(packet){
sendToScript(packet)
}
}