Hi.
I'm using Qt-4.1.2 and Qt-Desigper.
Somewere I had a list of keycodes. which I am using in my program.
Qt Code:
  1. void edpForm::keyPressEvent( QKeyEvent *k )
  2. {
  3. if( k->key() == 0X01000030 && ui.pb1->isEnabled() ) emit fk1clicked();
  4. if( k->key() == 0X01000031 && ui.pb2->isEnabled() ) emit fk2clicked();
  5. if( k->key() == 0X01000032 && ui.pb3->isEnabled() ) emit fk3clicked();
  6. if( k->key() == 0X01000033 && ui.pb4->isEnabled() ) emit fk4clicked();
  7. if( k->key() == 0X01000034 && ui.pb5->isEnabled() ) emit fk5clicked();
  8. if( k->key() == 0X01000035 && ui.pb6->isEnabled() ) emit fk6clicked();
  9. }
To copy to clipboard, switch view to plain text mode 
but I can't find the list.

Help would be appreciated