TopBar.qml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. spacing: 10
  14. height: 50
  15. ComboBox {
  16. id: repositories
  17. width: 400
  18. model: _handler.repositories
  19. textRole: "name"
  20. onActivated: {
  21. _handler.activateRepository(index)
  22. }
  23. }
  24. Text {
  25. text: "Active repository" + repoOpenDialog.fileUrl
  26. }
  27. Button {
  28. text: "Choose..."
  29. onClicked: repoOpenDialog.open()
  30. }
  31. Text {
  32. text: _handler.activeRepo.name
  33. }
  34. FileDialog {
  35. id: repoOpenDialog
  36. folder: "."
  37. selectFolder: true
  38. selectMultiple: false
  39. onAccepted: {
  40. //TODO: repo open is not available
  41. _handler.open(repoOpenDialog.fileUrl)
  42. }
  43. }
  44. }
  45. Button {
  46. id: closeControl
  47. anchors.right: parent.right
  48. anchors.top: parent.top
  49. anchors.topMargin: 10
  50. anchors.rightMargin: 10
  51. style: ButtonStyle {
  52. background: Image {
  53. source: control.pressed ? "qrc:///images/x-mark-3-24_active.png" : "qrc:///images/x-mark-3-24.png"
  54. }
  55. }
  56. onClicked: {
  57. root.closeClicked()
  58. }
  59. }
  60. }