linphone-desktop/tests/ui/views/App/Calls/StartingOutgoingCall.qml
2016-10-31 10:53:30 +01:00

51 lines
743 B
QML

import QtQuick 2.7
import QtQuick.Layouts 1.3
import Common 1.0
import Linphone 1.0
StartingCall {
avatarImage: "qrc:/imgs/cat_contact.jpg"
callType: 'OUTGOING CALL'
sipAddress: 'mister-meow@sip-linphone.org'
username: 'Mister Meow'
RowLayout {
anchors.fill: parent
spacing: 0
ActionBar {
iconSize: 40
ActionButton {
icon: 'micro'
}
ActionButton {
icon: 'speaker'
}
ActionButton {
icon: 'cam'
}
}
// TODO: Cam.
Item {
Layout.fillWidth: true
Layout.fillHeight: true
}
ActionBar {
iconSize: 40
ActionButton {
icon: 'hangup'
}
ActionButton {
icon: 'chat'
}
}
}
}