Hi all,
Is there anyway to get the THotkey component in delphi to support the windows key?
Or does anyone know of a component that can do this?
Thanks heaps!
|
2
|
|
|
|
|
|
THotKey doesn't support the Win-Key. I would add a check box next to it maybe for the Win-Key modifier. |
||
|
|
I don't know if you can do it with the THotkey component. But you can capture the left and right Windows Key in any KeyDown event using:
|
||
|
|
|
IMHO it is a good thing THotKey does not support this. Don't use the windows key for keyboard shortcuts in your program, the "Windows Vista User Experience Guidelines" says the following under Guidelines - Interaction - Keyboard:
Even if the shortcut isn't used by Windows, using such a keyboard shortcut would be confusing to users, as it would perform a function in your program, while other such shortcuts like Win+E or Win+R activate a system-wide function, deactivating your program in the process. Edit: THotKey is a light wrapper around a system control, supporting only the things that this system control supports. There is no documented way to set anything but the Alt, Ctrl and Shift modifiers for the shortcut. You might be able to create your own control to display shortcuts using the Windows key, and set a global keyboard hook (look into the SetWindowsHookEx() API function). |
||||
|
|
|
See RegisterHotKey function on MSDN. |
||||
|
|
|
Sure its possible - you need to make your own copy of { THotKey } and tweak it a little to support also Win key. You need to add your own KeyDown() and Repaint() functions to this class . Like this:
..
|
|||
|