mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-18 21:58:27 +00:00
20 lines
622 B
QML
20 lines
622 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import ColorsList 1.0
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property string sectionName: 'Contact'
|
|
property int contentHeight: 32
|
|
property int height: 50
|
|
property int leftMargin: 14
|
|
property int rightMargin: 14
|
|
property int spacing: 14
|
|
|
|
property QtObject groupChat: QtObject {
|
|
property string icon: 'chat_room_custom'
|
|
property color color: ColorsList.addImageColor(sectionName+'_groupChat', icon, 'g').color
|
|
property color avatarColor: ColorsList.addImageColor(sectionName+'_groupChat_onAvatar', icon, 'q').color
|
|
}
|
|
}
|