mirror of
https://github.com/gnustep/libs-back.git
synced 2025-04-22 23:42:16 +00:00
* Headers/win32/WIN32Server.h: Added declaration for decodeWM_HOTKEY:...
* Source/win32/WIN32Server.m: Added call to method decodeWM_HOTKEY:... * Source/win32/w32_general.m: Added method decodeWM_HOTKEY:... git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@29490 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
2f9772ccde
commit
3c9e989f25
4 changed files with 15 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
2010-02-05 16:31-EST Gregory John Casamento <greg.casamento@gmail.com>
|
||||
|
||||
* Headers/win32/WIN32Server.h: Added declaration for decodeWM_HOTKEY:...
|
||||
* Source/win32/WIN32Server.m: Added call to method decodeWM_HOTKEY:...
|
||||
* Source/win32/w32_general.m: Added method decodeWM_HOTKEY:...
|
||||
|
||||
2010-01-26 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Source/win32/w32_text_focus.m: Re-enable the focus in event.
|
||||
|
|
|
@ -173,6 +173,7 @@ typedef struct w32serverFlags {
|
|||
- (void) decodeWM_QUERYOPENParams: (WPARAM)wParam : (LPARAM)lParam : (HWND)hwnd;
|
||||
- (void) decodeWM_SYSCOMMANDParams: (WPARAM)wParam : (LPARAM)lParam : (HWND)hwnd;
|
||||
- (void) decodeWM_COMMANDParams: (WPARAM)wParam : (LPARAM)lParam : (HWND)hwnd;
|
||||
- (void) decodeWM_HOTKEYParams: (WPARAM)wParam : (LPARAM)lParam : (HWND)hwnd;
|
||||
|
||||
@end
|
||||
|
||||
|
|
|
@ -671,6 +671,9 @@ LRESULT CALLBACK MainWndProc(HWND hwnd, UINT uMsg,
|
|||
break;
|
||||
case WM_HELP:
|
||||
break;
|
||||
case WM_HOTKEY:
|
||||
[self decodeWM_HOTKEYParams: wParam : lParam : hwnd];
|
||||
break;
|
||||
//case WM_GETICON:
|
||||
//return [self decodeWM_GETICONParams: wParam : lParam : hwnd];
|
||||
//break;
|
||||
|
|
|
@ -134,5 +134,10 @@
|
|||
{
|
||||
[[GSTheme theme] processCommand: (void *)wParam];
|
||||
}
|
||||
|
||||
- (void) decodeWM_HOTKEYParams: (WPARAM)wParam : (LPARAM)lParam : (HWND)hwnd
|
||||
{
|
||||
[[GSTheme theme] processCommand: (void *)wParam];
|
||||
}
|
||||
|
||||
@end
|
||||
|
|
Loading…
Reference in a new issue