CheckBoxSpecifics.qml 604 B

1234567891011121314151617181920212223242526272829303132
  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. CheckSection {
  10. width: parent.width
  11. caption: qsTr("CheckBox")
  12. }
  13. AbstractButtonSection {
  14. width: parent.width
  15. }
  16. ControlSection {
  17. width: parent.width
  18. }
  19. FontSection {
  20. width: parent.width
  21. }
  22. PaddingSection {
  23. width: parent.width
  24. }
  25. }