blob: fc8a5512367426f9a61d887bfa73f712e42a9be7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
import QtQuick
import QtQuick.Controls.impl
import QtQuick.Templates as T
T.ToolTip {
id: control
x: parent ? (parent.width - implicitWidth) / 2 : 0
y: -implicitHeight
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
contentWidth + leftPadding + rightPadding)
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
contentHeight + topPadding + bottomPadding)
readonly property var config: Config.controls.tooltip["normal"] || {}
topPadding: config.topPadding || 0
bottomPadding: config.bottomPadding || 0
leftPadding: config.leftPadding || 0
rightPadding: config.rightPadding || 0
topInset: -config.topInset || 0
bottomInset: -config.bottomInset || 0
leftInset: -config.leftInset || 0
rightInset: -config.rightInset || 0
closePolicy: T.Popup.CloseOnEscape | T.Popup.CloseOnPressOutsideParent | T.Popup.CloseOnReleaseOutsideParent
contentItem: Text {
text: control.text
font: control.font
wrapMode: Text.Wrap
color: control.palette.toolTipText
horizontalAlignment: control.config.label.textHAlignment
verticalAlignment: control.config.label.textVAlignment
}
background: StyleImage {
imageConfig: control.config.background
}
}
|