mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-24 23:28:09 +00:00
28 lines
529 B
QML
28 lines
529 B
QML
import QtQuick 2.7
|
|
|
|
// =============================================================================
|
|
|
|
MouseArea {
|
|
property alias text: tooltip.text
|
|
property var tooltipParent: this
|
|
|
|
property bool _visible: false
|
|
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
scrollGestureEnabled: true
|
|
|
|
onContainsMouseChanged: _visible = containsMouse
|
|
onPressed: mouse.accepted = false
|
|
onWheel: {
|
|
_visible = false
|
|
wheel.accepted = false
|
|
}
|
|
|
|
Tooltip {
|
|
id: tooltip
|
|
|
|
parent: tooltipParent
|
|
visible: _visible
|
|
}
|
|
}
|