Re: [Development] The new headersclean is in

2015-04-16 Thread Thiago Macieira
Now it merged. On Friday 10 April 2015 13:16:30 Thiago Macieira wrote: > Oops, it's not in. It was another commit that went in, the one that removed > the old headersclean. > > On Friday 10 April 2015 09:28:02 Thiago Macieira wrote: > > As discussed in previous threads. > > > > This is just a re

Re: [Development] Allowing event delivery prior to and after QCoreApplication

2015-04-16 Thread Thiago Macieira
On Thursday 16 April 2015 15:22:04 Thiago Macieira wrote: > 1) deprecate use of notify() in auxiliary threads, with the functionality > getting removed in Qt 6 (this is a documentation change only) https://codereview.qt-project.org/110644 > 2) add a way for threads to individually enable delivery

Re: [Development] Allowing event delivery prior to and after QCoreApplication

2015-04-16 Thread Thiago Macieira
On Wednesday 15 April 2015 08:20:31 Thiago Macieira wrote: > Thanks André. The above contains two use-cases for overriding notify(): > > 1) catching exceptions, logging and resuming work > 2) debugging / inspecting events > So far, given the responses in the interest mailing list, it appears tha

[Development] Playground request: QML for Android

2015-04-16 Thread Nurmi J-P
Hi, I'd like to request a new playground repository for "QML for Android" - http://lists.qt-project.org/pipermail/development/2015-April/021035.html Description: QML wrappers for native Android controls. Playground project name: qtqmlandroid QtQmlAndroid is what I've used as the working title.

[Development] Qt OpenGL to the linux buffer via a platform plugin

2015-04-16 Thread Paul Knopf
I have to implement a custom platform plugin that outputs the display directly the the linux framebuffer. I also need (or I should say, REALLY LIKE) support for Qt Quick, so I need to support OpenGL. I have the source code for qtbase open and I am trying to make sense of things. So I have some que

Re: [Development] QFont qfontForThemeFont(ThemeFontID themeID) (and initializeDb)

2015-04-16 Thread René J . V . Bertin
On Thursday April 16 2015 21:37:31 Konstantin Ritt wrote: > AFAICT, there is no any more occurrences except in qt_mac_p.h > Same for QColor qcolorForThemeTextColor(ThemeTextColor themeColor), BTW. Ok, thanks, that certainly fits my observation. R ___ D

Re: [Development] QFont qfontForThemeFont(ThemeFontID themeID)

2015-04-16 Thread Konstantin Ritt
AFAICT, there is no any more occurrences except in qt_mac_p.h Same for QColor qcolorForThemeTextColor(ThemeTextColor themeColor), BTW. Regards, Konstantin 2015-04-16 21:39 GMT+04:00 René J.V. : > Hi, > > Is the old QFont qfontForThemeFont(ThemeFontID themeID) from Qt 4 still > used somewhere in

[Development] QFont qfontForThemeFont(ThemeFontID themeID)

2015-04-16 Thread René J . V . Bertin
Hi, Is the old QFont qfontForThemeFont(ThemeFontID themeID) from Qt 4 still used somewhere in Qt 5.4+ or is its prototype in qt_mac_p.h just a remnant? R. ___ Development mailing list Development@qt-project.org http://lists.qt-project.org/mailman/listi

Re: [Development] Allowing event delivery prior to and after QCoreApplication

2015-04-16 Thread Thiago Macieira
On Thursday 16 April 2015 11:25:29 Julien Cugnière wrote: > 2015-04-16 1:30 GMT+02:00 Thiago Macieira : > > My idea is to provide you with the ability to: > > - decide whether to catch or not > > - supply a handler that will be called if an exception is caught > > - decide whether a caught excep

Re: [Development] QML bindings for native Android controls

2015-04-16 Thread Robert Knight
> What is sorely needed is a fast, prototyping-friendly and > platform-agnostic way of doing UIs while relying on their native > implementation of widgets, usage patterns, libraries etc. Xamarin and React Native are aiming to get as close to that as feasible without compromising on design - which

Re: [Development] memory corruption in moc when building Qt 5.4.0

2015-04-16 Thread René J . V . Bertin
On Thursday April 16 2015 15:53:08 Markus Trippelsdorf wrote: > See: https://sourceware.org/bugzilla/show_bug.cgi?id=16992 > It is a gold bug that is fixed in binutils trunk. > So either update your binutils or use ld.bfd. Wow ... So it seems that this must be a case of using the gold ld togethe

[Development] memory corruption in moc when building Qt 5.4.0

2015-04-16 Thread René J . V . Bertin
Hi, A bit of a long shot, but is it possible to infer anything from the linked-to build log explaining why I'm seeing a memory corruption abort in moc when building qtbase 5.4.0? https://launchpadlibrarian.net/203470318/buildlog_ubuntu-trusty-amd64.qtbase-opensource-src_5.4.0%2Bdfsg-4ubuntu1~tr

Re: [Development] QML bindings for native Android controls

2015-04-16 Thread Attila Csipa
IANAL but using "for Android" should be fine w both Google and Qt (just stick the TM notice in your docs). I'm leaning towards Controls for Android (or, maybe QML for Android). It can still have a name of it's own (pick your favorite dog name or noun), but a descriptive name would IMO go a long

Re: [Development] QML bindings for native Android controls

2015-04-16 Thread Attila Csipa
On 4/13/2015 3:00 PM, Nurmi J-P wrote: > Indeed. UIs have come a long way since the days of Windows 95 and > others where it was sufficient to draw buttons and checkboxes a bit > differently. These days, UIs are full of little transitions and > effects. When those things are missing or slightly

[Development] First Qt5.5 beta snapshot available

2015-04-16 Thread Heikkinen Jani
Hi all, We have finally first Qt5.5 beta snapshot available Linux: http://download.qt.io/snapshots/qt/5.5/5.5.0-beta/2015-04-16_41/ Mac: http://download.qt.io/snapshots/qt/5.5/5.5.0-beta/2015-04-16_23/ Win: http://download.qt.io/snapshots/qt/5.5/5.5.0-beta/2015-04-16_20/ Some installers ar

Re: [Development] Allowing event delivery prior to and after QCoreApplication

2015-04-16 Thread Julien Cugnière
2015-04-16 1:30 GMT+02:00 Thiago Macieira : > My idea is to provide you with the ability to: > - decide whether to catch or not > - supply a handler that will be called if an exception is caught > - decide whether a caught exception resumes execution or aborts the >application (after your ha