TopBar.qml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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: repoOpenDialog.open()
  43. }
  44. }
  45. Row {
  46. anchors.right: parent.right
  47. anchors.top: parent.top
  48. anchors.topMargin: 10
  49. anchors.rightMargin: 10
  50. spacing: 10
  51. Button {
  52. id: closeControl
  53. style: ButtonStyle {
  54. background: Image {
  55. source: control.pressed ? "qrc:///images/x-mark-3-24_active.png" : "qrc:///images/x-mark-3-24.png"
  56. }
  57. }
  58. onClicked: {
  59. root.closeClicked()
  60. }
  61. }
  62. Button {
  63. id: help
  64. style: ButtonStyle {
  65. background: Image {
  66. source: control.pressed ? "qrc:///images/question-mark-4-24_active.png" : "qrc:///images/question-mark-4-24.png"
  67. }
  68. }
  69. onClicked: {
  70. helpDialog.open()
  71. }
  72. }
  73. }
  74. FileDialog {
  75. id: repoOpenDialog
  76. folder: "."
  77. selectFolder: true
  78. selectMultiple: false
  79. onAccepted: {
  80. _handler.open(repoOpenDialog.fileUrl, true)
  81. }
  82. }
  83. Dialog {
  84. id: helpDialog
  85. title: qsTr("About")
  86. modality: Qt.NonModal
  87. contentItem: Item {
  88. implicitWidth: 400
  89. implicitHeight: 200
  90. Text {
  91. anchors.left: parent.left
  92. anchors.leftMargin: 8
  93. anchors.right: parent.right
  94. anchors.rightMargin: 8
  95. anchors.horizontalCenter: parent
  96. wrapMode: Text.WordWrap
  97. font.pointSize: 12
  98. textFormat: Text.RichText
  99. text:"<p><b>CuteGit</b> is free opensource software. You're free to use and modify it in terms of GPLv3 license.<br/>" +
  100. "You can support project by contributing your ideas and code to CuteGit repository.</p>" +
  101. "<p><b>Author:</b> Alexey Edelev aka semlanik</p>"
  102. }
  103. }
  104. }
  105. }