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 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439
|
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
import QtQuick
import QtQuick.Layouts
import QtQuick.Controls
import QtQuick.Shapes
import QtQuick.Dialogs
import QtCore
Item {
property real scale: +scaleSlider.value.toFixed(4)
property color backgroundColor: setBackground.checked ? Qt.rgba(bgColor.color.r, bgColor.color.g, bgColor.color.b, 1.0) : Qt.rgba(0,0,0,0)
property color outlineColor: enableOutline.checked ? Qt.rgba(outlineColor.color.r, outlineColor.color.g, outlineColor.color.b, outlineAlpha) : Qt.rgba(0,0,0,0)
property color fillColor: Qt.rgba(fillColor.color.r, fillColor.color.g, fillColor.color.b, pathAlpha)
property alias pathAlpha: alphaSlider.value
property alias fillRule: fillRule.currentValue
property alias outlineAlpha: outlineAlphaSlider.value
property real outlineWidth: cosmeticPen.checked ? outlineWidthEdit.text / scale : outlineWidthEdit.text
property alias outlineStyle: outlineStyle.currentValue
property alias capStyle: capStyle.currentValue
property alias joinStyle: joinStyle.currentValue
property alias debugCurves: enableDebug.checked
property alias debugWireframe: enableWireframe.checked
property alias painterComparison: painterComparison.currentIndex
property alias painterComparisonColor: painterComparisonColor.color
property alias painterComparisonAlpha: painterComparisonColorAlpha.value
property alias outlineEnabled: enableOutline.checked
property alias gradientType: gradientType.currentIndex
property alias fillScaleX: fillTransformSlider.value
property alias rendererName: rendererLabel.text
property alias preferCurve: rendererLabel.preferCurve
property alias async: enableAsync.checked
property int subShape: pickSubShape.checked ? subShapeSelector.value : -1
property bool subShapeGreaterThan : pickSubShapeGreaterThan.checked
property real pathMargin: marginEdit.text
Settings {
property alias enableOutline: enableOutline.checked
property alias outlineColor: outlineColor.color
property alias outlineWidth: outlineWidthEdit.text
property alias outlineAlpha: outlineAlphaSlider.value
property alias outlineStyle: outlineStyle.currentIndex
property alias joinStyle: joinStyle.currentIndex
property alias capStyle: capStyle.currentIndex
property alias cosmeticPen: cosmeticPen.checked
property alias pathAlpha: alphaSlider.value
property alias fillRule: fillRule.currentIndex
property alias fillColor: fillColor.color
property alias setBackground: setBackground.checked
property alias backgroundColor: bgColor.color
}
function setScale(x) {
scaleSlider.value = x
}
signal pathChanged
function updatePath()
{
pathChanged()
}
ColumnLayout {
anchors.fill: parent
anchors.margins: 10
RowLayout {
Label {
text: "Renderer:"
color: "white"
}
Label {
id: rendererLabel
property bool preferCurve: true
color: "white"
text: "Unknown"
TapHandler {
onTapped: {
rendererLabel.preferCurve = !rendererLabel.preferCurve
}
}
}
CheckBox {
id: enableAsync
Layout.fillWidth: false
}
Label {
text: "Asynchronous"
color: "white"
}
CheckBox {
id: enableDebug
Layout.fillWidth: false
}
Label {
text: "Debug"
color: "white"
}
CheckBox {
id: enableWireframe
Layout.fillWidth: false
}
Label {
text: "Wireframe"
color: "white"
}
ComboBox {
id: painterComparison
Layout.fillWidth: false
model: [
"No QPainter comparison",
"Overlaid QPainter comparison",
"Underlaid QPainter comparison"
]
}
Rectangle {
id: painterComparisonColor
color: "red"
width: 20
height: 20
MouseArea {
anchors.fill: parent
onClicked: {
painterComparisonColorDialog.open()
}
}
}
Slider {
id: painterComparisonColorAlpha
from: 0.0
to: 1.0
value: 1.0
Layout.fillWidth: false
}
Label {
text: "Alpha"
color: "white"
}
CheckBox {
text: "Pick SVG sub-shape"
id: pickSubShape
palette.windowText: "white"
Layout.fillWidth: false
}
SpinBox {
id: subShapeSelector
visible: pickSubShape.checked
value: 0
to: 999
editable: true
Layout.fillWidth: false
}
CheckBox {
id: pickSubShapeGreaterThan
visible: pickSubShape.checked
text: "show greater than"
palette.windowText: "white"
Layout.fillWidth: false
}
CheckBox {
id: setBackground
text: "Solid background"
palette.windowText: "white"
Layout.fillWidth: false
}
RowLayout {
visible: setBackground.checked
Rectangle {
id: bgColor
property color selectedColor: "#a9a9a9"
color: selectedColor
border.color: "black"
border.width: 2
width: 21
height: 21
MouseArea {
anchors.fill: parent
onClicked: {
bgColorDialog.open()
}
}
}
}
}
RowLayout {
Label {
text: "Margin:"
color: "white"
}
TextField {
id: marginEdit
text: "150"
validator: DoubleValidator{ bottom: 0.0 }
}
Label {
text: "Scale:"
color: "white"
}
TextField {
id: scaleEdit
text: scaleSlider.value.toFixed(4)
Layout.fillWidth: false
onEditingFinished: {
let val = +text
if (val > 0)
scaleSlider.value = val
}
}
Slider {
id: scaleSlider
Layout.fillWidth: true
from: 0.01
to: 50.0
value: 0.2
onValueChanged: scaleEdit.text = value.toFixed(4)
}
}
RowLayout {
Label {
text: "Fill color"
color: "white"
}
Rectangle {
id: fillColor
color: "#ffffff"
width: 20
height: 20
MouseArea {
anchors.fill: parent
onClicked: {
fillColorDialog.open()
}
}
}
ComboBox {
id: gradientType
Layout.fillWidth: false
model: [ "NoGradient", "LinearGradient", "RadialGradient", "ConicalGradient" ]
}
Label {
text: "Fill rule:"
color: "white"
}
ComboBox {
id: fillRule
textRole: "text"
valueRole: "style"
Layout.fillWidth: false
model: ListModel {
ListElement {
text: "WindingFill"
style: ShapePath.WindingFill
}
ListElement {
text: "OddEvenFill"
style: ShapePath.OddEvenFill
}
}
}
Label {
text: "Fill transform (scale x: " + fillTransformSlider.value.toFixed(2) + "):"
color: "white"
visible: gradientType.currentIndex != 0
}
Slider {
id: fillTransformSlider
Layout.fillWidth: true
from: 0.2
to: 5.0
value: 1.0
visible: gradientType.currentIndex != 0
}
Label {
text: "Fill alpha(" + Math.round(alphaSlider.value*100)/100 + "):"
color: "white"
}
Slider {
id: alphaSlider
Layout.fillWidth: true
from: 0.0
to: 1.0
value: 1.0
}
}
RowLayout {
CheckBox {
id: enableOutline
text: "Enable outline"
palette.windowText: "white"
Layout.fillWidth: false
}
RowLayout {
opacity: enableOutline.checked ? 1 : 0
Label {
text: "Outline color:"
color: "white"
}
Rectangle {
id: outlineColor
property color selectedColor: "#33ccbb"
color: selectedColor
width: 20
height: 20
MouseArea {
anchors.fill: parent
onClicked: {
outlineColorDialog.open()
}
}
}
ComboBox {
id: outlineStyle
textRole: "text"
valueRole: "style"
Layout.fillWidth: false
model: ListModel {
ListElement {
text: "Solid line"
style: ShapePath.SolidLine
}
ListElement {
text: "Dash line"
style: ShapePath.DashLine
}
}
}
ComboBox {
id: joinStyle
textRole: "text"
valueRole: "style"
Layout.fillWidth: false
model: ListModel {
ListElement {
text: "Miter join"
style: ShapePath.MiterJoin
}
ListElement {
text: "Bevel join"
style: ShapePath.BevelJoin
}
ListElement {
text: "Round join"
style: ShapePath.RoundJoin
}
}
}
ComboBox {
id: capStyle
textRole: "text"
valueRole: "style"
Layout.fillWidth: false
model: ListModel {
ListElement {
text: "Square cap"
style: ShapePath.SquareCap
}
ListElement {
text: "Round cap"
style: ShapePath.RoundCap
}
ListElement {
text: "Flat cap"
style: ShapePath.FlatCap
}
}
}
Label {
text: "Outline width:"
color: "white"
}
TextField {
id: outlineWidthEdit
text: (cosmeticPen.checked ? outlineWidthSlider.value: outlineWidthSlider.value ** 2).toFixed(2)
Layout.fillWidth: false
onEditingFinished: {
let val = +text
if (val > 0) {
if (cosmeticPen.checked)
outlineWidth.value = val * scale
else
outlineWidth.value = Math.sqrt(val)
}
}
}
Slider {
id: outlineWidthSlider
Layout.fillWidth: true
from: 0.0
to: 10.0
value: Math.sqrt(10)
}
CheckBox {
id: cosmeticPen
text: "Cosmetic pen"
palette.windowText: "white"
Layout.fillWidth: false
}
Label {
text: "Outline alpha (" + Math.round(outlineAlphaSlider.value*100)/100 + "):"
color: "white"
}
Slider {
id: outlineAlphaSlider
Layout.fillWidth: true
from: 0.0
to: 1.0
value: 1.0
}
}
}
}
ColorDialog {
id: bgColorDialog
selectedColor: bgColor.selectedColor
onAccepted: bgColor.selectedColor = selectedColor
}
ColorDialog {
id: outlineColorDialog
selectedColor: outlineColor.selectedColor
onAccepted: outlineColor.selectedColor = selectedColor
}
ColorDialog {
id: fillColorDialog
selectedColor: fillColor.color
onAccepted: fillColor.color = selectedColor
}
ColorDialog {
id: painterComparisonColorDialog
selectedColor: painterComparisonColor.color
onAccepted: painterComparisonColor.color = selectedColor
}
}
|