Hi,

I want to display the key press values in human readable format in QLineEdit.

like Ctrl + Alt + D, Alt + F .

I have written KeyPressEvent() and in which i am doing this stuff. its working.

But it doesnt work with Number pad.

So how i can identify the number pad keys in my keyPressEvent() so that i will be able to show it in my QLineEdit.

e.g Ctrl + Num 1 if NUM_LOCK is on
Ctrl + End if NUM_LOCK is off.

Thanks in advance.

Regards,
~Sanjay