LinkText.qml 269 B

123456789101112131415161718
  1. import QtQuick 2.15
  2. DText {
  3. id: root
  4. property url url
  5. font.underline: _mouse.containsMouse
  6. MouseArea {
  7. id: _mouse
  8. anchors.fill: parent
  9. hoverEnabled: true
  10. cursorShape: Qt.PointingHandCursor
  11. onClicked: Qt.openUrlExternally(root.url)
  12. }
  13. }