ToolBarSpecifics.qml 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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("ToolBar")
  12. SectionLayout {
  13. Label {
  14. text: qsTr("Position")
  15. tooltip: qsTr("Position of the toolbar.")
  16. }
  17. SecondColumnLayout {
  18. ComboBox {
  19. backendValue: backendValues.position
  20. model: [ "Header", "Footer" ]
  21. scope: "ToolBar"
  22. Layout.fillWidth: true
  23. }
  24. }
  25. }
  26. }
  27. PaneSection {
  28. width: parent.width
  29. }
  30. ControlSection {
  31. width: parent.width
  32. }
  33. FontSection {
  34. width: parent.width
  35. }
  36. PaddingSection {
  37. width: parent.width
  38. }
  39. }