remove friend listener fix call history layout (sometimes the details exceeded row bottom) do not open terminate calls popup when all call ended already change '.' with ' ' only if display name is the address initials headers in contact list delegate confirmation dialog delete history use intermediate variable try to fix variant object crash ) recordable option fix effect image not colorized on visible change
36 lines
796 B
QML
36 lines
796 B
QML
import QtQuick
|
|
import QtQuick.Controls as Control
|
|
import QtQuick.Effects
|
|
import Linphone
|
|
|
|
Control.Popup{
|
|
id: mainItem
|
|
padding: 0
|
|
property color underlineColor
|
|
property int radius: 16 * DefaultStyle.dp
|
|
background: Item{
|
|
Rectangle {
|
|
visible: mainItem.underlineColor != undefined
|
|
width: mainItem.width
|
|
height: mainItem.height + 2 * DefaultStyle.dp
|
|
color: mainItem.underlineColor
|
|
radius: mainItem.radius
|
|
}
|
|
Rectangle{
|
|
id: backgroundItem
|
|
width: mainItem.width
|
|
height: mainItem.height
|
|
radius: mainItem.radius
|
|
color: DefaultStyle.grey_0
|
|
border.color: DefaultStyle.grey_0
|
|
}
|
|
MultiEffect {
|
|
anchors.fill: backgroundItem
|
|
source: backgroundItem
|
|
shadowEnabled: true
|
|
shadowColor: DefaultStyle.grey_900
|
|
shadowBlur: 1.0
|
|
shadowOpacity: 0.1
|
|
}
|
|
}
|
|
}
|