DiffFiles.qml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. import QtQuick 2.0
  2. import QtGraphicalEffects 1.0
  3. import org.semlanik.nicegit 1.0
  4. ListView {
  5. id: root
  6. property QtObject diff: null
  7. signal openDiff(var file)
  8. spacing: 10
  9. model: diff ? diff.files : 0
  10. clip: true
  11. delegate: Item {
  12. property QtObject diffModel: root.diff.model(modelData)
  13. width: commitBodyText.width + action.width + 10
  14. height: commitBodyText.height + 10
  15. // Rectangle {
  16. // color: "red"
  17. // anchors.right: action.left
  18. // height: parent.height
  19. // width: parent.width*diffModel.similarity/100
  20. // }
  21. Text {
  22. id: commitBodyText
  23. anchors.bottom: parent.bottom
  24. font.pointSize: 10
  25. width: root.width - action.width - 10
  26. text: modelData
  27. elide: Text.ElideLeft
  28. horizontalAlignment: Text.AlignRight
  29. color:control.containsMouse ? "#aaaaaa" : "#000000"
  30. MouseArea {
  31. id: control
  32. anchors.fill: parent
  33. hoverEnabled: true
  34. onClicked: {
  35. root.openDiff(modelData)
  36. }
  37. }
  38. }
  39. Image {
  40. id: action
  41. anchors.right: parent.right
  42. anchors.verticalCenter: commitBodyText.verticalCenter
  43. source: {
  44. if(root.diff) {
  45. switch(diffModel.type) {
  46. case DiffModel.Added:
  47. return "qrc:///images/diff-added.png"
  48. case DiffModel.Deleted:
  49. return "qrc:///images/diff-removed.png"
  50. case DiffModel.Modified:
  51. return "qrc:///images/diff-modified.png"
  52. case DiffModel.Renamed:
  53. return "qrc:///images/diff-renamed.png"
  54. default:
  55. return "qrc:///images/diff-ignored.png"
  56. }
  57. }
  58. }
  59. }
  60. }
  61. }