mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-18 21:58:27 +00:00
20 lines
522 B
QML
20 lines
522 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import Units 1.0
|
|
import ColorsList 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property string sectionName: 'Avatar'
|
|
property color backgroundColor: ColorsList.add(sectionName+'_bg', 'd').color
|
|
|
|
property string personImage : 'contact_custom'
|
|
|
|
property QtObject initials: QtObject {
|
|
property color color: ColorsList.add(sectionName+'_initials', 'q').color
|
|
property int pointSize: Units.dp * 10
|
|
property int ratio: 30
|
|
}
|
|
}
|