22 lines
No EOL
419 B
QML
22 lines
No EOL
419 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.main2_200
|
|
radius: 15 * DefaultStyle.dp
|
|
}
|
|
contentItem: Text {
|
|
text: mainItem.text
|
|
color: DefaultStyle.main2_600
|
|
width: tooltipBackground.width
|
|
wrapMode: Text.Wrap
|
|
elide: Text.ElideRight
|
|
}
|
|
} |