123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- import QtQuick 2.0
- Item {
- id: root
- state: "closed"
- clip: true
- states: [
- State {
- name: "opened"
- PropertyChanges {
- target: root
- height: childrenRect.height
- }
- },
- State {
- name: "closed"
- PropertyChanges {
- target: root
- height: shortInfo.height
- }
- }
- ]
- transitions: Transition {
- NumberAnimation {
- properties: "height"
- duration: 200
- }
- }
- Column {
- id: shortInfo
- anchors.top: parent.top
- width: parent.width
- CommitInfoLine {
- field: qsTr("Time")
- value: commit ? commit.time : ""
- }
- CommitInfoLine {
- field: qsTr("Author")
- value: commit ? commit.author : ""
- }
- CommitInfoLine {
- field: qsTr("Email")
- value: commit ? commit.email : ""
- }
- CommitInfoLine {
- field: qsTr("Summary")
- value: commit ? commit.summary : ""
- }
- }
- Image {
- id: merge
- visible: commit.isMerge
- source: "qrc:///images/flow-merge.png"
- anchors.right: shortInfo.right
- anchors.rightMargin: 5
- anchors.top: shortInfo.top
- }
- Column {
- anchors.top: shortInfo.bottom
- width: parent.width
- Text {
- wrapMode: Text.WordWrap
- width: contentWidth
- height: contentHeight
- text: qsTr("Message") + ": "
- font.pointSize: 10
- font.weight: Font.Bold
- }
- Rectangle {
- width: 10
- height: 10
- }
- Text {
- id: content
- wrapMode: Text.WordWrap
- width: parent.width
- height: contentHeight
- text: commit ? commit.message : ""
- }
- Rectangle {
- anchors.horizontalCenter: parent.horizontalCenter
- width: parent.width - 4
- height: 2
- radius: 2
- color: "#eeeeee"
- }
- Rectangle {
- width: 10
- height: 10
- }
- }
- }
|