Reply
Thread Tools
Posts: 49 | Thanked: 7 times | Joined on Apr 2010
#61
This SDK is very good news... just downloaded now and have leaked pr 1.2 installed... all app examples and everything work fine... they have a lot of good coding examples even one for a torrent downloader...very interesting.
Should be better though as it will help more of the beginner developers like myself get up to speed with creating decent applications for the n900.
 

The Following User Says Thank You to s15mos For This Useful Post:
Posts: 12 | Thanked: 12 times | Joined on Apr 2010 @ Berlin
#62
@postformac:
We're working on fixing those issues, especially for removing everything completely when you deinstall a component.
 

The Following 3 Users Say Thank You to mauricek For This Useful Post:
Posts: 12 | Thanked: 12 times | Joined on Apr 2010 @ Berlin
#63
For those who were wondering about the Hildon style. The Qt Simulator does not have support for it due to the reason, that the style itself queries other libraries for stylehints etc. As we had needed to port all of those as well, this was considered to be too heavy then.
 

The Following User Says Thank You to mauricek For This Useful Post:
pelago's Avatar
Posts: 2,121 | Thanked: 1,540 times | Joined on Mar 2008 @ Oxford, UK
#64
Originally Posted by mauricek View Post
this was considered to be too heavy then.
Thanks. Does that mean the additional libs may be ported in a future version?
 
Posts: 24 | Thanked: 12 times | Joined on Mar 2010
#65
Originally Posted by mauricek View Post
@postformac:
We're working on fixing those issues, especially for removing everything completely when you deinstall a component.
Yes I realise it is a known issue and there are instructions in the wiki to get round it as in the link I posted before. Following the instructions works fine so its not a problem, I was just mentioning it incase anyone else has the same issue and doesn't know how to solve it.
 
zwer's Avatar
Posts: 455 | Thanked: 782 times | Joined on Nov 2009 @ Netherlands
#66
Truly applaudable work, it renders my previous attempts to seamlessly merge MADDE and Qt Creator obsolete.

However, I have a small issue to report - a full install from the offline package on Win7 takes bloody ages - I think it took almost an hour to install on my everything-but-weak computer. Given that I've installed it on quite snappy WD Caviar Black and there was no other process accessing that HD or using other resources, and that it only weights 4.55GB an hour to install is a bit too much even tho it had to write tons of files / folders. I can only hope that further versions will be able to upgrade the beta.
__________________
Man will never be free until the last king is strangled with the entrails of the last priest.
 
Posts: 12 | Thanked: 12 times | Joined on Apr 2010 @ Berlin
#67
@pelago: As we have stated we are currently setting up the repositories, so that everybody has access to the code. We're looking forward to contributions as well

@zwer: Actually we have provided the first updates today, though they are not that big. However, they do contain some fixes for the updater and the maintenance tool. This show, that you can keep your installation for some time and should be able to upgrade it then. However, we cannot guarantee that there will be no point in time, where we might require a full reinstallation as this is still in beta phasis.
 

The Following 3 Users Say Thank You to mauricek For This Useful Post:
Posts: 434 | Thanked: 325 times | Joined on Sep 2009
#68
This is really a great thing!

But am I to understand that Qt::Wa_Maemo5 stuff won't work in the Qt Simulator? I get the following error:

WA_Maemo5PortraitOrientation is not a member of 'Qt'
 
Posts: 12 | Thanked: 12 times | Joined on Apr 2010 @ Berlin
#69
@Sasler,

that is true. If you have a look at qnamespace.h you will see the following:

Code:
#if 0 // these values are reserved for Maemo5 - do not re-use them
        WA_Maemo5NonComposited = 126,
        WA_Maemo5StackedWindow = 127,
        WA_Maemo5PortraitOrientation = 128,
        WA_Maemo5LandscapeOrientation = 129,
        WA_Maemo5AutoOrientation = 130,
        WA_Maemo5ShowProgressIndicator = 131,
#endif
which means that they are only available, when you compile for the Maemo platform. Hence your source would need to like similar to

Code:
#if defined(Q_WS_MAEMO_5)
    w.setAttribute(Qt::WA_Maemo5PortraitOrientation, true);
#endif
 

The Following User Says Thank You to mauricek For This Useful Post:
Posts: 385 | Thanked: 426 times | Joined on Dec 2009 @ Gothenburg, Sweden
#70
Originally Posted by mauricek View Post
For those who were wondering about the Hildon style. The Qt Simulator does not have support for it due to the reason, that the style itself queries other libraries for stylehints etc. As we had needed to port all of those as well, this was considered to be too heavy then.
Ok, fully understandable. But do you think maybe there'll be any efforts in making this work? I mean, for testing whether applications has the correct UI appearance, it would only make sense now to test those things on the actual target.
 
Reply

Thread Tools

 
Forum Jump


All times are GMT. The time now is 07:35.