Is there any intention in the future to provide an FM radio API for S60?
This looks promising:
http://doc.trolltech.com/qtmobility-1.0-tp/qradiotunercontrol.html
...but I'm not sure what's...
Type: Posts; User: samdutton; Keyword(s):
Is there any intention in the future to provide an FM radio API for S60?
This looks promising:
http://doc.trolltech.com/qtmobility-1.0-tp/qradiotunercontrol.html
...but I'm not sure what's...
Thanks Itomuta.
I managed to get 4.5.2 working again, though not without reinstalling it and restarting twice.
4.5.2-tower is currently available here:...
Answered my own question: 4.5.2-tower can be found here:
http://pepper.troll.no/s60prereleases/packages/
Sam
I installed 4.5.2-tower and subsquently 4.6.0-beta. I'm having some problems with 4.6.0-beta, so now I'd like to go back temporarily to 4.5.2-tower.
I've tried setting Qt Properties from the...
...and to go back to the OP: does anyone know where to find 4.5.2?
I can't find it here or anywhere else.
Sam
I agree with Enrico and the other comments: some things* don't work in my app with 4.6.0-beta and so I want to reinstall 4.5.2, but it's not available.
Choosing 4.5.2 as the Qt version in Carbide...
Thanks -- that worked.
By the way, I had to include the libraries like this:
-leikcore \
-lcone
Only problem now is that the status pane won't hide! Not sure what's going wrong...
You can see the error text in the console window, for example when you save your .pro file without the TARGET.UID3 value. (No detail is given in the Problems tab.)
You need to add something like...
I get the following error in 4.6.0 beta:
Undefined symbol: 'class CCoeEnv * CCoeEnv::Static(void)
Linked fine in 4.5.2-tower.
Not sure what I should be including.
My code looks like...
I'm trying to incorporate the video player example into a Qt project. In other words, I'd like to display the video in a QWidget.
I've managed to build the example as a standalone Symbian project...
The Qt form extractor example does pretty much what you want:
- in a javaScriptWindowObjectCleared() slot, FormExtractor calls addToJavaScriptWindowObject("formExtractor", this) to make...
One possibility: I think the form onsubmit handler in the page should return false.
Can you get a minimal example to work?
Given that a submit button isn't a link, can you get a button to...
I was wondering the same thing...
I guess the only way would be to run an app that simply creates lots of QNetworkManager objects and measure measure memory usage, then do the same for QHttp. (I...
Not yet.
To quote from the Qt Labs Blog:
Not quite sure what you mean: both support HTTPS.
With QHttp use ConnectionMode QHttp::ConnectionModeHttps.
With QNetworkAccessManager use https:// in the QNetworkRequest URL.
I think this...
QT += core
gui
network
should be...
I've tried the suggestion below, but I'm still not clear how to do this. Does anyone have a complete, working example?
I added CMediaEngine and CMediaContainer to my project, as per the...
I'm getting a warning with my Qt S60 application, which (successfully) uses QNetworkManager to make HTTP requests:
I can see the warning by calling QErrorMessage::qtHandler() in the emulator....
Also, as well as setting your default internet access point via the Mobile Extensions API (or whatever), you may need to change your phone settings as per jvuori's suggestion in this thread:
...
Hi jvuori
Bingo! That worked.
Thanks very much.
Guess I better learn to use the phone before writing code for it :^).
There isn't an error message when I run the Flickr demo -- it just keeps asking me to select a connection.
When I install the application, I get the following message greyed-out in the background,...
Take a look at the Mobile Extensions Flickr demo.
The Options menu has an Actions item at the bottom (which doesn't seem to do anything).
Here is the code:
void FlickrDemo::createMenus()...
Hi jvuori
Yes -- I'd already installed these.
I tried reinstalling, just in case, but that didn't help.
These are the packages I'm installing onto the phone:
Hi rahulvala
Thanks for the links.
I know how to add menus -- what I'm asking is why there is an item labelled Actions at the bottom of the Options softkey menu, e.g. in the Qt Flickr demo.
...
I'm using menuBar()->addAction to add items to the Options menu.
I've noticed that there is an item at the bottom of the menu labelled Actions.
Likewise in some Qt demos.
Not sure why it's...