Hi,

Please refer to meego-handset-people application's source code.
MeeGo use DBus to launch another application.

meego-handset-people-0.2.30/src/peopleapp.cpp
532 void PeopleApplication::callNumberToActiveService(const QString& number){
533
534   // hard-coded details of the MeeGo Dialer application
535   QDBusInterface dialer("com.meego.dialer", "com/meego/dialer",
536                         "com.meego.dialer");
537   if (!dialer.isValid()) {
538     qWarning() << "Dialing" << number << "- could not find dialer app";
539     return;
540   }
541
542   QDBusReply<void> reply = dialer.call(QDBus::BlockWithGui, "call", number);
543   if (!reply.isValid())
544     qWarning() << "Dialing" << number << "failed:" <<
545       reply.error().message();
546 }

On Mon, Feb 14, 2011 at 10:50 AM, Wang Changzhi <[email protected]> wrote:
> Hi list,
> I want to make a phone call to a specific number from my app. But I don't
> found any API from QT.
> Do you known the API to launch Calling app?
> Thanks!
>
>
> _______________________________________________
> MeeGo-dev mailing list
> [email protected]
> http://lists.meego.com/listinfo/meego-dev
>
>
_______________________________________________
MeeGo-dev mailing list
[email protected]
http://lists.meego.com/listinfo/meego-dev

Reply via email to