Mobile extensions problems in Qt mobile app
-
my objective is to make a simple telephone call from Qt app. as telephony extension is not provided with Qt mobility. so i used old Qt moblie extension package(mobile extension preview 3). Now problem is that i don't have Required symbian Libs.
.pro file is as under
@#-------------------------------------------------Project created by QtCreator 2010-12-31T11:59:14
#-------------------------------------------------
QT += core gui
TARGET = musicApp
TEMPLATE = appSOURCES += main.cpp
mainwindow.cpp
telephony/xqtelephony.cpp
telephony/ctelephonymonitor.cpp
telephony/ccalldialer.cpp
telephony/xqtelephony_p.cppHEADERS += mainwindow.h
telephony/xqtelephony.h
telephony/telephony_global.h
telephony/ctelephonymonitor.h
telephony/ccalldialer.h
telephony/xqtelephony_p.hFORMS += mainwindow.ui
CONFIG += mobility
MOBILITY =symbian {
TARGET.UID3 = 0xe9694094
TARGET.CAPABILITY += NetworkServices/
ReadUserData/
WriteUserData
LIBS += -letel3rdparty
-lcntmodel
-lbafl
-lefsrv
-lestor
-lexiflib.dll
TARGET.EPOCSTACKSIZE = 0x14000
TARGET.EPOCHEAPSIZE = 0x020000 0x800000
}
@
*
-letel3rdparty
-lcntmodel
-lbafl
-lefsrv
-lestor
-lexiflib.dll*these libs are not available
rest of my project is quit simple i am just using these to statements to make a call
@ XQTelephony *telephone = new XQTelephony(this);
telephone->call(ui->lineEdit->text());@
anybody have an idea, whats the problem.And is there some otherway to make a call from qt app.
thanks. -
where can we get "XQTelephony" lib?
-
Using the old Qt Mobile extension package won't help you as your device might already have an updated version.
-
then what should i do to make a call from a qt mobile app, any suggestion, any link or example or anything that might help. i am not asking for some sample code i am just asking for a direction. i can not bear with the idea that one can make call on from nokia device using J2ME application which run on JVM. but not using qt app which is intended for nokia devices.
-
[quote author="hasnain" date="1294405096"]then what should i do to make a call from a qt mobile app, any suggestion, any link or example or anything that might help. i am not asking for some sample code i am just asking for a direction. i can not bear with the idea that one can make call on from nokia device using J2ME application which run on JVM. but not using qt app which is intended for nokia devices. [/quote]
At this stage, you can make use of symbian native platform APIs for making call and other such telephony API requirements.