23 lines
416 B
QML
23 lines
416 B
QML
import QtQuick 2.12
|
|
import QtQuick.Controls 2.12
|
|
|
|
import Utils 1.0
|
|
|
|
Label {
|
|
id: control
|
|
color: Palette.selectedTextColor
|
|
font.pixelSize: 18
|
|
font.weight: Font.Medium
|
|
font.underline : true
|
|
elide: Text.ElideRight
|
|
|
|
signal clicked()
|
|
|
|
MouseArea{
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
cursorShape: Qt.PointingHandCursor
|
|
onClicked: control.clicked()
|
|
}
|
|
}
|