60 lines
1.4 KiB
QML
60 lines
1.4 KiB
QML
import QtQuick 2.12
|
|
import QtQuick.Controls 2.12
|
|
import QtQuick.Layouts 1.12
|
|
|
|
ToolTip {
|
|
id: toolTip
|
|
delay: theme.controls.toolTip.delay
|
|
padding: background.border.width
|
|
|
|
|
|
property alias label: label
|
|
property alias backgroundColor: background.color
|
|
|
|
readonly property bool hideNow: ! window.hovered
|
|
|
|
onHideNowChanged: if (visible && hideNow) toolTip.hide()
|
|
|
|
|
|
background: Rectangle {
|
|
id: background
|
|
color: theme.controls.toolTip.background
|
|
border.color: theme.controls.toolTip.border
|
|
border.width: theme.controls.toolTip.borderWidth
|
|
}
|
|
|
|
contentItem: HRowLayout {
|
|
HLabel {
|
|
id: label
|
|
color: theme.controls.toolTip.text
|
|
text: toolTip.text
|
|
wrapMode: Text.Wrap
|
|
|
|
leftPadding: theme.spacing / 1.5
|
|
rightPadding: leftPadding
|
|
topPadding: theme.spacing / 2
|
|
bottomPadding: topPadding
|
|
|
|
Layout.maximumWidth: Math.min(
|
|
window.width / 1.25, theme.fontSize.normal * 0.5 * 75,
|
|
)
|
|
}
|
|
}
|
|
|
|
// FIXME: HOpacityAnimator won't work for these?
|
|
enter: Transition {
|
|
HNumberAnimation { property: "opacity"; from: 0.0; to: 1.0 }
|
|
}
|
|
exit: Transition {
|
|
HNumberAnimation { property: "opacity"; to: 0.0 }
|
|
}
|
|
|
|
TapHandler {
|
|
onTapped: toolTip.hide()
|
|
}
|
|
|
|
HoverHandler {
|
|
onHoveredChanged: if (! hovered) toolTip.hide()
|
|
}
|
|
}
|