Re: [Interest] Loader keyboard problem

2014-08-14 Thread Bo Thorsen
Den 13-08-2014 18:37, mark diener skrev: I am having some strange behavior with a Loader sample program for QtQuick 2.2 Keyboard navigation under OSX Mavericks does not work for the loader ... Hi Mark, I have had a bunch of keyboard focus issues with Qt 5 that weren't there in Qt 4.

Re: [Interest] sliding panel windows (was Re: Moving a frameless QQuickWindow to negative position under linux)

2014-08-14 Thread Bo Thorsen
Den 13-08-2014 16:00, Rutledge Shawn skrev: On 13 Aug 2014, at 12:38 PM, Bo Thorsen wrote: I think you can do this without doing anything outside the window. But then you are confined to the space inside the window. I'm talking about sliding panels around the edges of the desktop,

Re: [Interest] OpenGL weirdness

2014-08-14 Thread Sean Harmer
On Friday 25 Jul 2014 06:20:35 Yves Bailly wrote: On 24/07/2014 20:33, Till Oliver Knoll wrote: Am 24.07.2014 um 14:13 schrieb Yves Bailly yves.bai...@verosoftware.com: [...] fmt.setVersion(2, 1); ...getGetString(GL_VERSION) gives 4.4.0 (unexpected), and no triangle displayed.

[Interest] ListView Focus Style

2014-08-14 Thread mark diener
Does anybody know how to give a visible clue to users that a given component has gained focus and is now receiving user input. For a textinput, the blinking cursor cursorVisible = true works fine. What about buttons or listview? Any ideas? Thanks, md

Re: [Interest] ListView Focus Style

2014-08-14 Thread Rogers Nate
I use something like this for my simple buttons... color: (activeFocus ? #202020 : #333132) for my image buttons I use... source: (activeFocus ? Button_Rollover.png : Button_Passive.png) Nate On 08/14/2014 12:28 PM, mark diener wrote: Does anybody know how to give a visible clue to users

Re: [Interest] Loader keyboard problem

2014-08-14 Thread Michael Brasser
Hi Mark, Loader is a focus scope (see http://qt-project.org/doc/qt-5/qml-qtquick-loader.html#focus-and-key-events), so you will need to set focus on the Loader itself as well as the ListView in order for keyboard navigation to work. Regards,Michael Date: Wed, 13 Aug 2014 09:40:27 -0700 From:

Re: [Interest] Loader keyboard problem

2014-08-14 Thread m...@rpzdesign.com
Michael: Actually, a slight modification to your response. Outlined in bug report Qt-40790 (likely to get closed soon) You must use forceActiveFocus() to get this to work, focus: true does NOT seem to work. Thanks for the reply, cheers, md On 8/14/2014 3:55 PM, Michael Brasser wrote:

[Interest] applicationStateChanged in QML

2014-08-14 Thread mark diener
Does anybody know how to receive application signals from QGuiApplication in Qt Quick 2.0 application? I do not want to use a binding The signal coming from QGuiApplication -void *applicationStateChanged http://qt-project.org/doc/qt-5/qguiapplication.html#applicationStateChanged*

Re: [Interest] applicationStateChanged in QML

2014-08-14 Thread Bo Thorsen
Den 15-08-2014 03:28, mark diener skrev: Does anybody know how to receive application signals from QGuiApplication in Qt Quick 2.0 application? I do not want to use a binding The signal coming from QGuiApplication -void *applicationStateChanged