Welcome!

Welcome to the Official BlackBerry Support Community Forums. This is your resource to discuss support topics with your peers, and learn from each other. New to the forum? Please visit the ‘Getting Started’ link below.
inside custom component

Native Development

Reply
New Developer
vladest
Posts: 88
Registered: ‎06-16-2012
My Carrier: Kievstar

Re: qt components for BB10

Have you tried it with GridView?

Qt/Symbian/Meego/BB10/Cascades developer
Please use plain text.
Developer
connyhald
Posts: 101
Registered: ‎06-03-2012
My Carrier: *

Re: qt components for BB10

Not explitictly. I've using the Symbian Components Gallery demo app (the one that shows all widgets). I think it's based on ListView.

-----------
http://kodira.de
BB Apps: Pattern :: Plonk
Please use plain text.
Developer
jheron
Posts: 183
Registered: ‎01-27-2012
My Carrier: ...

Re: qt components for BB10


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

Please use plain text.