TopBar.qml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. import QtQuick 2.0
  2. import QtQuick.Dialogs 1.2
  3. import QtQuick.Controls 1.4
  4. import QtQuick.Controls.Styles 1.4
  5. Item {
  6. id: root
  7. anchors.right: parent.right
  8. anchors.left: parent.left
  9. height: childrenRect.height
  10. signal closeClicked()
  11. property alias closeVisible: closeControl.visible
  12. Row {
  13. anchors.left: parent.left
  14. anchors.leftMargin: 10
  15. spacing: 10
  16. height: 40
  17. Text {
  18. font.weight: Font.Bold
  19. anchors.verticalCenter: parent.verticalCenter
  20. text: qsTr("Active projects") + ":"
  21. }
  22. ComboBox {
  23. id: repositories
  24. anchors.verticalCenter: parent.verticalCenter
  25. width: 400
  26. model: _handler.repositories
  27. textRole: "name"
  28. onActivated: {
  29. _handler.activateRepository(index)
  30. }
  31. currentIndex: _handler.repositories.activeRepositoryIndex
  32. style: ComboBoxStyle {
  33. font.weight:Font.Bold
  34. }
  35. }
  36. Separator {
  37. anchors.verticalCenter: parent.verticalCenter
  38. }
  39. Button {
  40. anchors.verticalCenter: parent.verticalCenter
  41. text: qsTr("Add...")
  42. onClicked: {
  43. console.log("repoOpenDialog.folder: " + repoOpenDialog.folder)
  44. repoOpenDialog.open()
  45. }
  46. }
  47. }
  48. Row {
  49. anchors.right: parent.right
  50. anchors.top: parent.top
  51. anchors.topMargin: 10
  52. anchors.rightMargin: 10
  53. spacing: 10
  54. Button {
  55. id: closeControl
  56. style: ButtonStyle {
  57. background: Image {
  58. source: control.pressed ? "qrc:///images/x-mark-3-24_active.png" : "qrc:///images/x-mark-3-24.png"
  59. }
  60. }
  61. onClicked: {
  62. root.closeClicked()
  63. }
  64. }
  65. Button {
  66. id: help
  67. style: ButtonStyle {
  68. background: Image {
  69. source: control.pressed ? "qrc:///images/question-mark-4-24_active.png" : "qrc:///images/question-mark-4-24.png"
  70. }
  71. }
  72. onClicked: {
  73. helpDialog.open()
  74. }
  75. }
  76. }
  77. FileDialog {
  78. id: repoOpenDialog
  79. folder: _handler.homePath
  80. selectFolder: true
  81. selectMultiple: false
  82. onAccepted: {
  83. _handler.open(repoOpenDialog.fileUrl, true)
  84. }
  85. }
  86. Dialog {
  87. id: helpDialog
  88. title: qsTr("About")
  89. modality: Qt.NonModal
  90. contentItem: Item {
  91. implicitWidth: 400
  92. implicitHeight: 200
  93. Text {
  94. anchors.left: parent.left
  95. anchors.leftMargin: 8
  96. anchors.right: parent.right
  97. anchors.rightMargin: 8
  98. anchors.horizontalCenter: parent
  99. wrapMode: Text.WordWrap
  100. font.pointSize: 12
  101. textFormat: Text.RichText
  102. text:"<p><b>CuteGit</b> is free opensource software. You're free to use and modify it in terms of GPLv3 license.<br/>" +
  103. "You can support project by contributing your ideas and code to CuteGit repository.</p>" +
  104. "<p><b>Author:</b> Alexey Edelev aka semlanik</p>"
  105. }
  106. }
  107. }
  108. }