2019-03-22 14:28:14 +11:00
|
|
|
import QtQuick 2.7
|
|
|
|
import QtQuick.Controls 2.0
|
|
|
|
|
2019-03-26 20:52:43 +11:00
|
|
|
HLabel {
|
2019-03-22 14:28:14 +11:00
|
|
|
id: text
|
|
|
|
ToolTip {
|
|
|
|
delay: Qt.styleHints.mousePressAndHoldInterval
|
|
|
|
visible: text ? toolTipZone.containsMouse : false
|
|
|
|
text: user_id
|
|
|
|
}
|
|
|
|
MouseArea {
|
|
|
|
id: toolTipZone
|
|
|
|
anchors.fill: parent
|
|
|
|
hoverEnabled: true
|
|
|
|
}
|
|
|
|
}
|