Click here to Skip to main content
15,867,704 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

 
AnswerRe: How to send keystrokes to another window in OnHotKey()? Pin
Nish Nishant25-Aug-02 23:09
sitebuilderNish Nishant25-Aug-02 23:09 
GeneralQuestion... Pin
Jason Troitsky (was Hattingh)29-May-02 0:03
Jason Troitsky (was Hattingh)29-May-02 0:03 
GeneralRe: Question... Pin
Nish Nishant29-May-02 0:41
sitebuilderNish Nishant29-May-02 0:41 
GeneralGood article Pin
29-Apr-02 9:36
suss29-Apr-02 9:36 
GeneralRe: Good article Pin
Nish Nishant29-Apr-02 13:59
sitebuilderNish Nishant29-Apr-02 13:59 
GeneralRe: Good article Pin
Daniel Turini29-Apr-02 20:44
Daniel Turini29-Apr-02 20:44 
GeneralRe: Good article Pin
Nish Nishant30-Apr-02 7:45
sitebuilderNish Nishant30-Apr-02 7:45 
GeneralRe: Good article Pin
Philippe Lhoste10-May-02 4:29
Philippe Lhoste10-May-02 4:29 
GeneralRe: Good article Pin
30-May-02 14:55
suss30-May-02 14:55 
QuestionPink? Pin
Jon Newman29-Apr-02 9:17
Jon Newman29-Apr-02 9:17 
AnswerRe: Pink? Pin
Nish Nishant29-Apr-02 13:58
sitebuilderNish Nishant29-Apr-02 13:58 
GeneralRe: Pink? Pin
Jon Newman30-Apr-02 7:33
Jon Newman30-Apr-02 7:33 
GeneralRe: Pink? Pin
Nish Nishant30-Apr-02 7:44
sitebuilderNish Nishant30-Apr-02 7:44 
GeneralRe: Pink? Pin
Jon Newman30-Apr-02 7:49
Jon Newman30-Apr-02 7:49 
GeneralRe: Pink? Pin
Nish Nishant30-Apr-02 7:55
sitebuilderNish Nishant30-Apr-02 7:55 
GeneralNice job! Pin
Ravi Bhavnani29-Apr-02 6:32
professionalRavi Bhavnani29-Apr-02 6:32 
GeneralRe: Nice job! Pin
Michael P Butler29-Apr-02 9:28
Michael P Butler29-Apr-02 9:28 
GeneralRe: Nice job! Pin
Nish Nishant29-Apr-02 13:57
sitebuilderNish Nishant29-Apr-02 13:57 

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.