[Development] Use of "resolution" in QtPrintSupport.

2014-03-12 Thread John Layt
Hi, [Mostly notes for Andy Shaw to review, but thought I'd post for anyone interested] In QtPrintSupport you can set the resolution to be used in printing, but as with many parts of painting and printing there is confusion and inconsistency between the painting resolution and the physical devi

Re: [Development] Q_WS_* used in Qt sources

2014-03-12 Thread Thiago Macieira
Em qua 12 mar 2014, às 18:46:15, Martin Koller escreveu: > On Wednesday 12 March 2014 08:10:18 Thiago Macieira wrote: > > Em qua 12 mar 2014, às 12:23:33, Martin Koller escreveu: > > > I find a lot #ifdef Q_WS_* code in Qt sources (widgets). > > > AFAIK Q_WS_ is no longer defined due to QPA. > > >

Re: [Development] Q_WS_* used in Qt sources

2014-03-12 Thread Martin Koller
On Wednesday 12 March 2014 08:10:18 Thiago Macieira wrote: > Em qua 12 mar 2014, às 12:23:33, Martin Koller escreveu: > > I find a lot #ifdef Q_WS_* code in Qt sources (widgets). > > AFAIK Q_WS_ is no longer defined due to QPA. > > Is this something which has not been ported over to Q_OS_ and/or to

Re: [Development] Q_WS_* used in Qt sources

2014-03-12 Thread Kevin Krammer
On Wednesday, 2014-03-12, 08:10:18, Thiago Macieira wrote: > Em qua 12 mar 2014, às 12:23:33, Martin Koller escreveu: > > I find a lot #ifdef Q_WS_* code in Qt sources (widgets). > > AFAIK Q_WS_ is no longer defined due to QPA. > > Is this something which has not been ported over to Q_OS_ and/or to

Re: [Development] Bluetooth support for  windows

2014-03-12 Thread Blasche Alexander
Hi, Unfortunately the QtBluetooth module doesn't support Windows at this stage. The officially supported 5.3 platforms for this module are Linux/Bluez 4.x, QNX and Android. -- Alex From: development-bounces+alexander.blasche=digia@qt-project.org [develop

Re: [Development] Current problems in CI

2014-03-12 Thread John Layt
On 12 March 2014 11:08, Sarajärvi Tony wrote: > Hi > > Currently we are blocking QtBase_dev and qt4. We need to get a fix for an > autotest through so that any commit will have a chance to pass the CI. > > Also, you might have noticed a few problems in the CI with breaking builds. > Jenkins crashe

[Development] Bluetooth support for  windows

2014-03-12 Thread iMath
will qt 5.3 has Bluetooth support for  windows?___ Development mailing list Development@qt-project.org http://lists.qt-project.org/mailman/listinfo/development

Re: [Development] About ALIAS in Q_PROPERTY

2014-03-12 Thread Svetkin Mikhail
> > I think the syntax is not so nice especially the need to have both > the class name and the 'path' to the property. About syntax, I think i can make syntax easier. For example: Q_PROPERTY(QString label ALIAS ui->customWidget->label) or: Q_PROPERTY(QString label ALIAS ui->customWidget label)

Re: [Development] Q_WS_* used in Qt sources

2014-03-12 Thread Thiago Macieira
Em qua 12 mar 2014, às 12:23:33, Martin Koller escreveu: > I find a lot #ifdef Q_WS_* code in Qt sources (widgets). > AFAIK Q_WS_ is no longer defined due to QPA. > Is this something which has not been ported over to Q_OS_ and/or to QPA and > do I need to expect problems (missing functionality) whe

[Development] Qt 5.2.1 patch 1 libs uploaded to Ministro's testing repository

2014-03-12 Thread BogDan
Hello folks,   I'd like to let you know that Qt 5.2.1 patch 1 libs were uploaded to *testing* repository. This patch *only* updates the "gnustl_shared"  library to the newest version (from NDK r9d), it fixes  https://bugreports.qt-project.org/browse/QTBUG-37262. In order to test the new libs, p

Re: [Development] Harmonizing the Qt 5.x Documentation

2014-03-12 Thread Sze Howe Koh
Hi Jerome, On 12 March 2014 17:37, Pasion Jerome wrote: > Hello all, > > Some comments: > > 0) We're trying to promote the latest documentation, which contains the > latest fixes. 5.3 documentation is by-and-large much better than the 5.0 or > 5.1 documentation. Whichever minor version of Qt 5

Re: [Development] Qt 5.2.1 libs uploaded to Ministro's testing repository

2014-03-12 Thread BogDan
Hello,   More than one month has passed and nobody reported any regression, so is time to move 5.2.1 to stable repository. Cheers, BogDan. > > From: BogDan >To: "android-developm...@qt-project.org" ; >Necessitas ; "development@qt-project.org" > >Sent: Satur

[Development] First Qt 5.3 Beta snapshots available

2014-03-12 Thread Heikkinen Jani
Hi all, We have finally first snapshots for Qt 5.3 Beta available here: http://download.qt-project.org/snapshots/qt/5.3/5.3.0-beta/2014-03-12_5/ . Unfortunately there is only Linux ones & few for windows. We are hoping we could get more windows ones soon, maybe even today. Mac installers are al

Re: [Development] About ALIAS in Q_PROPERTY

2014-03-12 Thread Simon Hausmann
On Wednesday 12. March 2014 12.48.20 Olivier Goffart wrote: > On Monday 10 March 2014 17:43:35 Giuseppe D'Angelo wrote: > > Can you please explain what this feature is about, why do you think > > it's useful, how it's supposed to be used, etc.? > > > > On 10 March 2014 17:30, mikhail.svet...@gmail

Re: [Development] About ALIAS in Q_PROPERTY

2014-03-12 Thread Konstantin Ritt
Since moc is unable to do safety checks for such complex expressions (in this case, `if (ui && ui->customWidget)`), this makes Q_PROPERTY potentially unsafe and the idea has no any value to me. Simply do s/ui->customWidget/parent()->customWidget/g and imagine what could happen there... P.S. @Olivi

Re: [Development] About ALIAS in Q_PROPERTY

2014-03-12 Thread Olivier Goffart
On Monday 10 March 2014 17:43:35 Giuseppe D'Angelo wrote: > Can you please explain what this feature is about, why do you think > it's useful, how it's supposed to be used, etc.? > > On 10 March 2014 17:30, mikhail.svet...@gmail.com > > wrote: > > Hello, I would like to clarify wherein the compl

[Development] Q_WS_* used in Qt sources

2014-03-12 Thread Martin Koller
I find a lot #ifdef Q_WS_* code in Qt sources (widgets). AFAIK Q_WS_ is no longer defined due to QPA. Is this something which has not been ported over to Q_OS_ and/or to QPA and do I need to expect problems (missing functionality) when I port my app from Qt4 to Qt5 ? -- Best regards/Schöne Grüße

[Development] Current problems in CI

2014-03-12 Thread Sarajärvi Tony
Hi Currently we are blocking QtBase_dev and qt4. We need to get a fix for an autotest through so that any commit will have a chance to pass the CI. Also, you might have noticed a few problems in the CI with breaking builds. Jenkins crashed and lost track of qtbase_dev and crashed a few other bu

Re: [Development] Harmonizing the Qt 5.x Documentation

2014-03-12 Thread Pasion Jerome
Hello all, Some comments: 0) We're trying to promote the latest documentation, which contains the latest fixes. 5.3 documentation is by-and-large much better than the 5.0 or 5.1 documentation. Whichever minor version of Qt 5 you use is entirely up to you. 1) The 5.0 and 5.1 documentation are a