linux.x86.linphone/Linphone/view/Item/ToolTip.qml
Gaelle Braud 99b1fb9bde Test file for qml items :
Text
ComboBox
TextInput
Button
TabBar
Tooltip
Carousel
+ fixes on this items
2023-11-02 17:26:47 +01:00

22 lines
No EOL
466 B
QML

import QtQuick 2.7
import QtQuick.Controls as Control
import Linphone
Control.ToolTip {
id: mainItem
delay: 1000
clip: true
background: Rectangle {
id: tooltipBackground
opacity: 0.7
color: DefaultStyle.tooltipBackgroundColor
radius: 15
}
contentItem: Text {
textItem.text: mainItem.text
textItem.color: DefaultStyle.defaultTextColor
textItem.width: tooltipBackground.width
textItem.wrapMode: Text.Wrap
textItem.elide: Text.ElideRight
}
}