Click here to Skip to main content
15,867,453 members
Articles / Programming Languages / C++
Article

Beginner's Tutorial - Using global hotkeys

Rate me:
Please Sign up or sign in to vote.
4.91/5 (45 votes)
28 Apr 2002Ms-PL4 min read 332.9K   5.5K   59   68
Explains how to register, use and unregister hotkeys
Image 1

Introduction

Today morning, someone was asking about using hot keys in the VC++ forum. I had never used hotkeys and it intrigued me not a little. I thought I'd cook up a simple application and write a nice little article for CP. These days I have been writing too many .NET articles and I thought it's time I wrote a normal unmanaged program as Mike Dunn or Colin Davies would call it.

First of all remember that hot keys are going to be global to the Operating System. Thus be careful what you choose as your hot key. Also decide whether your application is important enough to have an Operating System level short cut key. The user might accidentally press Ctrl-D and suddenly find your program popping up. In fact if it's an old enough person the sudden popping up of an unexpected window might even give him or her a heart attack. This is obviously a situation to be avoided.

How to set hot keys

Well, setting hot keys is just an API call away for anyone who might be thinking it's a complicated process. We use the API call RegisterHotKey which is prototyped as follows.

BOOL RegisterHotKey(
    HWND hWnd,         // window to receive hot-key notification
    int id,            // identifier of hot key
    UINT fsModifiers,  // key-modifier flags
    UINT vk            // virtual-key code
);

A normal application can use any value between 0x0000 and 0xBFFF but if you are writing a DLL, then you must use GlobalAddAtom to get a unique identifier for your hot key. There are currently four allowed key modifiers which let you trap the Ctrl key, the Alt key, the Shift key and the WinKey. You may trap them individually or as combinations of each other. For example you can have a combination short cut like Ctrl-Shift-WinKey-Y to pop up yahoo messenger, though why you'd want to set up that kind of convoluted short cut would be a very tough question to answer.

RegisterHotKey(hWndA, 100, MOD_ALT | MOD_SHIFT, 'P');
RegisterHotKey(hWndA, 200, MOD_WIN, 'R');

Okay, setting the hot key was simple. So, what does this do? Good question! What we have achieved is that, whenever this hot key is pressed a WM_HOTKEY message is send to the window specified by the HWND parameter. Neat. Also remember that if you are trying to set a hot key that has already been registered like the WinKey-E hot key that brings up Explorer, this function will fail and return FALSE, else it will return TRUE. So please do not fail to check the return value.

Un-registering hotkeys

Well as you would expect, there is an API call called UnregisterHotKey which un-registers our hot key or hot keys. Remember to un-register all hot keys when your program exits. In fact just to be safe un-register a key which might actually already have been un-registered. No harm done at all. This function is prototyped as :-

BOOL UnregisterHotKey(
    HWND hWnd,  // window associated with hot key
    int id      // identifier of hot key
);

The identifier is the same one which we had passed to RegisterHotKey. If you had used GlobalAddAtom to get a unique identifier, you must save it somewhere so that you can use it to un-register the hot key.

UnregisterHotKey(hWndMain,300);

Handling the hot key

If you are writing a straight API program you shouldn't have too much difficulty in handling the WM_HOTKEY message. Just check wParam which will contain the identifier of the hot key. The problem with MFC is that for some strange reason, the class wizard does not seem to include the WM_HOTKEY message. I was using VC++ 6.0 with SP5 when i originally wrote the program. I am not aware of whether this is the same for VC++ 7.0 or even whether there is some kind of obscure workaround for VC++ 6.0. If anyone knows a work around, kindly let me know too. But there is nothing stopping us from adding the entry to the message map. It's perfectly within the rules to do that, I say.

ON_MESSAGE(WM_HOTKEY,OnHotKey)

Okay, that was easy. Now we add our function. Just add this function to your window class, the same window that is going to receive the WM_HOTKEY message.

LRESULT OnHotKey(WPARAM wParam, LPARAM lParam);

Now all you have to do is to write the function body, check wParam and see if it is the identifier of your hot key and do what you want. Typically you might want to use ShellExecute to start your program, which is what I have done in the sample program for this article.

Sample Program

Well. the sample program was quickly put together and it lets you choose a single modifier key (it does not allow multiple modifiers) and you can choose a virtual key between A and Z. You can also browse to an executable and when you click the Start button, the hot key is alive. It's a very simple program and does not really do much. But you can look through the source code, if my explanations weren't coherent enough for you.

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)


