DialogButtonBox.qml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2021 The Qt Company Ltd.
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:COMM$
  9. **
  10. ** Commercial License Usage
  11. ** Licensees holding valid commercial Qt licenses may use this file in
  12. ** accordance with the commercial license agreement provided with the
  13. ** Software or, alternatively, in accordance with the terms contained in
  14. ** a written agreement between you and The Qt Company. For licensing terms
  15. ** and conditions see https://www.qt.io/terms-conditions. For further
  16. ** information use the contact form at https://www.qt.io/contact-us.
  17. **
  18. ** $QT_END_LICENSE$
  19. **
  20. **
  21. **
  22. **
  23. **
  24. **
  25. **
  26. **
  27. **
  28. **
  29. **
  30. **
  31. **
  32. **
  33. **
  34. **
  35. ****************************************************************************/
  36. import QtQuick 2.12
  37. import QtQuick.Templates 2.12 as T
  38. T.DialogButtonBox {
  39. id: control
  40. implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
  41. (control.count === 1 ? implicitContentWidth * 2 : implicitContentWidth) + leftPadding + rightPadding)
  42. implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
  43. implicitContentHeight + topPadding + bottomPadding)
  44. contentWidth: contentItem.contentWidth
  45. spacing: 1
  46. padding: 12
  47. alignment: count === 1 ? Qt.AlignRight : undefined
  48. delegate: Button {
  49. width: control.count === 1 ? control.availableWidth / 2 : undefined
  50. }
  51. contentItem: ListView {
  52. implicitWidth: contentWidth
  53. model: control.contentModel
  54. spacing: control.spacing
  55. orientation: ListView.Horizontal
  56. boundsBehavior: Flickable.StopAtBounds
  57. snapMode: ListView.SnapToItem
  58. }
  59. background: Rectangle {
  60. implicitHeight: 40
  61. x: 1; y: 1
  62. width: parent.width - 2
  63. height: parent.height - 2
  64. color: control.palette.window
  65. }
  66. }