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
24 lines
618 B
QML
24 lines
618 B
QML
import QtQuick 2.7
|
|
import QtQuick.Controls 2.2 as Control
|
|
import Linphone
|
|
|
|
Control.CheckBox {
|
|
id: mainItem
|
|
|
|
indicator: Rectangle {
|
|
implicitWidth: 20 * DefaultStyle.dp
|
|
implicitHeight: 20 * DefaultStyle.dp
|
|
x: (parent.width - width) / 2
|
|
y: (parent.height - height) / 2
|
|
radius: 3 * DefaultStyle.dp
|
|
border.color: DefaultStyle.main1_500_main
|
|
border.width: 2 * DefaultStyle.dp
|
|
// color: mainItem.checked ? DefaultStyle.main1_500_main : "transparent"
|
|
EffectImage {
|
|
visible: mainItem.checked
|
|
source: AppIcons.check
|
|
colorizationColor: DefaultStyle.main1_500_main
|
|
anchors.fill: parent
|
|
}
|
|
}
|
|
}
|