1
0
Fork 0
flightgear/src/GUI/qml/ClickableText.qml

20 lines
362 B
QML
Raw Normal View History

import QtQuick 2.4
import "."
Text {
signal clicked();
2018-03-11 11:49:38 +00:00
property color baseTextColor: Style.baseTextColor
color: mouse.containsMouse ? Style.themeColor : baseTextColor
MouseArea {
id: mouse
hoverEnabled: true
anchors.fill: parent
onClicked: parent.clicked();
2018-03-11 11:49:38 +00:00
cursorShape: Qt.PointingHandCursor
}
}