Keyboard Values

Q Keycodes are for mostly special keys that do not actually have a text value but do some action. For example the F1 ~ F12 keys, Page Up, Page Down and so on. Unicode value is for your normal keys like 'A', Space, and any other value that you can see on the screen.

Q Keycodes are in qnamespace.h, but must be converted to decimal. Here are a few of the most important values.

Escape = 4096
Backspace = 4099
Return = 4100
Enter = 4101
Insert = 4102
Delete = 4103
Home = 4112
End = 4113

Unicode values can be discovered by...