mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-27 16:59:21 +00:00
* 'Ctrl+Shift+W' (or V): accept with video the last incoming call.
* 'Ctrl+Shift+A': accept without video the last incoming call.
* 'Ctrl+Shift+D': terminate the last call.
* 'Ctrl+Shift+E': Enable/disable echo cancellation.
* 'Ctrl+Shift+L': Unmute/Mute speaker.
* 'Ctrl+Shift+M': Unmute/Mute microphone.
- Request application focus when hovering a call notification.
- Forbid to calibrate echo cancellation while being in call because it is not supported.
23 lines
624 B
QML
23 lines
624 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import ColorsList 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property string sectionName: 'Notification'
|
|
property var colorModel: ColorsList.add(sectionName, 'k')
|
|
property int height: 120
|
|
property int iconSize: 40
|
|
property int width: 300
|
|
|
|
property QtObject border: QtObject {
|
|
property var colorModel: ColorsList.add(sectionName+'_border', 'n')
|
|
property int width: 1
|
|
}
|
|
property QtObject selectedBorder: QtObject {
|
|
property var colorModel: ColorsList.add(sectionName+'_selected_border', 'i')
|
|
property int width: 1
|
|
}
|
|
}
|