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