Written By
United States United States
Nish Nishant is a technology enthusiast from Columbus, Ohio. He has over 20 years of software industry experience in various roles including Chief Technology Officer, Senior Solution Architect, Lead Software Architect, Principal Software Engineer, and Engineering/Architecture Team Leader. Nish is a 14-time recipient of the Microsoft Visual C++ MVP Award.

Nish authored C++/CLI in Action for Manning Publications in 2005, and co-authored Extending MFC Applications with the .NET Framework for Addison Wesley in 2003. In addition, he has over 140 published technology articles on CodeProject.com and another 250+ blog articles on his WordPress blog. Nish is experienced in technology leadership, solution architecture, software architecture, cloud development (AWS and Azure), REST services, software engineering best practices, CI/CD, mentoring, and directing all stages of software development.

Nish's Technology Blog : voidnish.wordpress.com

Comments and Discussions

 
QuestionBut RegisterHotKey overwites hotkeys of other tools Pin
TheCoderGuy25-Nov-14 20:03
TheCoderGuy25-Nov-14 20:03 
AnswerRe: But RegisterHotKey overwites hotkeys of other tools Pin
TheCoderGuy26-Nov-14 18:03
TheCoderGuy26-Nov-14 18:03 
QuestionGerman umlauts Pin
rootdial19-Jul-13 0:03
rootdial19-Jul-13 0:03 
GeneralMy vote of 5 Pin
P Uday kishore3-Dec-12 18:28
professionalP Uday kishore3-Dec-12 18:28 
QuestionDownload link Pin
subheesh23-Aug-11 17:27
subheesh23-Aug-11 17:27 
AnswerRe: Download link Pin
Nish Nishant24-Aug-11 11:32
sitebuilderNish Nishant24-Aug-11 11:32 
Question.net hotkeys Pin
tsdaemon29-Jun-11 1:03
tsdaemon29-Jun-11 1:03 
GeneralMy vote of 5 Pin
samq17-Nov-10 2:15
samq17-Nov-10 2:15 
Generalbad word filter to protect my kids. Pin
ZUPERKOOL7-Feb-10 6:48
ZUPERKOOL7-Feb-10 6:48 
GeneralGetting a compilation error Pin
NitsanBr31-Aug-08 7:36
NitsanBr31-Aug-08 7:36 
GeneralQuery on RegisterHotKey Pin
Member 407504817-Jul-08 19:44
Member 407504817-Jul-08 19:44 
GeneralRe: Query on RegisterHotKey Pin
zapaaris18-Aug-11 9:51
zapaaris18-Aug-11 9:51 
GeneralHotKey for IE Pin
lal001217-Jun-08 22:10
lal001217-Jun-08 22:10 
Questionhow to trap Hotkey without using Massage Map in win32 app? Pin
rajksingh4-May-08 20:28
rajksingh4-May-08 20:28 
GeneralThanks - Pin
bruccutler31-Jan-08 7:19
bruccutler31-Jan-08 7:19 
GeneralMinor correction - Pin
Sabuncu14-Aug-07 8:12
Sabuncu14-Aug-07 8:12 
GeneralThanks Pin
HakunaMatada15-May-07 19:26
HakunaMatada15-May-07 19:26 
Questionhow to remap keyboard globally Pin
tedkidane11-May-07 5:57
tedkidane11-May-07 5:57 
Question? Focus Pin
Synetech22-Jul-06 18:25
Synetech22-Jul-06 18:25 
QuestionHow to make this example to work with Visual C++2005? Pin
hires7725-Jun-06 4:18
hires7725-Jun-06 4:18 
QuestionHow to Use F1...F12 and other Virtual keys as a Hotkey !! plzzz help Pin
MacGadger7-Jun-06 9:28
MacGadger7-Jun-06 9:28 
AnswerRe: How to Use F1...F12 and other Virtual keys as a Hotkey !! plzzz help Pin
Synetech4-May-08 9:22
Synetech4-May-08 9:22 
GeneralgOoD Pin
LivingThoughts11-Feb-06 18:17
LivingThoughts11-Feb-06 18:17 
QuestionIs there anyway to handle HOTKEY messages like "Control + Alt + Delete" in one's application? Pin
Sstar7-Feb-06 15:31
Sstar7-Feb-06 15:31 
AnswerRe: Is there anyway to handle HOTKEY messages like "Control + Alt + Delete" in one's application? Pin
LivingThoughts14-Feb-06 20:16
LivingThoughts14-Feb-06 20:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.