Re: [Interest] Qt 5 Plugins for iOS & Android

2014-01-01 Thread Yang Fan
Any progress? On Mon, Dec 9, 2013 at 6:17 PM, Alex Leutgöb wrote: > Hey Qt Friends, > > Just a short announcement in-between: We here at V-Play (http://v-play.net) > are currently preparing some plugins for the upcoming Qt5 mobile edition. > If you're interested in integrating in-app purchases,

Re: [Interest] Qt5/Android examples on the Play store?

2014-01-01 Thread Jason H
That's not complete because my app isn't listed! ;-) From: Jonathan Greig To: Дмитрий Козлов Cc: Interests Qt Sent: Tuesday, December 31, 2013 3:29 AM Subject: Re: [Interest] Qt5/Android examples on the Play store? Here is the search list of android app

[Interest] what does and mean?

2014-01-01 Thread iMath
the and and are used here http://doc.qt.digia.com/qt-maemo/itemviews-combowidgetmapper.html what does and mean?___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] How do i get the Qt::Key values from QKeySequence?

2014-01-01 Thread Mark Gaiser
This time to the list as well... Op 1 jan. 2014 23:33 schreef "Mark Gaiser" : > > Op 1 jan. 2014 21:55 schreef "Jonathan Greig" : > > > > Whats wrong with using QKeySequence::toString stored in a QHash? Then > make a function that breaks them apart or combines them depending on if you > are storin

Re: [Interest] How do i get the Qt::Key values from QKeySequence?

2014-01-01 Thread Jonathan Greig
Whats wrong with using QKeySequence::toString stored in a QHash? Then make a function that breaks them apart or combines them depending on if you are storing them or looking them up? On Wed, Jan 1, 2014 at 1:01 PM, Mark Gaiser wrote: > Hi, > > I'm using QKeySequence [1] and am trying to extend

[Interest] How do i get the Qt::Key values from QKeySequence?

2014-01-01 Thread Mark Gaiser
Hi, I'm using QKeySequence [1] and am trying to extend it's functionality to add mouse support. But in my structure i use stuff like: QVector keys; So now i want to have a vector with the keys in it. If i create a QKeySequence("Ctrl+A") i want to have: Qt::Key_Control Qt::Key_A Added to the vec

Re: [Interest] Pressing key (A-Z) behaves differently the pressing modifiers..

2014-01-01 Thread Mark Gaiser
Hi George, Thank you very much for clearing that up. I'm now using "isAutoRepeat" in the mix which solves my issue. Cheers, Mark On Wed, Jan 1, 2014 at 6:11 PM, George Tasopoulos wrote: > This is intended, and it's because when typing you'd expect keeping a letter > key pressed to keep producin

Re: [Interest] Pressing key (A-Z) behaves differently the pressing modifiers..

2014-01-01 Thread George Tasopoulos
This is intended, and it's because when typing you'd expect keeping a letter key pressed to keep producing that letter (I'm not sure about Function keys though). Modifier keys don't have that functionality because you normally press them combined with another key and so you need them to "stay" pres

[Interest] Pressing key (A-Z) behaves differently the pressing modifiers..

2014-01-01 Thread Mark Gaiser
Hi, I guess this will end up being a bug report, but i don't really if the results i see is a bug or intended behavior. Thus asking on the list to make sure before i make a bug report. I'm playing with a custom event filter and am observing some weird behavior with key presses. If i press and ho