SubtitledItemDelegate.qml 433 B

123456789101112131415161718192021222324
  1. import QtQuick 2.0
  2. import QtQuick.Controls 2.2
  3. ItemDelegate {
  4. id: root
  5. property string subtitle: ""
  6. contentItem: Column {
  7. Label {
  8. id: titleLabel
  9. width: parent.width
  10. text: root.text
  11. }
  12. Label {
  13. width: parent.width
  14. font.pixelSize: titleLabel.font.pixelSize - 2
  15. text: root.subtitle
  16. opacity: 0.8
  17. }
  18. }
  19. }