InitialWizard.qml 745 B

12345678910111213141516171819202122232425262728293031
  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. FocusScope {
  6. Rectangle {
  7. anchors.fill: parent
  8. }
  9. Text {
  10. textFormat: Text.RichText
  11. font.pointSize: 10
  12. text: qsTr("Hi!<\br> Seems you started CuteGit for the first time. So lets <a href=\"#open\">open</a> one of your repository.");
  13. onLinkActivated: {
  14. if(link == "#open") {
  15. repoOpenDialog.open()
  16. }
  17. }
  18. }
  19. FileDialog {
  20. id: repoOpenDialog
  21. folder: _handler.homePath
  22. selectFolder: true
  23. selectMultiple: false
  24. onAccepted: {
  25. _handler.open(repoOpenDialog.fileUrl, true)
  26. }
  27. }
  28. }