DevelopersBlock.qml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. import QtQuick 2.15
  2. import DMusic 1.0
  3. import QtQuick.Layouts 1.15
  4. import ".."
  5. import "../../components"
  6. SettingsBlock {
  7. title: qsTr("Developers")
  8. Layout.fillWidth: true
  9. ColumnLayout {
  10. spacing: 15
  11. Layout.maximumWidth: 250
  12. ColumnLayout {
  13. Layout.alignment: Qt.AlignHCenter
  14. spacing: 5
  15. Row {
  16. Layout.alignment: Qt.AlignHCenter
  17. DText {
  18. text: qsTr("levovix")
  19. MouseArea {
  20. anchors.fill: parent
  21. cursorShape: Qt.PointingHandCursor
  22. onClicked: Qt.openUrlExternally("https://github.com/levovix0")
  23. }
  24. }
  25. DText {
  26. text: qsTr(" - code, design")
  27. }
  28. }
  29. Row {
  30. Layout.alignment: Qt.AlignHCenter
  31. DText {
  32. text: qsTr("LightFly")
  33. MouseArea {
  34. anchors.fill: parent
  35. cursorShape: Qt.PointingHandCursor
  36. onClicked: Qt.openUrlExternally("https://www.youtube.com/c/LightFlyzzz")
  37. }
  38. }
  39. DText {
  40. text: qsTr(" - design, code")
  41. }
  42. }
  43. Row {
  44. Layout.alignment: Qt.AlignHCenter
  45. DText {
  46. text: qsTr("Elidder")
  47. }
  48. DText {
  49. text: qsTr(" - design")
  50. }
  51. }
  52. }
  53. RowLayout {
  54. Layout.alignment: Qt.AlignHCenter
  55. spacing: 7
  56. Icon {
  57. Layout.alignment: Qt.AlignVCenter
  58. width: 16
  59. height: 16
  60. src: "qrc:/resources/settings/GitHub.svg"
  61. MouseArea {
  62. anchors.fill: parent
  63. cursorShape: Qt.PointingHandCursor
  64. onClicked: Qt.openUrlExternally("https://github.com/levovix0/DMusic")
  65. }
  66. }
  67. DText {
  68. Layout.alignment: Qt.AlignVCenter
  69. text: qsTr("GitHub")
  70. MouseArea {
  71. anchors.fill: parent
  72. cursorShape: Qt.PointingHandCursor
  73. onClicked: Qt.openUrlExternally("https://github.com/levovix0/DMusic")
  74. }
  75. }
  76. }
  77. }
  78. }