Re: [Interest] libgles_cm.lib and OpenGl32.lib

2012-01-30 Thread John Weeks
On 30-Jan-2012, at 6:33 AM, Joerg Bornemann wrote: > On 28/01/2012 00:22, ext John Weeks wrote: > >> We are using vsaddin 1.1.9 to load our .pro file. > > Please use the latest version of the add-in. > Its available here: > http://qt.nokia.com/downloads/visual-studio-add-in > > > Best Regards

Re: [Interest] Changing key repeat settings in Qt

2012-01-30 Thread Kimmo Viitanen
On 01/30/2012 03:51 PM, Till Oliver Knoll wrote: > Hmmm, so you do a single move triggered by a key-press? > > IMHO it would be better to detect a key DOWN event instead and keep moving as long as that key is down (or in other words: until you receive a key UP event of the proper key). > > W

Re: [Interest] libgles_cm.lib and OpenGl32.lib

2012-01-30 Thread Joerg Bornemann
On 28/01/2012 00:22, ext John Weeks wrote: > We are using vsaddin 1.1.9 to load our .pro file. Please use the latest version of the add-in. Its available here: http://qt.nokia.com/downloads/visual-studio-add-in Best Regards, Jörg ___ Interest mailing

Re: [Interest] Changing key repeat settings in Qt

2012-01-30 Thread Till Oliver Knoll
Am 30.01.2012 um 14:24 schrieb Kimmo Viitanen : > Hi, > > ... > With the default key delay there is a noticeable pause between the first > movement and subsequent moves. Hmmm, so you do a single move triggered by a key-press? IMHO it would be better to detect a key DOWN event instead and kee

Re: [Interest] Changing key repeat settings in Qt

2012-01-30 Thread Konstantin Tokarev
30.01.2012, 17:24, "Kimmo Viitanen" : > Hi, > > Is it possible to change the key repeat settings using Qt? No. You should configure underlying OS driver, or filter key events in your code (e.g., subclass QApplication and redefine notify()). -- Regards, Konstantin __

[Interest] Changing key repeat settings in Qt

2012-01-30 Thread Kimmo Viitanen
Hi, Is it possible to change the key repeat settings using Qt? When a keyboard key is pressed and kept pressed, there is usually a delay before the key starts repeating. I'd like to reduce this delay. This is probably not something that is usually desired in an application (fiddling with user'

[Interest] Hardware Accerlation problem - Viewport(new GLWidget())

2012-01-30 Thread Dietrich . Gossen
Hi, somehow the Hardware Accerlation with GLWidget doesn’t work. I think I am missing something trivial. thats how my code looks like: 1. int main(int argc, char *argv[]) 2.{ 3.QApplication a(argc, argv); 4.a.setGraphicsSystem("native"); 5. 6