Re: [Interest] Bug (?) in qtbase/configure for Mac

2014-05-12 Thread Thiago Macieira
Em seg 12 maio 2014, às 22:23:41, Eric Feigenson escreveu: > No, I'm not suggesting hardcoding ANYTHING, that's just plain wrong. > > I gave an example of -sdk macosx10.8 > > The line > > QMAKE_MAC_SDK = macosx10.8 > > is generated by the configure script, and is written to qdevice.pri, as > pr

[Interest] Annoying ApplicationWindow Error

2014-05-12 Thread Jason H
QtQuick 2.x project I'm getting this error: """ QQuickView only supports loading of root objects that derive from QQuickItem.  If your example is using QML 2, (such as qmlscene) and the .qml file you  loaded has 'import QtQuick 1.0' or 'import Qt 4.7', this error will occur.  To load files w

Re: [Interest] Bug (?) in qtbase/configure for Mac

2014-05-12 Thread Eric Feigenson
No, I'm not suggesting hardcoding ANYTHING, that's just plain wrong. I gave an example of -sdk macosx10.8 The line QMAKE_MAC_SDK = macosx10.8 is generated by the configure script, and is written to qdevice.pri, as previously described. So, I would expect that -sdk macosx10.7 would generate a

Re: [Interest] Size of libQt5Core in 5.3

2014-05-12 Thread Thiago Macieira
Em seg 12 maio 2014, às 15:14:51, Ian Monroe escreveu: > Unlike the Linux networking maintainers, Thiago is open to > configure-time methods to slim down QtCore. That seems like the way > forward for people who care about such things. To be clear: I will not accept patches that unreasonably clutte

Re: [Interest] Bug (?) in qtbase/configure for Mac

2014-05-12 Thread Thiago Macieira
Em seg 12 maio 2014, às 18:26:53, Eric Feigenson escreveu: > If the line is: > > QMAKE_MAC_SDK = macosx10.8 > > Then this happens: > > /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolcha > in/usr/bin/clang++ -c -o qlibraryinfo.o -pipe -isysroot > /Applications/Xcode.app/

Re: [Interest] Bug (?) in qtbase/configure for Mac

2014-05-12 Thread Eric Feigenson
In this case "Correct" means the value of -sdk macosx10.8 is used. Otherwise it's ignored and I get the wrong value for -isysroot. If the line in qdevice.pri is: !host_build:QMAKE_MAC_SDK = macosx10.8 then the value of QMAKE_MAC_SDK is null/undefined. In that case, what I see is this: /Appl

Re: [Interest] Size of libQt5Core in 5.3

2014-05-12 Thread Ian Monroe
On Mon, May 12, 2014 at 2:55 PM, Peter Kümmel wrote: > On 12.05.2014 23:29, Daniel Bowen wrote: >> >> If anyone has other things to add, please do. > > Maybe it is worth to think about a Qt library which really only > provides essential stuff. What would such a library contain, > when all the "but

Re: [Interest] Size of libQt5Core in 5.3

2014-05-12 Thread Thiago Macieira
Em seg 12 maio 2014, às 23:55:27, Peter Kümmel escreveu: > > If anyone has other things to add, please do. > > Maybe it is worth to think about a Qt library which really only > provides essential stuff. Please note any discussion about further splitting QtCore is a Qt 6 discussion. -- Thiago Ma

Re: [Interest] Size of libQt5Core in 5.3

2014-05-12 Thread Thiago Macieira
Em seg 12 maio 2014, às 15:29:29, Daniel Bowen escreveu: > qconfig is nice to separate out those -no-feature- items into another file - > thanks! ./configure -help still lists -qconfig, so hopefully that's a good > sign that it will stay around, even if the Qt5 documentation doesn't > mention it.

Re: [Interest] Two candidate updates for 5.3.x

2014-05-12 Thread Thiago Macieira
Em seg 12 maio 2014, às 15:30:39, Daniel Bowen escreveu: > 1. If -no-gui is specified, qtdiag tries to build, but encounters the error > Project ERROR: Unknown module(s) in QT: gui-private gui > --> To fix, update qttools/src/src.pro, change > !android:!ios:!qnx:!wince*:!winrt*:SUBDIRS += qtd

Re: [Interest] Size of libQt5Core in 5.3

2014-05-12 Thread Peter Kümmel
On 12.05.2014 23:29, Daniel Bowen wrote: > > If anyone has other things to add, please do. Maybe it is worth to think about a Qt library which really only provides essential stuff. What would such a library contain, when all the "but the GUI needs it" was removed? Peter > > Along the way, I have

[Interest] Two candidate updates for 5.3.x

2014-05-12 Thread Daniel Bowen
In trying to reduce the size of Qt for an embedded environment, I've run into a couple problems that would be best solved by updates to the source. There was a comment that issues with 5.3.0 RC could be sent to the mailing list here. 1. If -no-gui is specified, qtdiag tries to build, but encounter

Re: [Interest] Size of libQt5Core in 5.3

2014-05-12 Thread Daniel Bowen
Thanks to everyone that responded to this thread! You've given me a lot of good things to try. qconfig is nice to separate out those -no-feature- items into another file - thanks! ./configure -help still lists -qconfig, so hopefully that's a good sign that it will stay around, even if the Qt5 docu

Re: [Interest] QTest documentation

2014-05-12 Thread Thiago Macieira
Em seg 12 maio 2014, às 08:04:14, Graham Labdon escreveu: > Hi > Is there any documentation concerning the xml file format produced by the > QTest module? XUnit is a standard format with other tools. -- Thiago Macieira - thiago.macieira (AT) intel.com Software Architect - Intel Open Source Tech

Re: [Interest] QML & 'Promises'

2014-05-12 Thread Michael Brasser
Hi, At one point there was research into supporting 3rd party JS libraries in QML (see https://bugreports.qt-project.org/browse/QTBUG-22356), the idea being that any interesting JS library could easily be imported and used. I don't know if there has been any further work in this direction recent

[Interest] QTableWidget fading cell

2014-05-12 Thread Sensei
Dear all, I am trying to make my QTableWidget look good, although I have no real skills with that respect :) Anyway, here's what I'd like to do: the rightmost cell in the widget should have its text fade to transparent. Right now I'm using in each cell a QLabel (I need few strokes of HTML), b

Re: [Interest] Size of libQt5Core in 5.3

2014-05-12 Thread Peter Kümmel
On 11.05.2014 09:20, Daniel Bowen wrote: > I have an embedded environment where we usenon-UI parts of Qt (Qt Core, Qt > Networking)on an ARM host processor. > > We’ve been using 4.8.4for a little while. There’s some other changes comingto > this code, and we’ve been looking to move > to5.xwith th

Re: [Interest] Debugging tip for QNetworkReply

2014-05-12 Thread Markus
Am 02.05.2014 19:45, schrieb Jason Kretzer: > QFile file(filename); > file.open(QIODevice::WriteOnly); > file.write(reply->readAll()); > file.close(); First check if the file is open to write, then write the socket data into a QByteArray, check the size of the QByteArray and then w

[Interest] QTest documentation

2014-05-12 Thread Graham Labdon
Hi Is there any documentation concerning the xml file format produced by the QTest module? Thanks ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest