I have a simple program with a widget. At startup the widget is not shown.

I want to assign a hotkey ( for instance "ctrl + space" ). So when the user pressses "ctrl + space" the widget is shown.

I know i can register the hotkey with

RegisterHotKey(winId(), 100, MOD_CONTROL, VK_SPACE);

But how do i get and react on the messages windows sends when the user presses "ctrl + space" and should RegisterHotKey(); be place anywhere specific in the code?