LabelSpecifics.qml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. // Copyright (C) 2017 The Qt Company Ltd.
  2. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
  3. // Qt-Security score:significant reason:default
  4. import QtQuick
  5. import HelperWidgets
  6. import QtQuick.Layouts
  7. Column {
  8. width: parent.width
  9. StandardTextSection {
  10. width: parent.width
  11. showIsWrapping: true
  12. showFormatProperty: true
  13. showVerticalAlignment: true
  14. }
  15. Section {
  16. anchors.left: parent.left
  17. anchors.right: parent.right
  18. caption: qsTr("Text Color")
  19. ColorEditor {
  20. caption: qsTr("Text Color")
  21. backendValue: backendValues.color
  22. supportGradient: false
  23. }
  24. }
  25. Section {
  26. anchors.left: parent.left
  27. anchors.right: parent.right
  28. caption: qsTr("Style Color")
  29. ColorEditor {
  30. caption: qsTr("Style Color")
  31. backendValue: backendValues.styleColor
  32. supportGradient: false
  33. }
  34. }
  35. FontSection {
  36. width: parent.width
  37. }
  38. PaddingSection {
  39. width: parent.width
  40. }
  41. InsetSection {
  42. width: parent.width
  43. }
  44. }