mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-26 16:28:11 +00:00
- Add a volume viewer for capture in media settings. - Fix volumes synchronization between all settings panels. - Allowing the use of capture graph from any place. - Toggle button for Settings when menu is open.
39 lines
1.2 KiB
QML
39 lines
1.2 KiB
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
import ColorsList 1.0
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property string sectionName: 'MultimediaParamsDialog'
|
|
property int height: 312
|
|
property int width: 450
|
|
|
|
property QtObject column: QtObject {
|
|
property int spacing: 15
|
|
|
|
property QtObject entry: QtObject {
|
|
property int iconSize: 24
|
|
property int spacing: 10
|
|
property int spacing2: 5
|
|
property QtObject speaker: QtObject {
|
|
property int iconSize: 30
|
|
property string icon : 'speaker_on_custom'
|
|
property string name : 'speaker'
|
|
property color color : ColorsList.addImageColor(sectionName+'_'+name, icon, 'g').color
|
|
}
|
|
property QtObject micro: QtObject {
|
|
property int iconSize: 30
|
|
property string icon : 'micro_on_custom'
|
|
property string name : 'micro'
|
|
property color color : ColorsList.addImageColor(sectionName+'_'+name, icon, 'g').color
|
|
}
|
|
property QtObject camera: QtObject {
|
|
property int iconSize: 30
|
|
property string icon : 'camera_on_custom'
|
|
property string name : 'camera'
|
|
property color color : ColorsList.addImageColor(sectionName+'_'+name, icon, 'g').color
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|