20 lines
428 B
QML
20 lines
428 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import "." as M
|
|
|
|
Text {
|
|
property string label: ""
|
|
property string tooltip: ""
|
|
|
|
text: label
|
|
color: M.Theme.base05
|
|
font.pixelSize: M.Theme.fontSize
|
|
font.family: M.Theme.fontFamily
|
|
verticalAlignment: Text.AlignVCenter
|
|
|
|
HoverHandler { id: _hover }
|
|
M.BarTooltip {
|
|
visible: _hover.hovered && parent.tooltip !== ""
|
|
text: parent.tooltip
|
|
}
|
|
}
|