I see. So the only mobile platform in the future with some kind of official support for Qt will be BB10...
There's ONE problem in Nokia and it's not the 10.000 people recently fired.
Type: Posts; User: Sheenmue; Keyword(s):
I see. So the only mobile platform in the future with some kind of official support for Qt will be BB10...
There's ONE problem in Nokia and it's not the 10.000 people recently fired.
I'll ask the obvious question after the announcement of native code support in WP8, will Qt be available to develop for WP8?
I guess even if there's nothing official there will be a community...
Not sure if it's a general problem or this is only happening to me but reports in my account are now in Chinese. The rest of the publisher site is in English as always but reports section is in...
I'll try that. In fact, that was the way I made it originally when I developed the app for Symbian but prescaling the image with QImageReader before saving it into a QPixmap was a big impact on...
In my code I have to download images from internet -these images may have any size or format- and then I have to scale them and cut them properly. I'm using QImageReader to do it but in Harmattan...
Thanks. Definetely, making a port for N9 is a little bizarre :)
I downloaded that code and tested it in simulator -without replacing the default widget app with my own- and even if it's suppossed to have auto-rotation it doesn't work, it's in landscape mode only....
You can select "European Union", but it's weird as other EU countries appear in the list. Also, it says there are 10 prizes per category but it's only announced the 50.000 € prize for the 1st in each...
Hi, I have built an xml parser and I have a problem. I cannot control the content with which the xml parser works and there are some xml documents that in tags like <content> have html tags elements,...
Yes, the same happens to me. I hadn't even planned a homescreen widget for future releases, but since my app was published one week ago the most common request has been a homescreen widget. I myself...
Has somebody been able to make it work with Qt 4.7 or I should forget about creating a homescreen widget with the app?
For that string "01 May 2011 10:00" you should use something like this:
QDateTime dateTime2 = QDateTime::fromString("01 May 2011 10:00", "dd'MMM'yyyy'hh:mm");
But this only would work if user...
I've a problem with QNetworkAccessManager in my application: sometimes connection is lost and it's impossible to reconnect. It's hard to identify where is exactly the problem as I'm using...
Thanks, as I have to scale down most of the images prescaling them with qimagereader before calling QImageReader::read() method has been a BIG improvement. I also must say I was wrong, moving the...
Hi, I'm trying to download images from internet, then scale them and finally draw in my application, but there's a little bottleneck when the image is loaded with the method loadFromData. The code is...