mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-22 07:28:36 +00:00
37 lines
689 B
QML
37 lines
689 B
QML
import Common 1.0
|
|
|
|
import App.Styles 1.0
|
|
|
|
// ===================================================================
|
|
|
|
AbstractStartingCall {
|
|
callTypeLabel: isVideoCall
|
|
? qsTr('incomingVideoCall')
|
|
: qsTr('incomingAudioCall')
|
|
|
|
ActionBar {
|
|
anchors.centerIn: parent
|
|
iconSize: StartingCallStyle.iconSize
|
|
|
|
ActionButton {
|
|
icon: 'video_call_accept'
|
|
}
|
|
|
|
ActionButton {
|
|
icon: 'call_accept'
|
|
}
|
|
}
|
|
|
|
ActionBar {
|
|
anchors {
|
|
verticalCenter: parent.verticalCenter
|
|
right: parent.right
|
|
rightMargin: StartingCallStyle.rightButtonsGroupMargin
|
|
}
|
|
iconSize: StartingCallStyle.iconSize
|
|
|
|
ActionButton {
|
|
icon: 'hangup'
|
|
}
|
|
}
|
|
}
|