Re: [Interest] Turning on MSAA on a Qml-created Window

2013-11-04 Thread Sletta Gunnar
Hi Josh, This should be possible, but there are a few things to keep in mind. In Qt 5.1 the QQuickWindows all share the same OpenGL context, so you need to request multisampling on the first window you show, before you show it. As a result, all QQuickWindows will get multisampling. If you

Re: [Interest] About event filter on QApplication

2013-11-04 Thread 程梁
Thank you! I think I do understand your point. I just want to answer his question. And I think I should tell him this point. Cheng Liang Nanjing, China http://www.devbean.net Date: Mon, 4 Nov 2013 07:28:08 +0100 From: bthor...@ics.com To: interest@qt-project.org Subject: Re: [Interest]

[Interest] Problems beta1 and android deployment

2013-11-04 Thread Guido Seifert
Hi, android deployment worked fine with Qt 5.1.1. Now with Qt 5.2.0 everything should be more streamlined. No android specific stuff in the .pro file. Sounds good. Problem is, I don't get it. I tried the lates beta1. Accoding to:

Re: [Interest] Problems beta1 and android deployment

2013-11-04 Thread Guido Seifert
Ok, I did something stupid. Found it. But another problem. My program consists of one main program and a few plugins: Base .pro TEMPLATE = subdirs CONFIG += ordered SUBDIRS += BaseProgram SUBDIRS += DistancePlugin BaseProgram is a normal app. with TEMPLATE = app. Several plugins with TEMPLATE

Re: [Interest] Turning on MSAA on a Qml-created Window

2013-11-04 Thread Josh Faust
Hi Sletta, That makes sense, I'll give it a shot. Thanks. Josh On Mon, Nov 4, 2013 at 12:34 AM, Sletta Gunnar gunnar.sle...@digia.comwrote: Hi Josh, This should be possible, but there are a few things to keep in mind. In Qt 5.1 the QQuickWindows all share the same OpenGL context, so you

Re: [Interest] Undesired space added in Mac style UI rendering

2013-11-04 Thread John Weeks
Agh... once again, I forgot to direct my answer to the list. Well, I'm not sure of the solution, but the extra space appears to be coming from the checkbox used as the groupbox title. In your screen shots, the checkbox text is the same size as the other groupbox titles, on my Macintosh

Re: [Interest] Problems beta1 and android deployment

2013-11-04 Thread Guido Seifert
Still problems deploying a program with plugins. Did some 'research'. The top-level .pro is still a subdir template. The first subdir is a TEMPLATE = app. This works fine as far as I can see. Then I have several TEMPLATE = lib subdirs. For the app a JSON files is build. But it contains only

[Interest] Qt TrayIcon app and Maverick Nap

2013-11-04 Thread qtnext
Hi, I have trouble with Mac Maverick with a tray icon app : the app go to sleep , thanks to the new mac power management :( ... It works if I use terminal command to disable nap management for this apps, but is there a way to change the plist file with qmake to disable directly the Nap

[Interest] Qt Mac 5.2beta1 last snapshot is broken ...

2013-11-04 Thread qtnext
Hi, I have just tried to download the latest Qt 5.2 mac snapshot : I can open the dmg, but the installer inside is broken : you can't launch the files inside : a dialog box comes saying that the file is broken and ask him to eject the Disk image. ___

Re: [Interest] Problems beta1 and android deployment

2013-11-04 Thread Guido Seifert
As usual when there is not a quick answer to my questions, it is a bug in my side. And it was. Problem partly solved. The plugins were in the .apk. But they were installed directly in the app folder. Is there a way to install libs in a custom folder? A plugin folder in the app folder? Not

Re: [Interest] Undesired space added in Mac style UI rendering

2013-11-04 Thread Vadim Peretokin
I'll try those two flags... if you mention it looks different for you, would you mind showing me a screenshot of how it looks for you? I've just got this one mac (and it's not even a real one) to help Mac users with. On Tue, Nov 5, 2013 at 5:26 AM, John Weeks j...@wavemetrics.com wrote: Agh...

Re: [Interest] Undesired space added in Mac style UI rendering

2013-11-04 Thread John Weeks
On 04-Nov-2013, at 2:42 PM, Vadim Peretokin wrote:I'll try those two flags... if you mention it looks different for you, would you mind showing me a screenshot of how it looks for you? I've just got this one mac (and it's not even a real one) to help Mac users with.Note the large characters for

Re: [Interest] Undesired space added in Mac style UI rendering

2013-11-04 Thread Vadim Peretokin
Thanks. I'll see what I can do about it in the code then. Yes, possibly - but given how this is a cross-platform application and I have seen users use many OSes in their daily use, I think we would have questions to us raised if we didn't colour them as we equally did on the other platforms. What

[Interest] QCamera and QCameraViewFinder

2013-11-04 Thread Joshua Grauman
Hello all, I setup a basic use of QCamera and QCameraViewFinder that work fine. I just used the basic example in the docs to capture an image like this: camera-searchAndLock(); //on half pressed shutter button imageCapture-capture(); //on shutter button pressed camera-unlock();