![]() |
2013-01-15
, 21:58
|
Posts: 40 |
Thanked: 265 times |
Joined on Aug 2007
|
#111
|
![]() |
2013-01-15
, 21:59
|
|
Posts: 6,436 |
Thanked: 12,701 times |
Joined on Nov 2011
@ Ängelholm, Sweden
|
#112
|
The Following 3 Users Say Thank You to coderus For This Useful Post: | ||
![]() |
2013-01-15
, 21:59
|
Posts: 3,074 |
Thanked: 12,964 times |
Joined on Mar 2010
@ Sofia,Bulgaria
|
#113
|
Current version is should be working pretty much anywhere...
At least I'm keeping it running on normal desktop Qt4.8.
Also build which I'm posting for N9 is not using meegotouch or any harmattan stuff...
https://github.com/romaxa/mozilla-ce...config.qtN9-qt
SW rendering should just work on Fremantle... EGL probably need some hooks around EGL drivers bugs.
The Following 3 Users Say Thank You to freemangordon For This Useful Post: | ||
![]() |
2013-01-15
, 22:01
|
Posts: 3,074 |
Thanked: 12,964 times |
Joined on Mar 2010
@ Sofia,Bulgaria
|
#115
|
sorry i have no experience with n900, but as i can see on screenshots, its better to have 2 different ui for meego and maemo.
The Following 3 Users Say Thank You to freemangordon For This Useful Post: | ||
![]() |
2013-01-15
, 22:16
|
|
Moderator |
Posts: 2,622 |
Thanked: 5,447 times |
Joined on Jan 2010
|
#116
|
The Following 5 Users Say Thank You to qwazix For This Useful Post: | ||
![]() |
2013-01-15
, 22:24
|
Posts: 3,074 |
Thanked: 12,964 times |
Joined on Mar 2010
@ Sofia,Bulgaria
|
#117
|
@coderus, romaxa count me in for the UI
@freemangordon in my understanding the philosophy behind qml is "disposable UI's". As there are no ifdefs in qml it's better to just build two of them. Maybe two git branches with a common base would be the way to go.
Even if everything works perfectly from one platform to another, the import statements are enough to break everything.
On a sidenote, it would be nice to use this for the fremantle UI
The Following User Says Thank You to freemangordon For This Useful Post: | ||
![]() |
2013-01-15
, 23:28
|
Posts: 40 |
Thanked: 265 times |
Joined on Aug 2007
|
#118
|
CSSU comes with Qt 4.7.4 so I dont have concerns on Qt side. Though I think QML on Harmattan is newer that the one on Fremantle, that is why I asked to keep it compatible, if it is possible.
SW rendering (esp when gcc 4.7.2, thumb compiled) is pretty fast, at least it was in my Fennec 17 builds. Waiting the current build to finish(it takes eons in scratchbox), will see what is the situation.
The Following 4 Users Say Thank You to romaxa For This Useful Post: | ||
![]() |
2013-01-15
, 23:53
|
Posts: 3,074 |
Thanked: 12,964 times |
Joined on Mar 2010
@ Sofia,Bulgaria
|
#120
|
QApplication::setAttribute(Qt::AA_X11InitThreads, true);
. . . #if defined(Q_WS_X11) #include <X11/Xlib.h> #endif . . . #if QT_VERSION >= 0x040800 QApplication::setAttribute(Qt::AA_X11InitThreads, true); #else XInitThreads(); QApplication::setAttribute(static_cast<Qt::ApplicationAttribute>(10), true); #endif
The Following 5 Users Say Thank You to freemangordon For This Useful Post: | ||