1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
|
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
import QtQuick
import QtQuick.Controls.Material
Item {
id: rootItem
property bool show: true
property real showAnimation: show ? 1 : 0
function resetSettings() {
colorizationColorSelector.setValues(defaultSettings.colorizationColor.r,
defaultSettings.colorizationColor.g,
defaultSettings.colorizationColor.b);
shadowColorSelector.setValues(defaultSettings.shadowColor.r,
defaultSettings.shadowColor.g,
defaultSettings.shadowColor.b);
}
Material.theme: Material.Dark
Material.accent: Material.LightGreen
width: settings.settingsViewWidth
x: -(width + 30) * (1 - showAnimation) + 20
Behavior on showAnimation {
NumberAnimation {
duration: 400
easing.type: Easing.InOutQuad
}
}
// Open/close button
Item {
width: 30 * dp
height: 30 * dp
anchors.left: parent.right
anchors.leftMargin: 20
anchors.top: parent.top
anchors.topMargin: -10
Rectangle {
anchors.fill: parent
color: "#404040"
opacity: 0.4
border.width: 1
border.color: "#808080"
}
Image {
anchors.centerIn: parent
source: "images/arrow.png"
rotation: rootItem.showAnimation * 180
}
MouseArea {
anchors.fill: parent
anchors.margins: -30 * dp
onClicked: {
rootItem.show = !rootItem.show;
}
}
}
// Background
Rectangle {
anchors.fill: scrollView
opacity: showAnimation ? 0.6 : 0
visible: opacity
anchors.margins: -10
color: "#202020"
border.color: "#808080"
border.width: 1
}
ScrollView {
id: scrollView
anchors.fill: parent
ScrollBar.horizontal.policy: ScrollBar.AlwaysOff
ScrollBar.vertical.interactive: false
clip: true
Column {
id: settingsArea
anchors.fill: parent
opacity: showAnimation
visible: opacity
Item {
width: 1
height: 20 * dp
}
Image {
anchors.horizontalCenter: parent.horizontalCenter
fillMode: Image.PreserveAspectFit
width: parent.width * 0.8
height: width * 0.25
source: "images/Built_with_Qt_RGB_logo.png"
}
Item {
width: 1
height: 28 * dp
}
SettingsComponentView {
id: settingsViewGeneral
text: qsTr("General")
show: true
SettingsComponentCheckBox {
text: "Show Shaders"
checked: settings.showShader
onToggled: {
settings.showShader = checked;
}
}
SettingsComponentCheckBox {
text: "Show Item Size"
checked: settings.showItemSize
onToggled: {
settings.showItemSize = checked;
}
}
SettingsComponentCheckBox {
text: "AutoPadding Enabled"
checked: settings.autoPaddingEnabled
onToggled: {
settings.autoPaddingEnabled = checked;
}
}
SettingsComponentCheckBox {
text: "Show Custom MultiEffect"
checked: settings.showCustomMultiEffect
onToggled: {
settings.showCustomMultiEffect = checked;
}
}
Item {
width: 1
height: 20 * dp
}
SettingsComponentSlider {
text: qsTr("Padding Left") + ": " + value.toFixed(0)
value: settings.paddingRect.x
from: 0.0
to: 300
onMoved: {
settings.paddingRect.x = value;
}
}
SettingsComponentSlider {
text: qsTr("Padding Right") + ": " + value.toFixed(0)
value: settings.paddingRect.width
from: 0.0
to: 300
onMoved: {
settings.paddingRect.width = value;
}
}
SettingsComponentSlider {
text: qsTr("Padding Top") + ": " + value.toFixed(0)
value: settings.paddingRect.y
from: 0.0
to: 300
onMoved: {
settings.paddingRect.y = value;
}
}
SettingsComponentSlider {
text: qsTr("Padding Bottom") + ": " + value.toFixed(0)
value: settings.paddingRect.height
from: 0.0
to: 300
onMoved: {
settings.paddingRect.height = value;
}
}
}
SettingsComponentView {
text: qsTr("Color")
show: false
SettingsComponentSlider {
text: qsTr("Brightness") + ": " + value.toFixed(3)
showCheckbox: true
checked: settings.brightnessEnabled
onToggled: {
settings.brightnessEnabled = checked;
}
value: settings.brightness
from: -1
to: 1
onMoved: {
settings.brightness = value;
}
}
SettingsComponentSlider {
text: qsTr("Contrast") + ": " + value.toFixed(3)
showCheckbox: true
checked: settings.contrastEnabled
onToggled: {
settings.contrastEnabled = checked;
}
value: settings.contrast
from: -1
to: 1
onMoved: {
settings.contrast = value;
}
}
SettingsComponentSlider {
text: qsTr("Saturation") + ": " + value.toFixed(3)
showCheckbox: true
checked: settings.saturationEnabled
onToggled: {
settings.saturationEnabled = checked;
}
value: settings.saturation
from: -1
to: 1
onMoved: {
settings.saturation = value;
}
}
SettingsComponentSlider {
text: qsTr("Colorization") + ": " + value.toFixed(3)
showCheckbox: true
checked: settings.colorizationEnabled
onToggled: {
settings.colorizationEnabled = checked;
}
value: settings.colorization
from: 0
to: 1
onMoved: {
settings.colorization = value;
}
}
SettingsComponentColorSelector {
id: colorizationColorSelector
text: qsTr("Colorization Color")
width: settings.settingsViewWidth - 10
onValueChanged: {
settings.colorizationColor = value;
}
}
}
SettingsComponentView {
text: qsTr("Blur")
show: false
SettingsComponentSlider {
text: qsTr("Blur") + ": " + value.toFixed(3)
showCheckbox: true
checked: settings.blurEnabled
onToggled: {
settings.blurEnabled = checked;
}
value: settings.blur
from: 0
to: 1.0
onMoved: {
settings.blur = value;
}
}
SettingsComponentSlider {
text: qsTr("Blur Multiplier") + ": " + value.toFixed(3)
value: settings.blurMultiplier
from: 0.0
to: 2.0
onMoved: {
settings.blurMultiplier = value;
}
}
SettingsComponentSlider {
text: qsTr("Blur Max") + ": " + value.toFixed(0)
value: settings.blurMax
from: 0
to: 64
stepSize: 2
onMoved: {
settings.blurMax = value;
}
}
}
SettingsComponentView {
text: qsTr("Shadow")
show: false
SettingsComponentSlider {
text: qsTr("Shadow") + ": " + value.toFixed(3)
showCheckbox: true
checked: settings.shadowEnabled
onToggled: {
settings.shadowEnabled = checked;
}
value: settings.shadowOpacity
from: 0
to: 1.0
onMoved: {
settings.shadowOpacity = value;
}
}
SettingsComponentSlider {
text: qsTr("Shadow Blur") + ": " + value.toFixed(3)
value: settings.shadowBlur
from: 0.0
to: 1.0
onMoved: {
settings.shadowBlur = value;
}
}
SettingsComponentSlider {
text: qsTr("Shadow HorizontalOffset") + ": " + value.toFixed(1)
value: settings.shadowHorizontalOffset
from: -20.0
to: 20.0
onMoved: {
settings.shadowHorizontalOffset = value;
}
}
SettingsComponentSlider {
text: qsTr("Shadow VerticalOffset") + ": " + value.toFixed(1)
value: settings.shadowVerticalOffset
from: -20.0
to: 20.0
onMoved: {
settings.shadowVerticalOffset = value;
}
}
SettingsComponentSlider {
text: qsTr("Shadow Scale") + ": " + value.toFixed(3)
value: settings.shadowScale
from: 0.8
to: 1.2
onMoved: {
settings.shadowScale = value;
}
}
SettingsComponentColorSelector {
id: shadowColorSelector
text: qsTr("Shadow Color")
width: settings.settingsViewWidth - 10
onValueChanged: {
settings.shadowColor = value;
}
}
}
SettingsComponentView {
text: qsTr("Mask")
show: false
SettingsComponentCheckBox {
text: "Mask Enabled"
checked: settings.maskEnabled
onToggled: {
settings.maskEnabled = checked;
}
}
SettingsComponentCheckBox {
text: "Mask Inverted"
checked: settings.maskInverted
onToggled: {
settings.maskInverted = checked;
}
}
Item {
width: 1
height: 20 * dp
}
SettingsComponentSlider {
text: qsTr("Mask Threshold Min") + ": " + value.toFixed(3)
value: settings.maskThresholdMin
from: 0.0
to: 1.0
onMoved: {
settings.maskThresholdMin = value;
}
}
SettingsComponentSlider {
text: qsTr("Mask Spread At Min") + ": " + value.toFixed(3)
value: settings.maskSpreadAtMin
from: 0.0
to: 1.0
onMoved: {
settings.maskSpreadAtMin = value;
}
}
SettingsComponentSlider {
text: qsTr("Mask Threshold Max") + ": " + value.toFixed(3)
value: settings.maskThresholdMax
from: 0.0
to: 1.0
onMoved: {
settings.maskThresholdMax = value;
}
}
SettingsComponentSlider {
text: qsTr("Mask Spread At Max") + ": " + value.toFixed(3)
value: settings.maskSpreadAtMax
from: 0.0
to: 1.0
onMoved: {
settings.maskSpreadAtMax = value;
}
}
}
}
}
}
|