[Interest] 64bit integer type in QML?

2015-01-14 Thread Ola Røer Thorsen
Hi all, is it possible to use 64bit integers in QML? Looking at the docs at http://doc.qt.io/qt-5/qml-int.html it seems like the integers are 32-bit signed only (by counting the zeros in 20...) Thanks, Ola ___ Interest mailing list

[Interest] porting to Qt 5.4 - MOC very slow on Windows

2015-01-14 Thread Hamish Moffatt
I'm trying to port our app from Qt 4.8 to 5.4. Currently working in MSVC 2013, and using the pre-built Qt binaries for that environment. We have about 440 files being MOCed during build. On 5.4, each file is taking 2-3 seconds meaning the overall build is significantly longer than in 4.8. I

Re: [Interest] QFileDialog

2015-01-14 Thread Thiago Macieira
On Wednesday 14 January 2015 12:35:01 Graham Labdon wrote: Hi In my application I want that all file dialogs set the DontUseNativeDialog flag. Is this possible by using style sheets or do I have to subclass file dialog and make sure that developers use this subclass? Is there a better way

Re: [Interest] How can I use QPointer as an argument?

2015-01-14 Thread Guenther Boelter
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Thanks  Constantin, Bo and André, it's working now. And yes, it was not really a good question but that day I was a little bit nervous because the end of my timeline was very near already.

Re: [Interest] Revert the selection in a QTreeView

2015-01-14 Thread André Somers
Glenn Ramsey schreef op 14-1-2015 om 00:23: On 14/01/15 11:50, Nurmi J-P wrote: On 13 Jan 2015, at 22:45, Glenn Ramsey g...@componic.co.nz wrote: Hi, In a QTreeView how can I revert the selection? The behaviour I want is that when the user selects an item, then based on some other

Re: [Interest] Best practices for making a Qt facade for a C library

2015-01-14 Thread Dmitriy Purgin
Hi Damian, the application itself is GPLv3, for PulseAudio parts see [1] (every file that starts with pulseaudio). I'm planning to release the library under LGPL but didn't upload anything for public availability yet. As soon as I port all the functionality from my app to the lib, I'll make a

[Interest] Static QtWebEngine

2015-01-14 Thread Fandy Permana
Hi, this is the same question that I posted here. http://qt-project.org/forums/viewthread/52002/ is it possible to build QtWebEngine with static configuration? if not, is there any plan to make it possible in next future release? thank you. best regards, fpermana

Re: [Interest] Best practices for making a Qt facade for a C library

2015-01-14 Thread Dmitriy Purgin
Hello Ian, thanks for your reply. I think I can use some ideas from QtGstreamer, didn't really know about its existence. I'll try your approach, it feels to me so much better, but I'd prefer composition over inheritance. Thanks! Cheers Dmitriy 2015-01-14 5:26 GMT+06:00 Ian Monroe

[Interest] QFileDialog

2015-01-14 Thread Graham Labdon
Hi In my application I want that all file dialogs set the DontUseNativeDialog flag. Is this possible by using style sheets or do I have to subclass file dialog and make sure that developers use this subclass? Is there a better way Thanks for your time