68 lines
2.2 KiB
QML
68 lines
2.2 KiB
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
import "../../imports"
|
|
import "../../shared"
|
|
|
|
ToolTip {
|
|
id: tooltip
|
|
property int maxWidth: 800
|
|
property string orientation: "top"
|
|
|
|
implicitWidth: Math.min(maxWidth, textContent.implicitWidth + Style.current.bigPadding)
|
|
leftPadding: Style.current.smallPadding
|
|
rightPadding: Style.current.smallPadding
|
|
topPadding: Style.current.smallPadding
|
|
bottomPadding: Style.current.smallPadding
|
|
delay: 200
|
|
background: Item {
|
|
id: tooltipBg
|
|
Rectangle {
|
|
id: tooltipContentBg
|
|
color: Style.current.tooltipBackgroundColor
|
|
radius: Style.current.radius
|
|
anchors.fill: parent
|
|
anchors.bottomMargin: Style.current.smallPadding
|
|
}
|
|
Rectangle {
|
|
color: tooltipContentBg.color
|
|
height: orientation === "top" || orientation === "bottom" ? 24 : 24
|
|
width: orientation === "top" || orientation === "bottom" ? 24 : 24
|
|
rotation: 45
|
|
radius: 1
|
|
x: {
|
|
if (orientation === "top" || orientation === "bottom") {
|
|
return tooltipBg.width / 2 - width / 2
|
|
}
|
|
if (orientation === "left") {
|
|
return tooltipContentBg.width - (width / 2) - 4
|
|
}
|
|
if (orientation === "right") {
|
|
return -width/2 + 4
|
|
}
|
|
}
|
|
y: {
|
|
if (orientation === "bottom") {
|
|
return -height / 2
|
|
}
|
|
if (orientation === "top") {
|
|
return tooltipBg.height - height
|
|
}
|
|
if (orientation === "left" || orientation === "right") {
|
|
return tooltipContentBg.height / 2 - (height / 2)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
contentItem: StyledText {
|
|
id: textContent
|
|
text: tooltip.text
|
|
color: Style.current.tooltipForegroundColor
|
|
wrapMode: Text.WordWrap
|
|
font.pixelSize: 13
|
|
font.weight: Font.Medium
|
|
horizontalAlignment: Text.AlignHCenter
|
|
bottomPadding: Style.current.smallPadding
|
|
}
|
|
}
|
|
|