welcome page login page login form login layout register register check + items appearance (focus/error/disable/pressed)
22 lines
No EOL
421 B
QML
22 lines
No EOL
421 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 {
|
|
text: mainItem.text
|
|
color: DefaultStyle.defaultTextColor
|
|
width: tooltipBackground.width
|
|
wrapMode: Text.Wrap
|
|
elide: Text.ElideRight
|
|
}
|
|
} |