Hi,
If I need to run the Symbian Music Player from my Qt Application.
What should i do ?
Please show me the right direction.
Thanks in Advance,
Sachin
Hi,
If I need to run the Symbian Music Player from my Qt Application.
What should i do ?
Please show me the right direction.
Thanks in Advance,
Sachin
AFAIK there is no API available to launch other application from Qt S60, not even in Mobile Extensions API. You could try it by using Symbian API(RApaLsSession), if you know Symbian C++.
Check if QProcess::start() will help you in anyway.
If you have file what you want to play/open, check also QDesktopServices API. QDesktopServices:penUrl launches native application associated to given file. The file name can be passed as URL as follows: QUrl("file:///c:/data/images/image.bmp"). Works also for audio files.
hi Sachin Tikare,
Yes, Savaj is right! The following code starts, for example, the Camera application for 5.0:
QProcess* process;
QString program = "CameraApp.exe";
process->start(program);
you can check out this example for more details:
http://www.forum.nokia.com/info/sw.n...r_Example.html
Cheers!
Ohh, i forgot to mention that i already created article for that.
Anyway, for reference to others, check this article.
http://wiki.forum.nokia.com/index.ph...alPlayer_in_Qt