SettingsBlock.qml 807 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. import QtQuick 2.15
  2. import QtQuick.Controls 2.15
  3. import DMusic 1.0
  4. Control {
  5. id: root
  6. property string title: ""
  7. rightPadding: 15
  8. leftPadding: 15
  9. topPadding: _title.height + 30
  10. bottomPadding: 20
  11. default property Item item
  12. implicitWidth: Math.max(
  13. _title.width + leftPadding + rightPadding,
  14. implicitContentWidth + leftPadding + rightPadding
  15. )
  16. background: Rectangle {
  17. color: Style.block.background
  18. radius: Style.block.radius
  19. border.color: Style.block.border.color
  20. border.width: Style.block.border.width
  21. DText {
  22. id: _title
  23. style: Style.block.text
  24. anchors.horizontalCenter: parent.horizontalCenter
  25. anchors.top: parent.top
  26. anchors.topMargin: 15
  27. text: root.title
  28. font.pointSize: 13.5
  29. }
  30. }
  31. contentItem: item
  32. }