DelayButtonSpecifics.qml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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("DelayButton")
  12. SectionLayout {
  13. Label {
  14. text: qsTr("Delay")
  15. tooltip: qsTr("The delay in milliseconds.")
  16. }
  17. SecondColumnLayout {
  18. SpinBox {
  19. minimumValue: 0
  20. maximumValue: 9999999
  21. decimals: 0
  22. stepSize: 1
  23. backendValue: backendValues.delay
  24. Layout.fillWidth: true
  25. }
  26. }
  27. }
  28. }
  29. AbstractButtonSection {
  30. width: parent.width
  31. }
  32. ControlSection {
  33. width: parent.width
  34. }
  35. FontSection {
  36. width: parent.width
  37. }
  38. PaddingSection {
  39. width: parent.width
  40. }
  41. }