StartingOutgoingCall.qml 743 Bytes
Newer Older
1
import QtQuick 2.7
2
import QtQuick.Layouts 1.3
3

4
import Common 1.0
5
import Linphone 1.0
6

7 8 9 10 11
StartingCall {
  avatarImage: "qrc:/imgs/cat_contact.jpg"
  callType: 'OUTGOING CALL'
  sipAddress: 'mister-meow@sip-linphone.org'
  username: 'Mister Meow'
12

13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
  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'
      }
    }
  }
51
}