2002-04-21 22:51:21 +00:00
|
|
|
/* WIN32Server - Implements window handling for MSWindows
|
|
|
|
|
2005-09-14 15:48:11 +00:00
|
|
|
Copyright (C) 2002,2005 Free Software Foundation, Inc.
|
2002-04-21 22:51:21 +00:00
|
|
|
|
|
|
|
Written by: Fred Kiefer <FredKiefer@gmx.de>
|
|
|
|
Date: March 2002
|
2005-09-14 15:48:11 +00:00
|
|
|
Part of this code have been re-written by:
|
|
|
|
Tom MacSween <macsweent@sympatico.ca>
|
|
|
|
Date August 2005
|
2007-10-29 23:25:10 +00:00
|
|
|
|
2002-04-21 22:51:21 +00:00
|
|
|
This file is part of the GNU Objective C User Interface Library.
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
2007-10-29 23:25:10 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
2002-04-21 22:51:21 +00:00
|
|
|
License as published by the Free Software Foundation; either
|
2007-10-29 23:25:10 +00:00
|
|
|
version 3 of the License, or (at your option) any later version.
|
|
|
|
|
2002-04-21 22:51:21 +00:00
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2007-10-29 23:25:10 +00:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this library; see the file COPYING.LIB.
|
|
|
|
If not, see <http://www.gnu.org/licenses/> or write to the
|
|
|
|
Free Software Foundation, 51 Franklin Street, Fifth Floor,
|
|
|
|
Boston, MA 02110-1301, USA.
|
2002-04-21 22:51:21 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _WIN32Server_h_INCLUDE
|
|
|
|
#define _WIN32Server_h_INCLUDE
|
|
|
|
|
2005-09-14 15:48:11 +00:00
|
|
|
#include <Foundation/NSNotification.h>
|
|
|
|
#include <Foundation/NSDebug.h>
|
|
|
|
#include <Foundation/NSString.h>
|
|
|
|
#include <Foundation/NSArray.h>
|
|
|
|
#include <Foundation/NSValue.h>
|
|
|
|
#include <Foundation/NSConnection.h>
|
|
|
|
#include <Foundation/NSRunLoop.h>
|
|
|
|
#include <Foundation/NSTimer.h>
|
|
|
|
#include <AppKit/AppKitExceptions.h>
|
|
|
|
#include <AppKit/NSApplication.h>
|
|
|
|
#include <AppKit/NSGraphics.h>
|
|
|
|
#include <AppKit/NSMenu.h>
|
|
|
|
#include <AppKit/NSWindow.h>
|
|
|
|
#include <AppKit/NSView.h>
|
|
|
|
#include <AppKit/NSEvent.h>
|
|
|
|
#include <AppKit/NSCursor.h>
|
|
|
|
#include <AppKit/NSText.h>
|
2005-10-21 03:07:19 +00:00
|
|
|
#include <AppKit/NSPopUpButton.h>
|
|
|
|
#include <AppKit/NSPanel.h>
|
2005-09-14 15:48:11 +00:00
|
|
|
#include <AppKit/DPSOperators.h>
|
2005-10-21 03:07:19 +00:00
|
|
|
#include <AppKit/NSImage.h>
|
|
|
|
|
2003-07-31 23:57:11 +00:00
|
|
|
#include <GNUstepGUI/GSDisplayServer.h>
|
2002-04-21 22:51:21 +00:00
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
2005-09-14 15:48:11 +00:00
|
|
|
/*
|
|
|
|
This standard windows macros are missing in MinGW. The definition
|
|
|
|
here is almost correct, but will fail for multi monitor systems
|
|
|
|
*/
|
|
|
|
#ifndef GET_X_LPARAM
|
|
|
|
#define GET_X_LPARAM(p) ((int)(short)LOWORD(p))
|
|
|
|
#endif
|
|
|
|
#ifndef GET_Y_LPARAM
|
|
|
|
#define GET_Y_LPARAM(p) ((int)(short)HIWORD(p))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define EVENT_WINDOW(lp) (GSWindowWithNumber((int)lp))
|
2003-12-03 20:39:45 +00:00
|
|
|
|
2005-10-21 03:07:19 +00:00
|
|
|
DWORD windowStyleForGSStyle(unsigned int style);
|
2005-09-14 15:48:11 +00:00
|
|
|
|
2005-10-21 03:07:19 +00:00
|
|
|
typedef struct w32serverFlags {
|
2005-09-14 15:48:11 +00:00
|
|
|
|
|
|
|
int _last_WM_ACTIVATE;
|
|
|
|
int menuRef; // reference to menu window
|
|
|
|
unsigned int currentGS_Style; // what style is current event window
|
|
|
|
BOOL HOLD_MENU_FOR_MOVE; // override GS move event on hide
|
|
|
|
BOOL HOLD_MENU_FOR_SIZE; // override GS size event on hide
|
|
|
|
BOOL HOLD_MINI_FOR_SIZE; // override GS size event on miniturize
|
|
|
|
BOOL HOLD_MINI_FOR_MOVE; // override GS move event on miniturize
|
|
|
|
BOOL HOLD_TRANSIENT_FOR_SIZE; // override GS size event on popup context
|
|
|
|
BOOL HOLD_TRANSIENT_FOR_MOVE; // override GS move event on popup context
|
|
|
|
BOOL HAVE_MAIN_MENU; // do we have a main menu?
|
2005-10-21 03:07:19 +00:00
|
|
|
BOOL HOLD_PAINT_FOR_SIZING;
|
2005-09-14 15:48:11 +00:00
|
|
|
BOOL _is_menu; // is event window the main menu?
|
|
|
|
BOOL _eventHandled; // did we handle the event?
|
|
|
|
BOOL _is_cache; // is the event window a cache rep
|
|
|
|
BOOL _hasGSClassName; // does the event window have a GSclassName
|
|
|
|
int lastEventType;
|
|
|
|
int hold;
|
2005-10-21 03:07:19 +00:00
|
|
|
} serverFlags;
|
|
|
|
|
|
|
|
@interface WIN32Server : GSDisplayServer
|
|
|
|
{
|
2007-03-07 18:11:17 +00:00
|
|
|
BOOL handlesWindowDecorations;
|
|
|
|
BOOL usesNativeTaskbar;
|
|
|
|
|
2005-10-21 03:07:19 +00:00
|
|
|
serverFlags flags;
|
|
|
|
HINSTANCE hinstance;
|
|
|
|
|
|
|
|
HWND currentFocus;
|
|
|
|
HWND desiredFocus;
|
|
|
|
HWND currentActive;
|
|
|
|
HICON currentAppIcon;
|
|
|
|
// config window
|
|
|
|
NSWindow *configWindow;
|
|
|
|
NSPopUpButton * styleButton;
|
|
|
|
NSButton * taskbarButton;
|
|
|
|
NSButton * saveButton;
|
2002-04-21 22:51:21 +00:00
|
|
|
}
|
2005-09-14 15:48:11 +00:00
|
|
|
|
2007-03-07 18:11:17 +00:00
|
|
|
- (BOOL) handlesWindowDecorations;
|
|
|
|
- (void) setHandlesWindowDecorations: (BOOL) b;
|
|
|
|
|
|
|
|
- (BOOL) usesNativeTaskbar;
|
|
|
|
- (void) setUsesNativeTaskbar: (BOOL) b;
|
|
|
|
|
|
|
|
+ (void) initializeBackend;
|
|
|
|
|
2005-09-14 15:48:11 +00:00
|
|
|
- (LRESULT) windowEventProc: (HWND)hwnd : (UINT)uMsg
|
|
|
|
: (WPARAM)wParam : (LPARAM)lParam;
|
|
|
|
|
|
|
|
- (void) setFlagsforEventLoop: (HWND)hwnd;
|
|
|
|
|
2008-02-14 22:26:00 +00:00
|
|
|
- (DWORD) windowStyleForGSStyle: (unsigned int) style;
|
|
|
|
|
|
|
|
- (void) resizeBackingStoreFor: (HWND)hwnd;
|
|
|
|
|
|
|
|
- (void) resetForGSWindowStyle: (HWND)hwnd w32Style:(DWORD)aStyle;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface WIN32Server (w32_activate)
|
|
|
|
|
2005-09-14 15:48:11 +00:00
|
|
|
- (LRESULT) decodeWM_ACTIVEParams: (WPARAM)wParam : (LPARAM)lParam
|
|
|
|
: (HWND)hwnd;
|
|
|
|
- (LRESULT) decodeWM_ACTIVEAPPParams: (HWND)hwnd : (WPARAM)wParam
|
|
|
|
: (LPARAM)lParam;
|
|
|
|
- (void) decodeWM_NCACTIVATEParams: (WPARAM)wParam : (LPARAM)lParam
|
|
|
|
: (HWND)hwnd;
|
2008-02-14 22:26:00 +00:00
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface WIN32Server (w32_movesize)
|
|
|
|
|
2005-09-14 15:48:11 +00:00
|
|
|
- (LRESULT) decodeWM_SIZEParams: (HWND)hwnd : (WPARAM)wParam : (LPARAM)lParam;
|
|
|
|
- (LRESULT) decodeWM_MOVEParams: (HWND)hwnd : (WPARAM)wParam : (LPARAM)lParam;
|
|
|
|
- (void) decodeWM_NCCALCSIZEParams: (WPARAM)wParam : (LPARAM)lParam : (HWND)hwnd;
|
|
|
|
- (void) decodeWM_WINDOWPOSCHANGINGParams: (WPARAM)wParam : (LPARAM)lParam : (HWND)hwnd;
|
|
|
|
- (void) decodeWM_WINDOWPOSCHANGEDParams: (WPARAM)wParam : (LPARAM)lParam : (HWND)hwnd;
|
|
|
|
- (LRESULT) decodeWM_GETMINMAXINFOParams: (WPARAM)wParam : (LPARAM)lParam : (HWND)hwnd;
|
|
|
|
- (LRESULT) decodeWM_EXITSIZEMOVEParams: (WPARAM)wParam : (LPARAM)lParam : (HWND)hwnd;
|
2005-10-21 03:07:19 +00:00
|
|
|
- (LRESULT) decodeWM_MOVINGParams: (HWND)hwnd : (WPARAM)wParam : (LPARAM)lParam;
|
|
|
|
- (void) decodeWM_SIZINGParams: (HWND)hwnd : (WPARAM)wParam : (LPARAM)lParam;
|
2005-09-14 15:48:11 +00:00
|
|
|
|
2008-02-14 22:26:00 +00:00
|
|
|
@end
|
|
|
|
|
|
|
|
@interface WIN32Server (w32_create)
|
|
|
|
|
2005-09-14 15:48:11 +00:00
|
|
|
- (LRESULT) decodeWM_NCCREATEParams: (WPARAM)wParam : (LPARAM)lParam : (HWND)hwnd;
|
|
|
|
- (LRESULT) decodeWM_CREATEParams: (WPARAM)wParam : (LPARAM)lParam : (HWND)hwnd;
|
|
|
|
|
2008-02-14 22:26:00 +00:00
|
|
|
@end
|
|
|
|
|
|
|
|
@interface WIN32Server (w32_windowdisplay)
|
|
|
|
|
2005-09-14 15:48:11 +00:00
|
|
|
- (void) decodeWM_SHOWWINDOWParams: (WPARAM)wParam : (LPARAM)lParam : (HWND)hwnd;
|
|
|
|
- (void) decodeWM_NCPAINTParams: (WPARAM)wParam : (LPARAM)lParam : (HWND)hwnd;
|
|
|
|
- (LRESULT) decodeWM_ERASEBKGNDParams: (WPARAM)wParam : (LPARAM)lParam : (HWND)hwnd;
|
|
|
|
- (void) decodeWM_PAINTParams: (WPARAM)wParam : (LPARAM)lParam : (HWND)hwnd;
|
|
|
|
- (void) decodeWM_SYNCPAINTParams: (WPARAM)wParam : (LPARAM)lParam : (HWND)hwnd;
|
|
|
|
- (void) decodeWM_CAPTURECHANGEDParams: (WPARAM)wParam : (LPARAM)lParam : (HWND)hwnd;
|
2008-02-14 22:26:00 +00:00
|
|
|
- (HICON) decodeWM_GETICONParams: (WPARAM)wParam : (LPARAM)lParam : (HWND)hwnd;
|
|
|
|
- (HICON) decodeWM_SETICONParams: (WPARAM)wParam : (LPARAM)lParam : (HWND)hwnd;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface WIN32Server (w32_text_focus)
|
2005-09-14 15:48:11 +00:00
|
|
|
|
|
|
|
//- (LRESULT) decodeWM_SETTEXTParams: (WPARAM)wParam : (LPARAM)lParam : (HWND)hwnd;
|
|
|
|
- (LRESULT) decodeWM_SETFOCUSParams: (WPARAM)wParam : (LPARAM)lParam : (HWND)hwnd;
|
|
|
|
- (void) decodeWM_KILLFOCUSParams: (WPARAM)wParam : (LPARAM)lParam : (HWND)hwnd;
|
|
|
|
- (void) decodeWM_GETTEXTParams: (WPARAM)wParam : (LPARAM)lParam : (HWND)hwnd;
|
|
|
|
|
2008-02-14 22:26:00 +00:00
|
|
|
@end
|
|
|
|
|
|
|
|
@interface WIN32Server (w32_General)
|
|
|
|
|
2005-09-14 15:48:11 +00:00
|
|
|
- (void) decodeWM_CLOSEParams: (WPARAM)wParam :(LPARAM)lParam :(HWND)hwnd;
|
|
|
|
- (void) decodeWM_DESTROYParams: (WPARAM)wParam : (LPARAM)lParam : (HWND)hwnd;
|
|
|
|
- (void) decodeWM_NCDESTROYParams: (WPARAM)wParam : (LPARAM)lParam : (HWND)hwnd;
|
|
|
|
- (void) decodeWM_QUERYOPENParams: (WPARAM)wParam : (LPARAM)lParam : (HWND)hwnd;
|
|
|
|
- (void) decodeWM_SYSCOMMANDParams: (WPARAM)wParam : (LPARAM)lParam : (HWND)hwnd;
|
2005-10-21 03:07:19 +00:00
|
|
|
- (void) decodeWM_COMMANDParams: (WPARAM)wParam : (LPARAM)lParam : (HWND)hwnd;
|
2005-09-14 15:48:11 +00:00
|
|
|
|
2002-04-21 22:51:21 +00:00
|
|
|
@end
|
|
|
|
|
|
|
|
typedef struct _win_intern {
|
|
|
|
BOOL useHDC;
|
|
|
|
HDC hdc;
|
2002-04-27 10:12:58 +00:00
|
|
|
HGDIOBJ old;
|
2002-04-21 22:51:21 +00:00
|
|
|
MINMAXINFO minmax;
|
2008-02-14 21:13:17 +00:00
|
|
|
BOOL backingStoreEmpty;
|
2002-04-21 22:51:21 +00:00
|
|
|
} WIN_INTERN;
|
|
|
|
|
|
|
|
#endif /* _WIN32Server_h_INCLUDE */
|