melawy-plasma-plasmoid-pres.../com.github.zren.presentwindows/contents/ui/lib/LinkText.qml

14 lines
385 B
QML

import QtQuick 2.0
import QtQuick.Controls 1.0
import org.kde.plasma.core 2.0 as PlasmaCore
Label {
linkColor: PlasmaCore.ColorScope.highlightColor
onLinkActivated: Qt.openUrlExternally(link)
MouseArea {
anchors.fill: parent
acceptedButtons: Qt.NoButton // we don't want to eat clicks on the Text
cursorShape: parent.hoveredLink ? Qt.PointingHandCursor : Qt.ArrowCursor
}
}