2019-07-13 08:02:14 +10:00
|
|
|
import QtQuick 2.12
|
2019-07-13 19:39:01 +10:00
|
|
|
import QtQuick.Controls 2.12
|
2019-07-10 12:51:52 +10:00
|
|
|
|
|
|
|
ToolTip {
|
2019-07-10 13:42:03 +10:00
|
|
|
// Be sure to have a width and height set, to prevent the tooltip from
|
|
|
|
// going out of the window's boundaries
|
|
|
|
|
|
|
|
id: toolTip
|
2019-07-16 06:14:08 +10:00
|
|
|
delay: 150
|
2019-07-10 13:42:03 +10:00
|
|
|
padding: 0
|
2019-07-10 12:51:52 +10:00
|
|
|
|
|
|
|
enter: Transition {
|
|
|
|
HNumberAnimation { property: "opacity"; from: 0.0; to: 1.0 }
|
|
|
|
}
|
|
|
|
exit: Transition {
|
|
|
|
HNumberAnimation { property: "opacity"; from: 1.0; to: 0.0 }
|
|
|
|
}
|
2019-07-10 13:49:59 +10:00
|
|
|
|
2019-07-13 08:02:14 +10:00
|
|
|
TapHandler {
|
|
|
|
onTapped: { toolTip.hide() }
|
2019-07-10 13:49:59 +10:00
|
|
|
}
|
2019-07-25 05:58:43 +10:00
|
|
|
|
|
|
|
HoverHandler {
|
|
|
|
onHoveredChanged: if (!hovered) { toolTip.hide() }
|
|
|
|
}
|
2019-07-10 12:51:52 +10:00
|
|
|
}
|