CommitInfo.qml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. import QtQuick 2.0
  2. Item {
  3. id: root
  4. state: "closed"
  5. clip: true
  6. states: [
  7. State {
  8. name: "opened"
  9. PropertyChanges {
  10. target: root
  11. height: childrenRect.height
  12. }
  13. },
  14. State {
  15. name: "closed"
  16. PropertyChanges {
  17. target: root
  18. height: shortInfo.height
  19. }
  20. }
  21. ]
  22. transitions: Transition {
  23. NumberAnimation {
  24. properties: "height"
  25. duration: 200
  26. }
  27. }
  28. Column {
  29. id: shortInfo
  30. anchors.top: parent.top
  31. width: parent.width
  32. CommitInfoLine {
  33. field: qsTr("Time")
  34. value: commit ? commit.time : ""
  35. }
  36. CommitInfoLine {
  37. field: qsTr("Author")
  38. value: commit ? commit.author : ""
  39. }
  40. CommitInfoLine {
  41. field: qsTr("Email")
  42. value: commit ? commit.email : ""
  43. }
  44. CommitInfoLine {
  45. field: qsTr("Summary")
  46. value: commit ? commit.summary : ""
  47. }
  48. }
  49. Image {
  50. id: merge
  51. visible: commit.isMerge
  52. source: "qrc:///images/flow-merge.png"
  53. anchors.right: shortInfo.right
  54. anchors.rightMargin: 5
  55. anchors.top: shortInfo.top
  56. }
  57. Column {
  58. anchors.top: shortInfo.bottom
  59. width: parent.width
  60. Text {
  61. wrapMode: Text.WordWrap
  62. width: contentWidth
  63. height: contentHeight
  64. text: qsTr("Message") + ": "
  65. font.pointSize: 10
  66. font.weight: Font.Bold
  67. }
  68. Rectangle {
  69. width: 10
  70. height: 10
  71. }
  72. Text {
  73. id: content
  74. wrapMode: Text.WordWrap
  75. width: parent.width
  76. height: contentHeight
  77. text: commit ? commit.message : ""
  78. }
  79. Rectangle {
  80. anchors.horizontalCenter: parent.horizontalCenter
  81. width: parent.width - 4
  82. height: 2
  83. radius: 2
  84. color: "#eeeeee"
  85. }
  86. Rectangle {
  87. width: 10
  88. height: 10
  89. }
  90. }
  91. }