mirror of
https://github.com/Swordfish90/cool-retro-term.git
synced 2025-04-15 23:30:50 +01:00
Rearrange settings window.
This commit is contained in:
parent
fd2e5ce71e
commit
41413d4712
@ -23,62 +23,92 @@ import QtQuick.Controls 1.1
|
|||||||
import QtQuick.Layouts 1.1
|
import QtQuick.Layouts 1.1
|
||||||
|
|
||||||
Tab{
|
Tab{
|
||||||
GroupBox{
|
ColumnLayout{
|
||||||
title: qsTr("Effects")
|
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
ColumnLayout{
|
spacing: 2
|
||||||
anchors.fill: parent
|
|
||||||
spacing: 2
|
GroupBox{
|
||||||
CheckableSlider{
|
title: qsTr("Effects")
|
||||||
name: qsTr("Bloom")
|
Layout.fillWidth: true
|
||||||
onNewValue: appSettings.bloom = newValue
|
|
||||||
value: appSettings.bloom
|
ColumnLayout {
|
||||||
|
anchors.fill: parent
|
||||||
|
|
||||||
|
CheckableSlider{
|
||||||
|
name: qsTr("Bloom")
|
||||||
|
onNewValue: appSettings.bloom = newValue
|
||||||
|
value: appSettings.bloom
|
||||||
|
}
|
||||||
|
CheckableSlider{
|
||||||
|
name: qsTr("BurnIn")
|
||||||
|
onNewValue: appSettings.burnIn = newValue
|
||||||
|
value: appSettings.burnIn
|
||||||
|
}
|
||||||
|
CheckableSlider{
|
||||||
|
name: qsTr("Static Noise")
|
||||||
|
onNewValue: appSettings.staticNoise = newValue
|
||||||
|
value: appSettings.staticNoise
|
||||||
|
}
|
||||||
|
CheckableSlider{
|
||||||
|
name: qsTr("Jitter")
|
||||||
|
onNewValue: appSettings.jitter = newValue
|
||||||
|
value: appSettings.jitter
|
||||||
|
}
|
||||||
|
CheckableSlider{
|
||||||
|
name: qsTr("Glow Line")
|
||||||
|
onNewValue: appSettings.glowingLine = newValue;
|
||||||
|
value: appSettings.glowingLine
|
||||||
|
}
|
||||||
|
CheckableSlider{
|
||||||
|
name: qsTr("Screen Curvature")
|
||||||
|
onNewValue: appSettings.screenCurvature = newValue;
|
||||||
|
value: appSettings.screenCurvature;
|
||||||
|
}
|
||||||
|
CheckableSlider{
|
||||||
|
name: qsTr("Ambient Light")
|
||||||
|
onNewValue: appSettings.ambientLight = newValue;
|
||||||
|
value: appSettings.ambientLight
|
||||||
|
enabled: appSettings.framesIndex !== 0
|
||||||
|
}
|
||||||
|
CheckableSlider{
|
||||||
|
name: qsTr("Flickering")
|
||||||
|
onNewValue: appSettings.flickering = newValue;
|
||||||
|
value: appSettings.flickering;
|
||||||
|
}
|
||||||
|
CheckableSlider{
|
||||||
|
name: qsTr("Horizontal Sync")
|
||||||
|
onNewValue: appSettings.horizontalSync = newValue;
|
||||||
|
value: appSettings.horizontalSync;
|
||||||
|
}
|
||||||
|
CheckableSlider{
|
||||||
|
name: qsTr("RGB Shift")
|
||||||
|
onNewValue: appSettings.rbgShift = newValue;
|
||||||
|
value: appSettings.rbgShift;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
CheckableSlider{
|
}
|
||||||
name: qsTr("BurnIn")
|
|
||||||
onNewValue: appSettings.burnIn = newValue
|
GroupBox{
|
||||||
value: appSettings.burnIn
|
title: qsTr("Lights")
|
||||||
}
|
Layout.fillWidth: true
|
||||||
CheckableSlider{
|
GridLayout{
|
||||||
name: qsTr("Static Noise")
|
anchors.fill: parent
|
||||||
onNewValue: appSettings.staticNoise = newValue
|
columns: 2
|
||||||
value: appSettings.staticNoise
|
Label{ text: qsTr("Brightness") }
|
||||||
}
|
SimpleSlider{
|
||||||
CheckableSlider{
|
onValueChanged: appSettings.brightness = value
|
||||||
name: qsTr("Jitter")
|
value: appSettings.brightness
|
||||||
onNewValue: appSettings.jitter = newValue
|
}
|
||||||
value: appSettings.jitter
|
Label{ text: qsTr("Contrast") }
|
||||||
}
|
SimpleSlider{
|
||||||
CheckableSlider{
|
onValueChanged: appSettings.contrast = value
|
||||||
name: qsTr("Glow Line")
|
value: appSettings.contrast
|
||||||
onNewValue: appSettings.glowingLine = newValue;
|
}
|
||||||
value: appSettings.glowingLine
|
Label{ text: qsTr("Opacity") }
|
||||||
}
|
SimpleSlider{
|
||||||
CheckableSlider{
|
onValueChanged: appSettings.windowOpacity = value
|
||||||
name: qsTr("Screen Curvature")
|
value: appSettings.windowOpacity
|
||||||
onNewValue: appSettings.screenCurvature = newValue;
|
}
|
||||||
value: appSettings.screenCurvature;
|
|
||||||
}
|
|
||||||
CheckableSlider{
|
|
||||||
name: qsTr("Ambient Light")
|
|
||||||
onNewValue: appSettings.ambientLight = newValue;
|
|
||||||
value: appSettings.ambientLight
|
|
||||||
enabled: appSettings.framesIndex !== 0
|
|
||||||
}
|
|
||||||
CheckableSlider{
|
|
||||||
name: qsTr("Flickering")
|
|
||||||
onNewValue: appSettings.flickering = newValue;
|
|
||||||
value: appSettings.flickering;
|
|
||||||
}
|
|
||||||
CheckableSlider{
|
|
||||||
name: qsTr("Horizontal Sync")
|
|
||||||
onNewValue: appSettings.horizontalSync = newValue;
|
|
||||||
value: appSettings.horizontalSync;
|
|
||||||
}
|
|
||||||
CheckableSlider{
|
|
||||||
name: qsTr("RGB Shift")
|
|
||||||
onNewValue: appSettings.rbgShift = newValue;
|
|
||||||
value: appSettings.rbgShift;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,67 +0,0 @@
|
|||||||
/*******************************************************************************
|
|
||||||
* Copyright (c) 2013 "Filippo Scognamiglio"
|
|
||||||
* https://github.com/Swordfish90/cool-retro-term
|
|
||||||
*
|
|
||||||
* This file is part of cool-retro-term.
|
|
||||||
*
|
|
||||||
* cool-retro-term is free software: you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*******************************************************************************/
|
|
||||||
|
|
||||||
import QtQuick 2.2
|
|
||||||
import QtQuick.Controls 1.1
|
|
||||||
import QtQuick.Layouts 1.1
|
|
||||||
import QtQuick.Dialogs 1.1
|
|
||||||
|
|
||||||
Tab{
|
|
||||||
ColumnLayout{
|
|
||||||
anchors.fill: parent
|
|
||||||
GroupBox{
|
|
||||||
title: qsTr("Rasterization Mode")
|
|
||||||
Layout.fillWidth: true
|
|
||||||
ComboBox {
|
|
||||||
id: rasterizationBox
|
|
||||||
property string selectedElement: model[currentIndex]
|
|
||||||
anchors.fill: parent
|
|
||||||
model: [qsTr("Default"), qsTr("Scanlines"), qsTr("Pixels")]
|
|
||||||
currentIndex: appSettings.rasterization
|
|
||||||
onCurrentIndexChanged: {
|
|
||||||
appSettings.rasterization = currentIndex
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
GroupBox{
|
|
||||||
title: qsTr("Lights")
|
|
||||||
Layout.fillWidth: true
|
|
||||||
GridLayout{
|
|
||||||
anchors.fill: parent
|
|
||||||
columns: 2
|
|
||||||
Label{ text: qsTr("Brightness") }
|
|
||||||
SimpleSlider{
|
|
||||||
onValueChanged: appSettings.brightness = value
|
|
||||||
value: appSettings.brightness
|
|
||||||
}
|
|
||||||
Label{ text: qsTr("Contrast") }
|
|
||||||
SimpleSlider{
|
|
||||||
onValueChanged: appSettings.contrast = value
|
|
||||||
value: appSettings.contrast
|
|
||||||
}
|
|
||||||
Label{ text: qsTr("Opacity") }
|
|
||||||
SimpleSlider{
|
|
||||||
onValueChanged: appSettings.windowOpacity = value
|
|
||||||
value: appSettings.windowOpacity
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -27,13 +27,26 @@ import "Components"
|
|||||||
Tab{
|
Tab{
|
||||||
ColumnLayout{
|
ColumnLayout{
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
|
|
||||||
GroupBox{
|
GroupBox{
|
||||||
property var rasterization: [qsTr("Default"), qsTr("Scanlines"), qsTr("Pixels")][appSettings.rasterization]
|
title: qsTr("Font")
|
||||||
title: qsTr("Font " + "(" + rasterization + ")")
|
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
GridLayout{
|
GridLayout{
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
columns: 2
|
columns: 2
|
||||||
|
Label { text: qsTr("Rasterization") }
|
||||||
|
ComboBox {
|
||||||
|
id: rasterizationBox
|
||||||
|
|
||||||
|
property string selectedElement: model[currentIndex]
|
||||||
|
|
||||||
|
Layout.fillWidth: true
|
||||||
|
model: [qsTr("Default"), qsTr("Scanlines"), qsTr("Pixels")]
|
||||||
|
currentIndex: appSettings.rasterization
|
||||||
|
onCurrentIndexChanged: {
|
||||||
|
appSettings.rasterization = currentIndex
|
||||||
|
}
|
||||||
|
}
|
||||||
Label{ text: qsTr("Name") }
|
Label{ text: qsTr("Name") }
|
||||||
ComboBox{
|
ComboBox{
|
||||||
id: fontChanger
|
id: fontChanger
|
||||||
|
@ -28,7 +28,7 @@ Window {
|
|||||||
id: settings_window
|
id: settings_window
|
||||||
title: qsTr("Settings")
|
title: qsTr("Settings")
|
||||||
width: 580
|
width: 580
|
||||||
height: 400
|
height: 500
|
||||||
|
|
||||||
property int tabmargins: 15
|
property int tabmargins: 15
|
||||||
|
|
||||||
@ -42,12 +42,6 @@ Window {
|
|||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
anchors.margins: tabmargins
|
anchors.margins: tabmargins
|
||||||
}
|
}
|
||||||
SettingsScreenTab{
|
|
||||||
id: screenTab
|
|
||||||
title: qsTr("Screen")
|
|
||||||
anchors.fill: parent
|
|
||||||
anchors.margins: tabmargins
|
|
||||||
}
|
|
||||||
SettingsTerminalTab{
|
SettingsTerminalTab{
|
||||||
id: terminalTab
|
id: terminalTab
|
||||||
title: qsTr("Terminal")
|
title: qsTr("Terminal")
|
||||||
|
@ -32,7 +32,6 @@
|
|||||||
<file>fonts/modern-pro-font-win-tweaked/ProFontWindows.ttf</file>
|
<file>fonts/modern-pro-font-win-tweaked/ProFontWindows.ttf</file>
|
||||||
<file>fonts/modern-hermit/Hermit-medium.otf</file>
|
<file>fonts/modern-hermit/Hermit-medium.otf</file>
|
||||||
<file>fonts/modern-inconsolata/Inconsolata.otf</file>
|
<file>fonts/modern-inconsolata/Inconsolata.otf</file>
|
||||||
<file>SettingsScreenTab.qml</file>
|
|
||||||
<file>fonts/modern-fixedsys-excelsior/FSEX301-L2.ttf</file>
|
<file>fonts/modern-fixedsys-excelsior/FSEX301-L2.ttf</file>
|
||||||
<file>../icons/32x32/cool-retro-term.png</file>
|
<file>../icons/32x32/cool-retro-term.png</file>
|
||||||
<file>Components/SizedLabel.qml</file>
|
<file>Components/SizedLabel.qml</file>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user