Reading Raw Keyboard Input

Functions like getchar() let you capture keyboard input, but in limited ways and without being able to detect various special keys such as ALT, CTRL, etc. It also doesn’t allow you to detect Key Down and Key up events. Using a GUI library GUI libraries like GTK give you raw access to the keyboard keypresses […]

Read More