2 * Default window procedure
4 * Copyright 1993, 1996 Alexandre Julliard
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include "wine/port.h"
36 #include "nonclient.h"
40 #include "wine/unicode.h"
41 #include "wine/winuser16.h"
42 #include "wine/server.h"
43 #include "wine/debug.h"
45 WINE_DEFAULT_DEBUG_CHANNEL(win
);
47 /* bits in the dwKeyData */
48 #define KEYDATA_ALT 0x2000
49 #define KEYDATA_PREVSTATE 0x4000
51 static short iF10Key
= 0;
52 static short iMenuSysKey
= 0;
54 /***********************************************************************
55 * DEFWND_HandleWindowPosChanged
57 * Handle the WM_WINDOWPOSCHANGED message.
59 static void DEFWND_HandleWindowPosChanged( HWND hwnd
, UINT flags
)
62 WND
*wndPtr
= WIN_GetPtr( hwnd
);
64 rect
= wndPtr
->rectClient
;
65 WIN_ReleasePtr( wndPtr
);
67 if (!(flags
& SWP_NOCLIENTMOVE
))
68 SendMessageW( hwnd
, WM_MOVE
, 0, MAKELONG(rect
.left
, rect
.top
));
70 if (!(flags
& SWP_NOCLIENTSIZE
))
72 WPARAM wp
= SIZE_RESTORED
;
73 if (IsZoomed(hwnd
)) wp
= SIZE_MAXIMIZED
;
74 else if (IsIconic(hwnd
)) wp
= SIZE_MINIMIZED
;
76 SendMessageW( hwnd
, WM_SIZE
, wp
, MAKELONG(rect
.right
-rect
.left
, rect
.bottom
-rect
.top
) );
81 /***********************************************************************
84 * Set the window text.
86 static void DEFWND_SetTextA( HWND hwnd
, LPCSTR text
)
93 count
= MultiByteToWideChar( CP_ACP
, 0, text
, -1, NULL
, 0 );
95 if (!(wndPtr
= WIN_GetPtr( hwnd
))) return;
96 if ((textW
= HeapAlloc(GetProcessHeap(), 0, count
* sizeof(WCHAR
))))
98 if (wndPtr
->text
) HeapFree(GetProcessHeap(), 0, wndPtr
->text
);
100 MultiByteToWideChar( CP_ACP
, 0, text
, -1, textW
, count
);
101 SERVER_START_REQ( set_window_text
)
104 wine_server_add_data( req
, textW
, (count
-1) * sizeof(WCHAR
) );
105 wine_server_call( req
);
110 ERR("Not enough memory for window text\n");
111 WIN_ReleasePtr( wndPtr
);
113 if (USER_Driver
.pSetWindowText
) USER_Driver
.pSetWindowText( hwnd
, textW
);
116 /***********************************************************************
119 * Set the window text.
121 static void DEFWND_SetTextW( HWND hwnd
, LPCWSTR text
)
123 static const WCHAR empty_string
[] = {0};
127 if (!text
) text
= empty_string
;
128 count
= strlenW(text
) + 1;
130 if (!(wndPtr
= WIN_GetPtr( hwnd
))) return;
131 if (wndPtr
->text
) HeapFree(GetProcessHeap(), 0, wndPtr
->text
);
132 if ((wndPtr
->text
= HeapAlloc(GetProcessHeap(), 0, count
* sizeof(WCHAR
))))
134 strcpyW( wndPtr
->text
, text
);
135 SERVER_START_REQ( set_window_text
)
138 wine_server_add_data( req
, wndPtr
->text
, (count
-1) * sizeof(WCHAR
) );
139 wine_server_call( req
);
144 ERR("Not enough memory for window text\n");
146 WIN_ReleasePtr( wndPtr
);
148 if (USER_Driver
.pSetWindowText
) USER_Driver
.pSetWindowText( hwnd
, text
);
151 /***********************************************************************
152 * DEFWND_ControlColor
154 * Default colors for control painting.
156 HBRUSH
DEFWND_ControlColor( HDC hDC
, UINT ctlType
)
158 if( ctlType
== CTLCOLOR_SCROLLBAR
)
160 HBRUSH hb
= GetSysColorBrush(COLOR_SCROLLBAR
);
161 COLORREF bk
= GetSysColor(COLOR_3DHILIGHT
);
162 SetTextColor( hDC
, GetSysColor(COLOR_3DFACE
));
163 SetBkColor( hDC
, bk
);
165 /* if COLOR_WINDOW happens to be the same as COLOR_3DHILIGHT
166 * we better use 0x55aa bitmap brush to make scrollbar's background
167 * look different from the window background.
169 if (bk
== GetSysColor(COLOR_WINDOW
))
170 return UITOOLS_GetPattern55AABrush();
172 UnrealizeObject( hb
);
176 SetTextColor( hDC
, GetSysColor(COLOR_WINDOWTEXT
));
178 if ((ctlType
== CTLCOLOR_EDIT
) || (ctlType
== CTLCOLOR_LISTBOX
))
179 SetBkColor( hDC
, GetSysColor(COLOR_WINDOW
) );
181 SetBkColor( hDC
, GetSysColor(COLOR_3DFACE
) );
182 return GetSysColorBrush(COLOR_3DFACE
);
184 return GetSysColorBrush(COLOR_WINDOW
);
188 /***********************************************************************
191 static void DEFWND_SetRedraw( HWND hwnd
, WPARAM wParam
)
193 WND
*wndPtr
= WIN_FindWndPtr( hwnd
);
194 BOOL bVisible
= wndPtr
->dwStyle
& WS_VISIBLE
;
196 TRACE("%p %i\n", hwnd
, (wParam
!=0) );
202 WIN_SetStyle( hwnd
, wndPtr
->dwStyle
| WS_VISIBLE
);
203 DCE_InvalidateDCE( hwnd
, &wndPtr
->rectWindow
);
208 if( wndPtr
->dwStyle
& WS_MINIMIZE
) wParam
= RDW_VALIDATE
;
209 else wParam
= RDW_ALLCHILDREN
| RDW_VALIDATE
;
211 RedrawWindow( hwnd
, NULL
, 0, wParam
);
212 DCE_InvalidateDCE( hwnd
, &wndPtr
->rectWindow
);
213 WIN_SetStyle( hwnd
, wndPtr
->dwStyle
& ~WS_VISIBLE
);
215 WIN_ReleaseWndPtr( wndPtr
);
218 /***********************************************************************
221 * This method handles the default behavior for the WM_PRINT message.
223 static void DEFWND_Print( HWND hwnd
, HDC hdc
, ULONG uFlags
)
228 if ( (uFlags
& PRF_CHECKVISIBLE
) &&
229 !IsWindowVisible(hwnd
) )
233 * Unimplemented flags.
235 if ( (uFlags
& PRF_CHILDREN
) ||
236 (uFlags
& PRF_OWNED
) ||
237 (uFlags
& PRF_NONCLIENT
) )
239 WARN("WM_PRINT message with unsupported flags\n");
245 if ( uFlags
& PRF_ERASEBKGND
)
246 SendMessageW(hwnd
, WM_ERASEBKGND
, (WPARAM
)hdc
, 0);
251 if ( uFlags
& PRF_CLIENT
)
252 SendMessageW(hwnd
, WM_PRINTCLIENT
, (WPARAM
)hdc
, PRF_CLIENT
);
257 * helpers for calling IMM32
259 * WM_IME_* messages are generated only by IMM32,
260 * so I assume imm32 is already LoadLibrary-ed.
262 static HWND
DEFWND_ImmGetDefaultIMEWnd( HWND hwnd
)
264 HINSTANCE hInstIMM
= GetModuleHandleA( "imm32" );
265 HWND (WINAPI
*pFunc
)(HWND
);
270 ERR( "cannot get IMM32 handle\n" );
274 pFunc
= (void*)GetProcAddress(hInstIMM
,"ImmGetDefaultIMEWnd");
276 hwndRet
= (*pFunc
)( hwnd
);
281 static BOOL
DEFWND_ImmIsUIMessageA( HWND hwndIME
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
283 HINSTANCE hInstIMM
= GetModuleHandleA( "imm32" );
284 BOOL (WINAPI
*pFunc
)(HWND
,UINT
,WPARAM
,LPARAM
);
289 ERR( "cannot get IMM32 handle\n" );
293 pFunc
= (void*)GetProcAddress(hInstIMM
,"ImmIsUIMessageA");
295 fRet
= (*pFunc
)( hwndIME
, msg
, wParam
, lParam
);
300 static BOOL
DEFWND_ImmIsUIMessageW( HWND hwndIME
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
302 HINSTANCE hInstIMM
= GetModuleHandleA( "imm32" );
303 BOOL (WINAPI
*pFunc
)(HWND
,UINT
,WPARAM
,LPARAM
);
308 ERR( "cannot get IMM32 handle\n" );
312 pFunc
= (void*)GetProcAddress(hInstIMM
,"ImmIsUIMessageW");
314 fRet
= (*pFunc
)( hwndIME
, msg
, wParam
, lParam
);
321 /***********************************************************************
324 * Default window procedure for messages that are the same in Win16 and Win32.
326 static LRESULT
DEFWND_DefWinProc( HWND hwnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
331 return NC_HandleNCPaint( hwnd
, (HRGN
)wParam
);
336 pt
.x
= (short)LOWORD(lParam
);
337 pt
.y
= (short)HIWORD(lParam
);
338 return NC_HandleNCHitTest( hwnd
, pt
);
341 case WM_NCLBUTTONDOWN
:
342 return NC_HandleNCLButtonDown( hwnd
, wParam
, lParam
);
344 case WM_LBUTTONDBLCLK
:
345 case WM_NCLBUTTONDBLCLK
:
346 return NC_HandleNCLButtonDblClk( hwnd
, wParam
, lParam
);
348 case WM_NCRBUTTONDOWN
:
349 /* in Windows, capture is taken when right-clicking on the caption bar */
350 if (wParam
==HTCAPTION
)
360 if (hwnd
== GetCapture())
361 /* release capture if we took it on WM_NCRBUTTONDOWN */
364 pt
.x
= (short)LOWORD(lParam
);
365 pt
.y
= (short)HIWORD(lParam
);
366 ClientToScreen(hwnd
, &pt
);
367 SendMessageW( hwnd
, WM_CONTEXTMENU
, (WPARAM
)hwnd
, MAKELPARAM(pt
.x
, pt
.y
) );
373 * FIXME : we must NOT send WM_CONTEXTMENU on a WM_NCRBUTTONUP (checked
374 * in Windows), but what _should_ we do? According to MSDN :
375 * "If it is appropriate to do so, the system sends the WM_SYSCOMMAND
376 * message to the window". When is it appropriate?
381 if (GetWindowLongW( hwnd
, GWL_STYLE
) & WS_CHILD
)
382 SendMessageW( GetParent(hwnd
), msg
, wParam
, lParam
);
387 WND
*wndPtr
= WIN_GetPtr( hwnd
);
388 HMENU hMenu
= wndPtr
->hSysMenu
;
389 WIN_ReleasePtr( wndPtr
);
390 if (!hMenu
) return 0;
391 pt
.x
= (short)LOWORD(lParam
);
392 pt
.y
= (short)HIWORD(lParam
);
393 hitcode
= NC_HandleNCHitTest(hwnd
, pt
);
395 /* Track system popup if click was in the caption area. */
396 if (hitcode
==HTCAPTION
|| hitcode
==HTSYSMENU
)
397 TrackPopupMenu(GetSystemMenu(hwnd
, FALSE
),
398 TPM_LEFTBUTTON
| TPM_RIGHTBUTTON
,
399 pt
.x
, pt
.y
, 0, hwnd
, NULL
);
404 return NC_HandleNCActivate( hwnd
, wParam
);
408 WND
*wndPtr
= WIN_GetPtr( hwnd
);
409 if (!wndPtr
) return 0;
410 if (wndPtr
->text
) HeapFree( GetProcessHeap(), 0, wndPtr
->text
);
412 if (wndPtr
->pVScroll
) HeapFree( GetProcessHeap(), 0, wndPtr
->pVScroll
);
413 if (wndPtr
->pHScroll
) HeapFree( GetProcessHeap(), 0, wndPtr
->pHScroll
);
414 wndPtr
->pVScroll
= wndPtr
->pHScroll
= NULL
;
415 WIN_ReleasePtr( wndPtr
);
420 DEFWND_Print(hwnd
, (HDC
)wParam
, lParam
);
427 HDC hdc
= BeginPaint( hwnd
, &ps
);
431 if (IsIconic(hwnd
) && ((hIcon
= (HICON
)GetClassLongW( hwnd
, GCL_HICON
))) )
436 GetClientRect( hwnd
, &rc
);
437 x
= (rc
.right
- rc
.left
- GetSystemMetrics(SM_CXICON
))/2;
438 y
= (rc
.bottom
- rc
.top
- GetSystemMetrics(SM_CYICON
))/2;
439 TRACE("Painting class icon: vis rect=(%ld,%ld - %ld,%ld)\n",
440 ps
.rcPaint
.left
, ps
.rcPaint
.top
, ps
.rcPaint
.right
, ps
.rcPaint
.bottom
);
441 DrawIcon( hdc
, x
, y
, hIcon
);
443 EndPaint( hwnd
, &ps
);
449 RedrawWindow ( hwnd
, NULL
, 0, RDW_ERASENOW
| RDW_ERASE
| RDW_ALLCHILDREN
);
453 DEFWND_SetRedraw( hwnd
, wParam
);
457 DestroyWindow( hwnd
);
460 case WM_MOUSEACTIVATE
:
461 if (GetWindowLongW( hwnd
, GWL_STYLE
) & WS_CHILD
)
463 LONG ret
= SendMessageW( GetParent(hwnd
), WM_MOUSEACTIVATE
, wParam
, lParam
);
467 /* Caption clicks are handled by the NC_HandleNCLButtonDown() */
468 return (LOWORD(lParam
) >= HTCLIENT
) ? MA_ACTIVATE
: MA_NOACTIVATE
;
471 /* The default action in Windows is to set the keyboard focus to
472 * the window, if it's being activated and not minimized */
473 if (LOWORD(wParam
) != WA_INACTIVE
) {
474 if (!IsIconic(hwnd
)) SetFocus(hwnd
);
479 if (GetWindowLongW( hwnd
, GWL_STYLE
) & WS_CHILD
)
480 return SendMessageW( GetParent(hwnd
), WM_MOUSEWHEEL
, wParam
, lParam
);
484 case WM_ICONERASEBKGND
:
487 HDC hdc
= (HDC
)wParam
;
488 HBRUSH hbr
= (HBRUSH
)GetClassLongW( hwnd
, GCL_HBRBACKGROUND
);
491 if (GetClassLongW( hwnd
, GCL_STYLE
) & CS_PARENTDC
)
493 /* can't use GetClipBox with a parent DC or we fill the whole parent */
494 GetClientRect( hwnd
, &rect
);
495 DPtoLP( hdc
, (LPPOINT
)&rect
, 2 );
497 else GetClipBox( hdc
, &rect
);
498 FillRect( hdc
, &rect
, hbr
);
505 case WM_CTLCOLORMSGBOX
:
506 case WM_CTLCOLOREDIT
:
507 case WM_CTLCOLORLISTBOX
:
510 case WM_CTLCOLORSTATIC
:
511 case WM_CTLCOLORSCROLLBAR
:
512 return (LRESULT
)DEFWND_ControlColor( (HDC
)wParam
, msg
- WM_CTLCOLORMSGBOX
);
515 return (LRESULT
)DEFWND_ControlColor( (HDC
)wParam
, HIWORD(lParam
) );
518 if (GetWindowLongW( hwnd
, GWL_STYLE
) & WS_CHILD
)
520 /* with the exception of the border around a resizable wnd,
521 * give the parent first chance to set the cursor */
522 if ((LOWORD(lParam
) < HTSIZEFIRST
) || (LOWORD(lParam
) > HTSIZELAST
))
524 if (SendMessageW(GetParent(hwnd
), WM_SETCURSOR
, wParam
, lParam
)) return TRUE
;
527 NC_HandleSetCursor( hwnd
, wParam
, lParam
);
531 return NC_HandleSysCommand( hwnd
, wParam
, lParam
);
534 if(wParam
== VK_F10
) iF10Key
= VK_F10
;
538 if( HIWORD(lParam
) & KEYDATA_ALT
)
540 /* if( HIWORD(lParam) & ~KEYDATA_PREVSTATE ) */
541 if( wParam
== VK_MENU
&& !iMenuSysKey
)
548 if( wParam
== VK_F4
) /* try to close the window */
550 HWND top
= GetAncestor( hwnd
, GA_ROOT
);
551 if (!(GetClassLongW( top
, GCL_STYLE
) & CS_NOCLOSE
))
552 PostMessageW( top
, WM_SYSCOMMAND
, SC_CLOSE
, 0 );
555 else if( wParam
== VK_F10
)
558 if( wParam
== VK_ESCAPE
&& (GetKeyState(VK_SHIFT
) & 0x8000))
559 SendMessageW( hwnd
, WM_SYSCOMMAND
, SC_KEYMENU
, ' ' );
564 /* Press and release F10 or ALT */
565 if (((wParam
== VK_MENU
) && iMenuSysKey
) ||
566 ((wParam
== VK_F10
) && iF10Key
))
567 SendMessageW( GetAncestor( hwnd
, GA_ROOT
), WM_SYSCOMMAND
, SC_KEYMENU
, 0L );
568 iMenuSysKey
= iF10Key
= 0;
574 if (wParam
== '\r' && IsIconic(hwnd
))
576 PostMessageW( hwnd
, WM_SYSCOMMAND
, SC_RESTORE
, 0L );
579 if ((HIWORD(lParam
) & KEYDATA_ALT
) && wParam
)
581 if (wParam
== '\t' || wParam
== '\x1b') break;
582 if (wParam
== ' ' && (GetWindowLongW( hwnd
, GWL_STYLE
) & WS_CHILD
))
583 SendMessageW( GetParent(hwnd
), msg
, wParam
, lParam
);
585 SendMessageW( hwnd
, WM_SYSCOMMAND
, SC_KEYMENU
, wParam
);
587 else /* check for Ctrl-Esc */
588 if (wParam
!= '\x1b') MessageBeep(0);
594 LONG style
= GetWindowLongW( hwnd
, GWL_STYLE
);
595 if (!lParam
) return 0; /* sent from ShowWindow */
596 if (!(style
& WS_POPUP
)) return 0;
597 if ((style
& WS_VISIBLE
) && wParam
) return 0;
598 if (!(style
& WS_VISIBLE
) && !wParam
) return 0;
599 if (!GetWindow( hwnd
, GW_OWNER
)) return 0;
600 ShowWindow( hwnd
, wParam
? SW_SHOWNOACTIVATE
: SW_HIDE
);
605 if (!(GetWindowLongW( hwnd
, GWL_STYLE
) & WS_CHILD
)) EndMenu();
606 if (GetCapture() == hwnd
) ReleaseCapture();
616 case WM_QUERYDROPOBJECT
:
617 return (GetWindowLongA( hwnd
, GWL_EXSTYLE
) & WS_EX_ACCEPTFILES
) != 0;
619 case WM_QUERYDRAGICON
:
623 HICON hIcon
= (HICON
)GetClassLongW( hwnd
, GCL_HICON
);
624 HINSTANCE instance
= (HINSTANCE
)GetWindowLongW( hwnd
, GWL_HINSTANCE
);
625 if (hIcon
) return (LRESULT
)hIcon
;
626 for(len
=1; len
<64; len
++)
627 if((hIcon
= LoadIconW(instance
, MAKEINTRESOURCEW(len
))))
628 return (LRESULT
)hIcon
;
629 return (LRESULT
)LoadIconW(0, (LPWSTR
)IDI_APPLICATION
);
633 case WM_ISACTIVEICON
:
635 WND
*wndPtr
= WIN_GetPtr( hwnd
);
636 BOOL ret
= (wndPtr
->flags
& WIN_NCACTIVATED
) != 0;
637 WIN_ReleasePtr( wndPtr
);
641 case WM_NOTIFYFORMAT
:
642 if (IsWindowUnicode(hwnd
)) return NFR_UNICODE
;
643 else return NFR_ANSI
;
646 case WM_QUERYENDSESSION
:
652 WND
*wndPtr
= WIN_GetPtr( hwnd
);
657 ret
= wndPtr
->hIconSmall
;
658 wndPtr
->hIconSmall
= (HICON
)lParam
;
662 wndPtr
->hIcon
= (HICON
)lParam
;
668 WIN_ReleasePtr( wndPtr
);
670 if (USER_Driver
.pSetWindowIcon
)
671 USER_Driver
.pSetWindowIcon( hwnd
, wParam
, (HICON
)lParam
);
673 SetWindowPos(hwnd
, 0, 0, 0, 0, 0, SWP_FRAMECHANGED
| SWP_NOSIZE
|
674 SWP_NOMOVE
| SWP_NOACTIVATE
| SWP_NOZORDER
);
682 WND
*wndPtr
= WIN_GetPtr( hwnd
);
687 ret
= wndPtr
->hIconSmall
;
693 ret
= wndPtr
->hIconSmall
;
694 if (!ret
) ret
= (HICON
)GetClassLongA( hwnd
, GCL_HICONSM
);
695 /* FIXME: should have a default here if class icon is null */
701 WIN_ReleasePtr( wndPtr
);
706 SendMessageW( GetParent(hwnd
), msg
, wParam
, lParam
);
715 /***********************************************************************
716 * DefWindowProc (USER.107)
718 LRESULT WINAPI
DefWindowProc16( HWND16 hwnd16
, UINT16 msg
, WPARAM16 wParam
,
722 HWND hwnd
= WIN_Handle32( hwnd16
);
724 if (!WIN_IsCurrentProcess( hwnd
))
726 if (!IsWindow( hwnd
)) return 0;
727 ERR( "called for other process window %p\n", hwnd
);
730 SPY_EnterMessage( SPY_DEFWNDPROC16
, hwnd
, msg
, wParam
, lParam
);
736 CREATESTRUCT16
*cs
= MapSL(lParam
);
737 /* check for string, as static icons, bitmaps (SS_ICON, SS_BITMAP)
738 * may have child window IDs instead of window name */
739 if (HIWORD(cs
->lpszName
))
740 DEFWND_SetTextA( hwnd
, MapSL(cs
->lpszName
) );
748 RECT16
*rect16
= MapSL(lParam
);
750 rect32
.left
= rect16
->left
;
751 rect32
.top
= rect16
->top
;
752 rect32
.right
= rect16
->right
;
753 rect32
.bottom
= rect16
->bottom
;
754 result
= NC_HandleNCCalcSize( hwnd
, &rect32
);
755 rect16
->left
= rect32
.left
;
756 rect16
->top
= rect32
.top
;
757 rect16
->right
= rect32
.right
;
758 rect16
->bottom
= rect32
.bottom
;
762 case WM_WINDOWPOSCHANGING
:
763 result
= WINPOS_HandleWindowPosChanging16( hwnd
, MapSL(lParam
) );
766 case WM_WINDOWPOSCHANGED
:
768 WINDOWPOS16
* winPos
= MapSL(lParam
);
769 DEFWND_HandleWindowPosChanged( hwnd
, winPos
->flags
);
775 result
= DefWindowProcA( hwnd
, msg
, wParam
, (LPARAM
)MapSL(lParam
) );
779 result
= DefWindowProcA( hwnd
, msg
, wParam
, lParam
);
783 SPY_ExitMessage( SPY_RESULT_DEFWND16
, hwnd
, msg
, result
, wParam
, lParam
);
788 /***********************************************************************
789 * DefWindowProcA (USER32.@)
792 LRESULT WINAPI
DefWindowProcA( HWND hwnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
797 if (!(full_handle
= WIN_IsCurrentProcess( hwnd
)))
799 if (!IsWindow( hwnd
)) return 0;
800 ERR( "called for other process window %p\n", hwnd
);
805 SPY_EnterMessage( SPY_DEFWNDPROC
, hwnd
, msg
, wParam
, lParam
);
811 CREATESTRUCTA
*cs
= (CREATESTRUCTA
*)lParam
;
812 /* check for string, as static icons, bitmaps (SS_ICON, SS_BITMAP)
813 * may have child window IDs instead of window name */
814 if (HIWORD(cs
->lpszName
))
815 DEFWND_SetTextA( hwnd
, cs
->lpszName
);
821 result
= NC_HandleNCCalcSize( hwnd
, (RECT
*)lParam
);
824 case WM_WINDOWPOSCHANGING
:
825 result
= WINPOS_HandleWindowPosChanging( hwnd
, (WINDOWPOS
*)lParam
);
828 case WM_WINDOWPOSCHANGED
:
830 WINDOWPOS
* winPos
= (WINDOWPOS
*)lParam
;
831 DEFWND_HandleWindowPosChanged( hwnd
, winPos
->flags
);
835 case WM_GETTEXTLENGTH
:
837 WND
*wndPtr
= WIN_GetPtr( hwnd
);
838 if (wndPtr
&& wndPtr
->text
)
839 result
= WideCharToMultiByte( CP_ACP
, 0, wndPtr
->text
, strlenW(wndPtr
->text
),
840 NULL
, 0, NULL
, NULL
);
841 WIN_ReleasePtr( wndPtr
);
848 LPSTR dest
= (LPSTR
)lParam
;
849 WND
*wndPtr
= WIN_GetPtr( hwnd
);
854 if (!WideCharToMultiByte( CP_ACP
, 0, wndPtr
->text
, -1,
855 dest
, wParam
, NULL
, NULL
)) dest
[wParam
-1] = 0;
856 result
= strlen( dest
);
859 WIN_ReleasePtr( wndPtr
);
864 DEFWND_SetTextA( hwnd
, (LPCSTR
)lParam
);
865 if( (GetWindowLongW( hwnd
, GWL_STYLE
) & WS_CAPTION
) == WS_CAPTION
)
866 NC_HandleNCPaint( hwnd
, (HRGN
)1 ); /* Repaint caption */
867 result
= 1; /* success. FIXME: check text length */
870 /* for far east users (IMM32) - <hidenori@a2.ctktv.ne.jp> */
873 CHAR chChar1
= (CHAR
)( (wParam
>>8) & 0xff );
874 CHAR chChar2
= (CHAR
)( wParam
& 0xff );
877 SendMessageA( hwnd
, WM_CHAR
, (WPARAM
)chChar1
, lParam
);
878 SendMessageA( hwnd
, WM_CHAR
, (WPARAM
)chChar2
, lParam
);
882 result
= SendMessageA( hwnd
, WM_KEYDOWN
, wParam
, lParam
);
885 result
= SendMessageA( hwnd
, WM_KEYUP
, wParam
, lParam
);
888 case WM_IME_STARTCOMPOSITION
:
889 case WM_IME_COMPOSITION
:
890 case WM_IME_ENDCOMPOSITION
:
895 hwndIME
= DEFWND_ImmGetDefaultIMEWnd( hwnd
);
897 result
= SendMessageA( hwndIME
, msg
, wParam
, lParam
);
900 case WM_IME_SETCONTEXT
:
904 hwndIME
= DEFWND_ImmGetDefaultIMEWnd( hwnd
);
906 result
= DEFWND_ImmIsUIMessageA( hwndIME
, msg
, wParam
, lParam
);
910 case WM_INPUTLANGCHANGEREQUEST
:
911 /* notify about the switch only if it's really our current layout */
912 if ((HKL
)lParam
== GetKeyboardLayout(0))
913 result
= SendMessageA( hwnd
, WM_INPUTLANGCHANGE
, wParam
, lParam
);
920 BYTE ch
= LOWORD(wParam
);
922 MultiByteToWideChar(CP_ACP
, 0, &ch
, 1, &wch
, 1);
923 wParam
= MAKEWPARAM( wch
, HIWORD(wParam
) );
927 result
= DEFWND_DefWinProc( hwnd
, msg
, wParam
, lParam
);
931 SPY_ExitMessage( SPY_RESULT_DEFWND
, hwnd
, msg
, result
, wParam
, lParam
);
936 /***********************************************************************
937 * DefWindowProcW (USER32.@) Calls default window message handler
939 * Calls default window procedure for messages not processed
943 * Return value is dependent upon the message.
945 LRESULT WINAPI
DefWindowProcW(
946 HWND hwnd
, /* [in] window procedure receiving message */
947 UINT msg
, /* [in] message identifier */
948 WPARAM wParam
, /* [in] first message parameter */
949 LPARAM lParam
) /* [in] second message parameter */
954 if (!(full_handle
= WIN_IsCurrentProcess( hwnd
)))
956 if (!IsWindow( hwnd
)) return 0;
957 ERR( "called for other process window %p\n", hwnd
);
961 SPY_EnterMessage( SPY_DEFWNDPROC
, hwnd
, msg
, wParam
, lParam
);
967 CREATESTRUCTW
*cs
= (CREATESTRUCTW
*)lParam
;
968 /* check for string, as static icons, bitmaps (SS_ICON, SS_BITMAP)
969 * may have child window IDs instead of window name */
970 if (HIWORD(cs
->lpszName
))
971 DEFWND_SetTextW( hwnd
, cs
->lpszName
);
977 result
= NC_HandleNCCalcSize( hwnd
, (RECT
*)lParam
);
980 case WM_WINDOWPOSCHANGING
:
981 result
= WINPOS_HandleWindowPosChanging( hwnd
, (WINDOWPOS
*)lParam
);
984 case WM_WINDOWPOSCHANGED
:
986 WINDOWPOS
* winPos
= (WINDOWPOS
*)lParam
;
987 DEFWND_HandleWindowPosChanged( hwnd
, winPos
->flags
);
991 case WM_GETTEXTLENGTH
:
993 WND
*wndPtr
= WIN_GetPtr( hwnd
);
994 if (wndPtr
&& wndPtr
->text
) result
= (LRESULT
)strlenW(wndPtr
->text
);
995 WIN_ReleasePtr( wndPtr
);
1002 LPWSTR dest
= (LPWSTR
)lParam
;
1003 WND
*wndPtr
= WIN_GetPtr( hwnd
);
1008 lstrcpynW( dest
, wndPtr
->text
, wParam
);
1009 result
= strlenW( dest
);
1011 else dest
[0] = '\0';
1012 WIN_ReleasePtr( wndPtr
);
1017 DEFWND_SetTextW( hwnd
, (LPCWSTR
)lParam
);
1018 if( (GetWindowLongW( hwnd
, GWL_STYLE
) & WS_CAPTION
) == WS_CAPTION
)
1019 NC_HandleNCPaint( hwnd
, (HRGN
)1 ); /* Repaint caption */
1020 result
= 1; /* success. FIXME: check text length */
1023 /* for far east users (IMM32) - <hidenori@a2.ctktv.ne.jp> */
1025 SendMessageW( hwnd
, WM_CHAR
, wParam
, lParam
);
1027 case WM_IME_SETCONTEXT
:
1031 hwndIME
= DEFWND_ImmGetDefaultIMEWnd( hwnd
);
1033 result
= DEFWND_ImmIsUIMessageW( hwndIME
, msg
, wParam
, lParam
);
1037 case WM_INPUTLANGCHANGEREQUEST
:
1038 /* notify about the switch only if it's really our current layout */
1039 if ((HKL
)lParam
== GetKeyboardLayout(0))
1040 result
= SendMessageW( hwnd
, WM_INPUTLANGCHANGE
, wParam
, lParam
);
1046 result
= DEFWND_DefWinProc( hwnd
, msg
, wParam
, lParam
);
1049 SPY_ExitMessage( SPY_RESULT_DEFWND
, hwnd
, msg
, result
, wParam
, lParam
);