07-20-2012 10:43 AM
Have you tried it with GridView?
07-20-2012 10:48 AM
Not explitictly. I've using the Symbian Components Gallery demo app (the one that shows all widgets). I think it's based on ListView.
07-20-2012 04:18 PM
mzex wrote:
Hi jheron
You mention that QdesktopServices works out of the box for your PB for native email and browser.
I tried that and is not working on my, this
QDesktopServices::openUrl(QUrl("http://www.google.com",QUrl::TolerantMode));gives me:
"QDesktopServices::launchWebBrowser not implemented"
Can you confirm that opening url in native web browser works?
I just tried it on my pb and can comfirm it works with c++ too.
Using 4.8.2 libs downloaded from git and built on May 5th, the native email and browser both work with QDesktopServices.
Both the following 2 lines are right out of my working QWidget code:
QString mail;
mail = ("mailto:mail@mail.com?subject=" + QApplication::applicationName() + " support&body=");
QDesktopServices::openUrl(QUrl(mail));
QDesktopServices::openUrl(QUrl("http://www.google.com"));
Cheers,
Jon