mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-27 00:48:08 +00:00
- List conferences - Call conference (only from conference list) - Prepare Mozaic layout (not yet link to conference)
16 lines
548 B
QML
16 lines
548 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import Units 1.0
|
|
import ColorsList 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property string sectionName : 'TimePicker'
|
|
property color hoursColor: ColorsList.add(sectionName+'_hours', 'i').color
|
|
property color minutesColor: ColorsList.add(sectionName+'_minutes', 's').color
|
|
property color selectedItemColor: ColorsList.add(sectionName+'_selected', 'l').color
|
|
property color unselectedItemColor: ColorsList.add(sectionName+'_unselected', 'g').color
|
|
|
|
}
|