Re: [Development] VNC and Qt5

2012-12-04 Thread Tr3wory
I don't know what he meant, but I wondering if it makes sense to create QPA plugin for VNC or rdesktop. tr3w On Tue, Dec 4, 2012 at 4:13 PM, Thiago Macieira wrote: > On terça-feira, 4 de dezembro de 2012 10.21.55, Salomon, Florian wrote: >> Hello everybody, >> >> i needed to know if and when VN

Re: [Development] Choosing a new MinGW for Qt 5

2012-09-03 Thread Tr3wory
On Sat, Sep 1, 2012 at 1:58 PM, Peter Kümmel wrote: > What is the problem with the current thread support in mingw? When you compile the gcc, you can choose which thread model do you want to use: win32 or pthread. In case of pthread the gcc will use the winpthreads package for threading, and the

Re: [Development] Why don't we have notify signal for all of the properties?

2012-07-06 Thread Tr3wory
What I miss is a "true" return value for QMetaProperty::hasNotifySignal() in case of "width", "height", "x", "y", and all the other properties when it makes sense (for all QObject derived classes). I know this functionality is from 4.5 or 4.6, and I thought it's not possible to add it for existing

Re: [Development] Why don't we have notify signal for all of the properties?

2012-07-06 Thread Tr3wory
On Fri, Jul 6, 2012 at 2:42 PM, Richard Moore wrote: > On 6 July 2012 13:26, Tr3wory wrote: >> But the QWidget's weight property doesn't have a corresponding >> weightChanged() signal (nor sizeChanged() or something higher level). >> Actually it doesn&

Re: [Development] Why don't we have notify signal for all of the properties?

2012-07-06 Thread Tr3wory
On Fri, Jul 6, 2012 at 1:56 PM, André Somers wrote: > Op 6-7-2012 13:30, Olivier Goffart schreef: >> On Friday 06 July 2012 13:02:16 André Somers wrote: >> As already pointed out, adding NOTIFY signal is not binary incompatible. Feel >> free to submit patches that add them :-) Ok, I may misremembe

[Development] Why don't we have notify signal for all of the properties?

2012-07-06 Thread Tr3wory
Hi all! I found the QML's property binding system really powerful, but as far as I understand on the C++ side it relies on the property's NOTIFY signal. I know the notify signal is added around Qt 4.6, and as far as I understand we couldn't add more signals to existing properties in the 4.x timefr