MainView.qml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. import QtQuick 2.0
  2. import QtQuick.Controls 1.4
  3. import org.semlanik.cutegit 1.0
  4. FocusScope {
  5. id: root
  6. property var commitsForDiff: null
  7. property bool controlActive: false
  8. focus: true
  9. TopBar {
  10. id: topBar
  11. onCloseClicked: {
  12. _handler.diffReset()
  13. commitPlane.commit = null
  14. commitList.state = "full"
  15. commitList.activeCommit = null
  16. }
  17. closeVisible: commitPlane.diff != null
  18. }
  19. Rectangle {
  20. id: bg
  21. color: "#eeeeee"
  22. anchors.fill: commitList
  23. }
  24. CommitList {
  25. id: commitList
  26. anchors.top: topBar.bottom
  27. anchors.bottom: consoleContol.top
  28. anchors.left: parent.left
  29. commitsModel: _handler.commits
  30. graphModel: _handler.graph
  31. onCommitClicked: {
  32. if(commit == null) {
  33. commitPlane.commit = null
  34. _handler.diff()
  35. commitList.state = "commitsOnly"
  36. return;
  37. }
  38. if(commit.diff === null) {
  39. commitPlane.commit = null
  40. _handler.diffReset()
  41. commitList.state = "full"
  42. return
  43. }
  44. commitList.state = "commitsOnly"
  45. if(!root.controlActive) {
  46. commitPlane.commit = commit
  47. root.commitsForDiff=[]
  48. } else {
  49. console.log("root.controlActive: " + root.controlActive)
  50. if(root.commitsForDiff === null) {
  51. root.commitsForDiff = new Array(0);
  52. }
  53. console.log("Length" + root.commitsForDiff.length)
  54. root.commitsForDiff.push(commit)
  55. if(root.commitsForDiff.length === 2) {
  56. commitPlane.commit = root.commitsForDiff[1]
  57. _handler.diff(root.commitsForDiff[0], root.commitsForDiff[1])
  58. root.commitsForDiff=[]
  59. }
  60. }
  61. }
  62. }
  63. CommitPlane {
  64. id: commitPlane
  65. anchors.left: commitList.right
  66. anchors.right: parent.right
  67. anchors.top: topBar.bottom
  68. anchors.bottom: consoleContol.top
  69. Binding {
  70. target: commitPlane
  71. property: "diff"
  72. value: _handler.activeDiff
  73. }
  74. }
  75. Rectangle {
  76. id: dimmingPlane
  77. anchors.fill: commitList
  78. MouseArea {
  79. anchors.fill: parent
  80. }
  81. color: "black"
  82. opacity: _handler.isBusy ? 0.4 : 0.0
  83. visible: opacity > 0
  84. Behavior on opacity {
  85. NumberAnimation {
  86. duration: 500
  87. }
  88. }
  89. }
  90. ConsoleControl {
  91. id: consoleContol
  92. anchors.left: parent.left
  93. anchors.right: parent.right
  94. anchors.bottom: parent.bottom
  95. }
  96. Connections {
  97. target: _handler
  98. onActiveRepoChanged: {
  99. commitPlane.diff = null
  100. commitPlane.commit = null
  101. }
  102. }
  103. Keys.onPressed: {
  104. event.accepted = true
  105. switch(event.key) {
  106. case Qt.Key_Control:
  107. root.controlActive = true
  108. console.log("control pressed")
  109. break
  110. case Qt.Key_F4:
  111. consoleContol.state = consoleContol.state === "closed" ? "opened" : "closed"
  112. break
  113. case Qt.Key_G://Found the G point. Let's open console using this action.
  114. //TODO: Later has to be part of Console C++ class to read settings
  115. consoleContol.state = "opened"
  116. _handler.console.requestAutocomplete("g");
  117. break
  118. default:
  119. event.accepted = false
  120. }
  121. }
  122. Keys.onReleased: {
  123. if(event.key === Qt.Key_Control) {
  124. root.controlActive = false
  125. console.log("control released");
  126. }
  127. }
  128. onActiveFocusChanged: {
  129. root.controlActive = false
  130. console.log("control released");
  131. }
  132. Tooltip {
  133. }
  134. InitialWizard {
  135. visible: _handler.repositories.count <= 0
  136. anchors.fill: parent
  137. }
  138. }