Hello,
the title actually says what I want.
Is there a method on how to do so with C++ ?
I have already seen the other threads about it which are too complex for me.
I need some basic about it.
Thanks
Hello,
the title actually says what I want.
Is there a method on how to do so with C++ ?
I have already seen the other threads about it which are too complex for me.
I need some basic about it.
Thanks
Last edited by pascal95abc; 2012-04-25 at 14:57.
Hello pascal95abc
I am not sure how you can do that in Qt but in symbian c++ you can try following this wiki article http://www.developer.nokia.com/Commu..._on_a_phone%3F and than you can integrate that with your Qt code.
Cheers !!
Gargi
added f32file.h and apgcli.h already
I get errors
undefined reference to `RApaLsSession::RApaLsSession()'
linking errors? how to solve?
Basically make sure you also inluded all required librariy includes in your pro file
feel free to check the API docs for the API: http://library.developer.nokia.com/i...5544DE2BA.html
Hi,
Try adding the following header in your application cpp/.h file and the following libs in your pro file and check it out
#include <apgcli.h>
apgrfx.lib apparc.lib
Same linking errors : undefined reference to `RApaLsSession::RApaLsSession()' and the others
And how did you add the libraries ? you could also try cleaning the project and rebuilding it.
I added them with LIBS+= in my pro file, was this wrong ?
And thank you for your help, I really appreciate this![]()
Can you copy paste the actual lines writtent o your pro file ?
BTW:LIBS += apgrfx.lib apparc.lib
I just found the path to the files
C:\QtSDK\Symbian\SDKs\Symbian1Qt473\epoc32\release\armv5\lib\
Last edited by pascal95abc; 2012-04-29 at 21:29. Reason: added information
I am so happy that it worked now!
Here is how I have done it:
- Don't change the pro file, Qt Creator offers possibilites to make these changes to your pro file automatically and properly!
- right click on the project bold text on the left side called "projects"
- click "add library" (now I know what it is for)
- extern library
- for me it was in QtSDK/Symbian/SDKs/Symbian1Qt473/epoc32/release/armv5/lib
- and i needed these THREE files:
apgrfx, apparc, efsrv
- check symbian and finished
For those interested here is the important part of the pro file:
Code:symbian: LIBS += -lapgrfx symbian: LIBS += -lapparc symbian: LIBS += -lefsrv INCLUDEPATH += $$PWD/../../../../Symbian/SDKs/Symbian1Qt473/epoc32/release/armv5 DEPENDPATH += $$PWD/../../../../Symbian/SDKs/Symbian1Qt473/epoc32/release/armv5
Thanks and bye