View Single Post
Posts: 46 | Thanked: 31 times | Joined on Jun 2010 @ Lebanon
#1
Hello,

I would like to know the status of a phone call once programmatically started.

I know so far that i can start a call by:
Code:
dbus-send --system --type=method_call --print-reply --dest=com.nokia.csd.Call /com/nokia/csd/call com.nokia.csd.Call.CreateWith string:"$NUMBER" uint32:0
And i know that a call has been answered by:
Code:
bus.connect("com.nokia.csd.Call.Instance", "/com/nokia/csd/call/1", "com.nokia.csd.Call.Instance", "AudioConnect", this, SLOT(handleCall(const QDBusMessage&)))
But how do I know that the call has started and that the network is not busy or my contact isn't?

Are there more members in "com.nokia.csd.Call.Instance" other than "AudioConnect"?

Thanks