views:

45

answers:

3

I wanna setup a global hotkey in python 2.6 that listens to the keyboard shortcut ctrl + D or ctrl + alt + D on windows, please help me

+1  A: 

Tim Golden's python/win32 site is a useful resource for win32 related programming in python. In particular, this example should help:

ars
+1  A: 

The RegisterHotKey method of the wx.Window class is what you're looking for -- as the docs say,

Registers a system wide hotkey. Every time the user presses the hotkey registered here, this window will receive a hotkey event. It will receive the event even if the application is in the background and does not have the input focus because the user is working with some other application. To bind an event handler function to this hotkey use EVT_HOTKEY with an id equal to hotkeyId. Returns True if the hotkey was registered successfully.

So, make an instance of `wx.Window, register the hotkey you want with this method, and possibly do a PushEventHandler if ypu'd rather handle the event(s) in a separate event handler rather than in the window itself (the latter being the default).

Is there anything else in this procedure that is not entirely clear to you...? If so, please edit your question to add whatever further problems you may have!

Alex Martelli
A: 

If you want hotkeys in your wxPython program (which I assume you do because of the wxPython tag), then you should use a wx.AcceleratorTable.

Mike Driscoll