mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-20 19:08:30 +00:00
47 lines
941 B
QML
47 lines
941 B
QML
import QtQuick 2.7
|
|
|
|
import Common 1.0
|
|
import Linphone 1.0
|
|
|
|
import App.Styles 1.0
|
|
|
|
// =============================================================================
|
|
|
|
AbstractStartingCall {
|
|
ActionBar {
|
|
anchors.centerIn: parent
|
|
iconSize: CallStyle.actionArea.iconSize
|
|
|
|
ActionButton {
|
|
isCustom: true
|
|
backgroundRadius: 90
|
|
colorSet: CallStyle.buttons.acceptVideoCall
|
|
visible: SettingsModel.videoSupported
|
|
onClicked: call.acceptWithVideo()
|
|
}
|
|
|
|
ActionButton {
|
|
isCustom: true
|
|
backgroundRadius: 90
|
|
colorSet: CallStyle.buttons.acceptCall
|
|
onClicked: call.accept()
|
|
}
|
|
}
|
|
|
|
ActionBar {
|
|
anchors {
|
|
right: parent.right
|
|
rightMargin: CallStyle.actionArea.rightButtonsGroupMargin
|
|
verticalCenter: parent.verticalCenter
|
|
}
|
|
iconSize: CallStyle.actionArea.iconSize
|
|
|
|
ActionButton {
|
|
isCustom: true
|
|
backgroundRadius: 90
|
|
colorSet: CallStyle.buttons.hangup
|
|
|
|
onClicked: call.terminate()
|
|
}
|
|
}
|
|
}
|