mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-20 21:28:07 +00:00
18 lines
424 B
QML
18 lines
424 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import Units 1.0
|
|
import ColorsList 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property string sectionName: 'ParticipantsView'
|
|
property QtObject entry: QtObject {
|
|
|
|
property QtObject status: QtObject {
|
|
property var colorModel : ColorsList.add(sectionName+'_entry_status', 'g')
|
|
property int pointSize : Units.dp * 8
|
|
}
|
|
}
|
|
}
|