GroupBoxSpecifics.qml 944 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. Section {
  10. width: parent.width
  11. caption: qsTr("GroupBox")
  12. SectionLayout {
  13. Label {
  14. text: qsTr("Title")
  15. tooltip: qsTr("The title of the group box.")
  16. }
  17. SecondColumnLayout {
  18. LineEdit {
  19. backendValue: backendValues.title
  20. Layout.fillWidth: true
  21. }
  22. }
  23. }
  24. }
  25. PaneSection {
  26. width: parent.width
  27. }
  28. ControlSection {
  29. width: parent.width
  30. }
  31. FontSection {
  32. width: parent.width
  33. }
  34. PaddingSection {
  35. width: parent.width
  36. }
  37. }