* Headers/win32/WIN32Server.h: Added decodeWM_MOUSEACTIVATE:..

* Source/win32/w32_general.m: Added call to decodeWM_COMMAND:
	to -[GSTheme processCommand:] the theme callback which handles 
	native menus, 


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@29279 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2010-01-14 10:40:29 +00:00
parent cb376955bc
commit 19150c94d0
3 changed files with 11 additions and 0 deletions

View file

@ -1,3 +1,10 @@
2010-01-14 05:41-EST Gregory John Casamento <greg.casamento@gmail.com>
* Headers/win32/WIN32Server.h: Added decodeWM_MOUSEACTIVATE:..
* Source/win32/w32_general.m: Added call to decodeWM_COMMAND:
to -[GSTheme processCommand:] the theme callback which handles
native menus,
2010-01-12 Fred Kiefer <FredKiefer@gmx.de>
* Tools/xpbs.m: Add missing comma after name of selection atom.

View file

@ -111,6 +111,8 @@ typedef struct w32serverFlags {
@interface WIN32Server (w32_activate)
- (LRESULT) decodeWM_MOUSEACTIVATEParams: (WPARAM)wParam : (LPARAM)lParam
: (HWND)hwnd;
- (LRESULT) decodeWM_ACTIVEParams: (WPARAM)wParam : (LPARAM)lParam
: (HWND)hwnd;
- (LRESULT) decodeWM_ACTIVEAPPParams: (HWND)hwnd : (WPARAM)wParam

View file

@ -31,6 +31,7 @@
#include <AppKit/NSWindow.h>
#include "win32/WIN32Server.h"
#include "win32/WIN32Geometry.h"
#include <GNUstepGUI/GSTheme.h>
@implementation WIN32Server (w32_General)
@ -131,6 +132,7 @@
- (void) decodeWM_COMMANDParams: (WPARAM)wParam : (LPARAM)lParam : (HWND)hwnd
{
[[GSTheme theme] processCommand: (void *)wParam];
}
@end