Re: [Development] C++11 and QtWebkit in 5.2.0

2013-12-20 Thread Allan Sandfeld Jensen
On Friday 20 December 2013, Thiago Macieira wrote: > On sexta-feira, 20 de dezembro de 2013 12:57:46, Allan Sandfeld Jensen wrote: > > WebKit is recommended to compiled with C++11, compiling without C++11 is > > only meant for platforms without working C++11 support (gcc 4.2 in Mac > > OS 10.6).

Re: [Development] Qt's Leak-on-exit policy

2013-12-20 Thread Kuba Ober
On Dec 18, 2013, at 7:17 PM, Andreas Hartmetz wrote: > 2) reminds me of a crazy idea I've had once... freeing memory (not > object destruction!) at application exit really serves no other purpose > than making leak checkers happy. Not saying that this isn't an > important goal, btw. So shutdown c

Re: [Development] [Feature Request] Add QtWebSockets to Qt

2013-12-20 Thread Steve Gold
I don't know who gets an "official" vote but I am in favor of making QtWebSockets part of the official Qt repository and would like to see it included in the next 5.2.1 release. Since I consider it to be 'Qt-worthy' but almost 'QML-worthy', I recommend that a public Q_INVOKABLE disconnect() met

[Development] [Feature Request] Add QtWebSockets to Qt

2013-12-20 Thread Kurt Pattyn
Hi, I propose to move QtWebSockets from the playground (https://qt.gitorious.org/qtplayground/websockets/) to the official Qt repository as an add-on. As there is a need for a websockets implementation in Qt (see https://bugreports.qt-project.org/browse/QTBUG-26300 and https://bugreports.qt-pr

Re: [Development] QWidget mouse events - different order

2013-12-20 Thread Rick Stockton
On 12/20/2013 02:05 AM, Martin Koller wrote: > On Thursday 19 December 2013 22:18:36 Andreas Aardal Hanssen wrote: >> On 19 Dec 2013, at 18:36, Rick Stockton >> wrote: >>> Perhaps we should perform as QT4 did (there wasn't a second ButtonPress, >>> the DoubleClick "ate it"). Such use cases would

Re: [Development] C++11 and QtWebkit in 5.2.0

2013-12-20 Thread Thiago Macieira
On sexta-feira, 20 de dezembro de 2013 12:57:46, Allan Sandfeld Jensen wrote: > WebKit is recommended to compiled with C++11, compiling without C++11 is > only meant for platforms without working C++11 support (gcc 4.2 in Mac OS > 10.6). This is not a case of recommended. The use of >> makes C++1

Re: [Development] How can I perfrom some image processing before record camera image to a video file?

2013-12-20 Thread Lopes Yoann
Hi, No you can't do that using the Qt API only. The only way would be to create a custom QAbstractVideoSurface (to set on QCamera) from where you would get the video frames and would be able to process them. Then the problem is that you can't use QMediaRecorder to save to a file, you would have

[Development] How can I perfrom some image processing before record camera image to a video file?

2013-12-20 Thread Liang Jian
First I know I should have post this question in qt-interest, but each time I sent a mail to qt-inter...@qt-projct.org I will got a mail delivery failed message, so I have to post my question in this mailing list to seek for help: Recenty I am learning QtMultiMedia module, It's really easy

Re: [Development] C++11 and QtWebkit in 5.2.0

2013-12-20 Thread Allan Sandfeld Jensen
On Friday 20 December 2013, Soroush Rabiei wrote: > Hi list > > IIRC webkit source is not supposed to be compiled with C++11. So I turned > off new standard in configure script: > WebKit is recommended to compiled with C++11, compiling without C++11 is only meant for platforms without working C+

[Development] C++11 and QtWebkit in 5.2.0

2013-12-20 Thread Soroush Rabiei
Hi list IIRC webkit source is not supposed to be compiled with C++11. So I turned off new standard in configure script: .\configure ... -no-c++11 ... Trying to compile I got this error: In file included from Platform\CoreIPC\Connection.h:35:0, from Platform\CoreIPC\Connection

Re: [Development] Qt Color Profiles update

2013-12-20 Thread Alexandros Dermenakis
There were no changes since then. I stopped working after I left nokia. I am presently working on transferring the patch into the new file tree on git since it has changed a lot since then. On Thu, Dec 19, 2013 at 12:47 PM, Kai-Uwe Behrmann wrote: > I can not see much changes on codereview fro

Re: [Development] QWidget mouse events - different order

2013-12-20 Thread Martin Koller
On Thursday 19 December 2013 22:18:36 Andreas Aardal Hanssen wrote: > > On 19 Dec 2013, at 18:36, Rick Stockton > wrote: > > Perhaps we should perform as QT4 did (there wasn't a second ButtonPress, > > the DoubleClick "ate it"). Such use cases would then need to be "fixed > > up" (i,e, to accept

Re: [Development] Trigger Qt event loop from external message loop

2013-12-20 Thread Roland Winklmeier
Unfortunately Mac is (additional to Win and Linux) a target OS, so if this is not working on that I have to find another way to do it. I found QMacNativeWidget which looks promising and looking into its implementation I'm wondering how Qt's event loop is triggered? With Qt4 I also used QWinWidget

Re: [Development] QWidget mouse events - different order

2013-12-20 Thread Andreas Aardal Hanssen
On 20 Dec 2013, at 09:15, Martin Koller wrote: > so it's just the extra mousePressEvent in Qt5 which is wrong. Good. I think it can and should just be removed, but it would be nice to know when it broke, in case there was thought behind it... Andreas_

Re: [Development] QWidget mouse events - different order

2013-12-20 Thread Martin Koller
On Friday 20 December 2013 08:31:24 Martin Koller wrote: > On Thursday 19 December 2013 09:19:38 Rick Stockton wrote: > > On 12/18/2013 01:10 PM, Andreas Aardal Hanssen wrote: > > > On 18 Dec 2013, at 22:07, Rayner Pupo Gómez wrote: > > Inner-most quote is from Martin Koller. > > > > >>> I've dis