mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-30 18:39:23 +00:00
42 lines
805 B
QML
42 lines
805 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 {
|
|
icon: 'video_call_accept'
|
|
visible: SettingsModel.videoSupported
|
|
|
|
onClicked: call.acceptWithVideo()
|
|
}
|
|
|
|
ActionButton {
|
|
icon: 'call_accept'
|
|
onClicked: call.accept()
|
|
}
|
|
}
|
|
|
|
ActionBar {
|
|
anchors {
|
|
right: parent.right
|
|
rightMargin: CallStyle.actionArea.rightButtonsGroupMargin
|
|
verticalCenter: parent.verticalCenter
|
|
}
|
|
iconSize: CallStyle.actionArea.iconSize
|
|
|
|
ActionButton {
|
|
icon: 'hangup'
|
|
|
|
onClicked: call.terminate()
|
|
}
|
|
}
|
|
}
|