mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-28 17:29:19 +00:00
Fix paused view : fix the state display (next to username)and show username in remote view. Add an API to get participant device count from the conference model. Reduce mosaic max size before switchçng to lesser quality (9 to 6 participants). Upgrade message banner to be more customizable on colors and icons. Hide some buttons if the conference is not ready. Fix title display if there is no elapsed time (remove the minus character).
15 lines
570 B
QML
15 lines
570 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import Units 1.0
|
|
import ColorsList 1.0
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property string sectionName: 'MessageBanner'
|
|
|
|
property string copyTextIcon : 'menu_copy_text_custom'
|
|
property color color: ColorsList.add(sectionName+'_message_banner', 'message_banner_bg', 'Background of message banner').color
|
|
property color textColor: ColorsList.add(sectionName+'_message_banner_text', 'message_banner_fg', 'Text of message banner').color
|
|
property int pointSize: Units.dp * 9
|
|
}
|