Make sure that HWND comparisons are always done with full 32-bit
[wine/multimedia.git] / windows / defwnd.c
blob73e6522a1eb748711ce6d0b5f56cc7dc61d4669e
1 /*
2 * Default window procedure
4 * Copyright 1993, 1996 Alexandre Julliard
5 * 1995 Alex Korobka
6 */
8 #include <string.h>
10 #include "win.h"
11 #include "user.h"
12 #include "nonclient.h"
13 #include "winpos.h"
14 #include "dce.h"
15 #include "debugtools.h"
16 #include "spy.h"
17 #include "windef.h"
18 #include "wingdi.h"
19 #include "winnls.h"
20 #include "wine/unicode.h"
21 #include "wine/winuser16.h"
22 #include "imm.h"
24 DEFAULT_DEBUG_CHANNEL(win);
26 /* bits in the dwKeyData */
27 #define KEYDATA_ALT 0x2000
28 #define KEYDATA_PREVSTATE 0x4000
30 static short iF10Key = 0;
31 static short iMenuSysKey = 0;
33 /***********************************************************************
34 * DEFWND_HandleWindowPosChanged
36 * Handle the WM_WINDOWPOSCHANGED message.
38 static void DEFWND_HandleWindowPosChanged( HWND hwnd, UINT flags )
40 RECT rect;
41 WND *wndPtr = WIN_FindWndPtr( hwnd );
43 rect = wndPtr->rectClient;
44 WIN_ReleaseWndPtr( wndPtr );
46 if (!(flags & SWP_NOCLIENTMOVE))
47 SendMessageW( hwnd, WM_MOVE, 0, MAKELONG(rect.left, rect.top));
49 if (!(flags & SWP_NOCLIENTSIZE))
51 WPARAM wp = SIZE_RESTORED;
52 if (IsZoomed(hwnd)) wp = SIZE_MAXIMIZED;
53 else if (IsIconic(hwnd)) wp = SIZE_MINIMIZED;
55 SendMessageW( hwnd, WM_SIZE, wp, MAKELONG(rect.right-rect.left, rect.bottom-rect.top) );
60 /***********************************************************************
61 * DEFWND_SetTextA
63 * Set the window text.
65 static void DEFWND_SetTextA( HWND hwnd, LPCSTR text )
67 int count;
68 WCHAR *textW;
69 WND *wndPtr;
71 if (!text) text = "";
72 count = MultiByteToWideChar( CP_ACP, 0, text, -1, NULL, 0 );
74 if (!(wndPtr = WIN_FindWndPtr( hwnd ))) return;
75 if (wndPtr->text) HeapFree(GetProcessHeap(), 0, wndPtr->text);
76 if ((wndPtr->text = textW = HeapAlloc(GetProcessHeap(), 0, count * sizeof(WCHAR))))
77 MultiByteToWideChar( CP_ACP, 0, text, -1, wndPtr->text, count );
78 else
79 ERR("Not enough memory for window text\n");
80 WIN_ReleaseWndPtr( wndPtr );
82 if (USER_Driver.pSetWindowText) USER_Driver.pSetWindowText( hwnd, textW );
85 /***********************************************************************
86 * DEFWND_SetTextW
88 * Set the window text.
90 static void DEFWND_SetTextW( HWND hwnd, LPCWSTR text )
92 static const WCHAR empty_string[] = {0};
93 WND *wndPtr;
94 int count;
96 if (!text) text = empty_string;
97 count = strlenW(text) + 1;
99 if (!(wndPtr = WIN_FindWndPtr( hwnd ))) return;
100 if (wndPtr->text) HeapFree(GetProcessHeap(), 0, wndPtr->text);
101 if ((wndPtr->text = HeapAlloc(GetProcessHeap(), 0, count * sizeof(WCHAR))))
102 strcpyW( wndPtr->text, text );
103 else
104 ERR("Not enough memory for window text\n");
105 text = wndPtr->text;
106 WIN_ReleaseWndPtr( wndPtr );
108 if (USER_Driver.pSetWindowText) USER_Driver.pSetWindowText( hwnd, text );
111 /***********************************************************************
112 * DEFWND_ControlColor
114 * Default colors for control painting.
116 HBRUSH DEFWND_ControlColor( HDC hDC, UINT ctlType )
118 if( ctlType == CTLCOLOR_SCROLLBAR)
120 HBRUSH hb = GetSysColorBrush(COLOR_SCROLLBAR);
121 if (TWEAK_WineLook == WIN31_LOOK) {
122 SetTextColor( hDC, RGB(0, 0, 0) );
123 SetBkColor( hDC, RGB(255, 255, 255) );
124 } else {
125 COLORREF bk = GetSysColor(COLOR_3DHILIGHT);
126 SetTextColor( hDC, GetSysColor(COLOR_3DFACE));
127 SetBkColor( hDC, bk);
129 /* if COLOR_WINDOW happens to be the same as COLOR_3DHILIGHT
130 * we better use 0x55aa bitmap brush to make scrollbar's background
131 * look different from the window background.
133 if (bk == GetSysColor(COLOR_WINDOW)) {
134 return CACHE_GetPattern55AABrush();
137 UnrealizeObject( hb );
138 return hb;
141 SetTextColor( hDC, GetSysColor(COLOR_WINDOWTEXT));
143 if (TWEAK_WineLook > WIN31_LOOK) {
144 if ((ctlType == CTLCOLOR_EDIT) || (ctlType == CTLCOLOR_LISTBOX))
145 SetBkColor( hDC, GetSysColor(COLOR_WINDOW) );
146 else {
147 SetBkColor( hDC, GetSysColor(COLOR_3DFACE) );
148 return GetSysColorBrush(COLOR_3DFACE);
151 else
152 SetBkColor( hDC, GetSysColor(COLOR_WINDOW) );
153 return GetSysColorBrush(COLOR_WINDOW);
157 /***********************************************************************
158 * DEFWND_SetRedraw
160 static void DEFWND_SetRedraw( HWND hwnd, WPARAM wParam )
162 WND *wndPtr = WIN_FindWndPtr( hwnd );
163 BOOL bVisible = wndPtr->dwStyle & WS_VISIBLE;
165 TRACE("%04x %i\n", hwnd, (wParam!=0) );
167 if( wParam )
169 if( !bVisible )
171 wndPtr->dwStyle |= WS_VISIBLE;
172 DCE_InvalidateDCE( hwnd, &wndPtr->rectWindow );
175 else if( bVisible )
177 if( wndPtr->dwStyle & WS_MINIMIZE ) wParam = RDW_VALIDATE;
178 else wParam = RDW_ALLCHILDREN | RDW_VALIDATE;
180 RedrawWindow( hwnd, NULL, 0, wParam );
181 DCE_InvalidateDCE( hwnd, &wndPtr->rectWindow );
182 wndPtr->dwStyle &= ~WS_VISIBLE;
184 WIN_ReleaseWndPtr( wndPtr );
187 /***********************************************************************
188 * DEFWND_Print
190 * This method handles the default behavior for the WM_PRINT message.
192 static void DEFWND_Print( HWND hwnd, HDC hdc, ULONG uFlags)
195 * Visibility flag.
197 if ( (uFlags & PRF_CHECKVISIBLE) &&
198 !IsWindowVisible(hwnd) )
199 return;
202 * Unimplemented flags.
204 if ( (uFlags & PRF_CHILDREN) ||
205 (uFlags & PRF_OWNED) ||
206 (uFlags & PRF_NONCLIENT) )
208 WARN("WM_PRINT message with unsupported flags\n");
212 * Background
214 if ( uFlags & PRF_ERASEBKGND)
215 SendMessageW(hwnd, WM_ERASEBKGND, (WPARAM)hdc, 0);
218 * Client area
220 if ( uFlags & PRF_CLIENT)
221 SendMessageW(hwnd, WM_PRINTCLIENT, (WPARAM)hdc, PRF_CLIENT);
226 * helpers for calling IMM32
228 * WM_IME_* messages are generated only by IMM32,
229 * so I assume imm32 is already LoadLibrary-ed.
231 static HWND DEFWND_ImmGetDefaultIMEWnd( HWND hwnd )
233 HINSTANCE hInstIMM = GetModuleHandleA( "imm32" );
234 HWND WINAPI (*pFunc)(HWND);
235 HWND hwndRet = 0;
237 if (!hInstIMM)
239 ERR( "cannot get IMM32 handle\n" );
240 return 0;
243 pFunc = (void*)GetProcAddress(hInstIMM,"ImmGetDefaultIMEWnd");
244 if ( pFunc != NULL )
245 hwndRet = (*pFunc)( hwnd );
247 return hwndRet;
250 static BOOL DEFWND_ImmIsUIMessageA( HWND hwndIME, UINT msg, WPARAM wParam, LPARAM lParam )
252 HINSTANCE hInstIMM = GetModuleHandleA( "imm32" );
253 BOOL WINAPI (*pFunc)(HWND,UINT,WPARAM,LPARAM);
254 BOOL fRet = FALSE;
256 if (!hInstIMM)
258 ERR( "cannot get IMM32 handle\n" );
259 return FALSE;
262 pFunc = (void*)GetProcAddress(hInstIMM,"ImmIsUIMessageA");
263 if ( pFunc != NULL )
264 fRet = (*pFunc)( hwndIME, msg, wParam, lParam );
266 return fRet;
269 static BOOL DEFWND_ImmIsUIMessageW( HWND hwndIME, UINT msg, WPARAM wParam, LPARAM lParam )
271 HINSTANCE hInstIMM = GetModuleHandleA( "imm32" );
272 BOOL WINAPI (*pFunc)(HWND,UINT,WPARAM,LPARAM);
273 BOOL fRet = FALSE;
275 if (!hInstIMM)
277 ERR( "cannot get IMM32 handle\n" );
278 return FALSE;
281 pFunc = (void*)GetProcAddress(hInstIMM,"ImmIsUIMessageW");
282 if ( pFunc != NULL )
283 fRet = (*pFunc)( hwndIME, msg, wParam, lParam );
285 return fRet;
290 /***********************************************************************
291 * DEFWND_DefWinProc
293 * Default window procedure for messages that are the same in Win16 and Win32.
295 static LRESULT DEFWND_DefWinProc( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam )
297 switch(msg)
299 case WM_NCPAINT:
300 return NC_HandleNCPaint( hwnd, (HRGN)wParam );
302 case WM_NCHITTEST:
304 POINT pt;
305 pt.x = SLOWORD(lParam);
306 pt.y = SHIWORD(lParam);
307 return NC_HandleNCHitTest( hwnd, pt );
310 case WM_NCLBUTTONDOWN:
311 return NC_HandleNCLButtonDown( hwnd, wParam, lParam );
313 case WM_LBUTTONDBLCLK:
314 case WM_NCLBUTTONDBLCLK:
315 return NC_HandleNCLButtonDblClk( hwnd, wParam, lParam );
317 case WM_NCRBUTTONDOWN:
318 /* in Windows, capture is taken when right-clicking on the caption bar */
319 if (wParam==HTCAPTION)
321 SetCapture(hwnd);
323 break;
325 case WM_RBUTTONUP:
327 POINT pt;
329 if (hwnd == GetCapture())
330 /* release capture if we took it on WM_NCRBUTTONDOWN */
331 ReleaseCapture();
333 pt.x = SLOWORD(lParam);
334 pt.y = SHIWORD(lParam);
335 ClientToScreen(hwnd, &pt);
336 SendMessageW( hwnd, WM_CONTEXTMENU, hwnd, MAKELPARAM(pt.x, pt.y) );
338 break;
340 case WM_NCRBUTTONUP:
342 * FIXME : we must NOT send WM_CONTEXTMENU on a WM_NCRBUTTONUP (checked
343 * in Windows), but what _should_ we do? According to MSDN :
344 * "If it is appropriate to do so, the system sends the WM_SYSCOMMAND
345 * message to the window". When is it appropriate?
347 break;
349 case WM_CONTEXTMENU:
350 if (GetWindowLongW( hwnd, GWL_STYLE ) & WS_CHILD)
351 SendMessageW( GetParent(hwnd), msg, wParam, lParam );
352 else
354 LONG hitcode;
355 POINT pt;
356 WND *wndPtr = WIN_FindWndPtr( hwnd );
357 HMENU hMenu = wndPtr->hSysMenu;
358 WIN_ReleaseWndPtr( wndPtr );
359 if (!hMenu) return 0;
360 pt.x = SLOWORD(lParam);
361 pt.y = SHIWORD(lParam);
362 hitcode = NC_HandleNCHitTest(hwnd, pt);
364 /* Track system popup if click was in the caption area. */
365 if (hitcode==HTCAPTION || hitcode==HTSYSMENU)
366 TrackPopupMenu(GetSystemMenu(hwnd, FALSE),
367 TPM_LEFTBUTTON | TPM_RIGHTBUTTON,
368 pt.x, pt.y, 0, hwnd, NULL);
370 break;
372 case WM_NCACTIVATE:
373 return NC_HandleNCActivate( hwnd, wParam );
375 case WM_NCDESTROY:
377 WND *wndPtr = WIN_FindWndPtr( hwnd );
378 if (!wndPtr) return 0;
379 if (wndPtr->text) HeapFree( GetProcessHeap(), 0, wndPtr->text );
380 wndPtr->text = NULL;
381 if (wndPtr->pVScroll) HeapFree( GetProcessHeap(), 0, wndPtr->pVScroll );
382 if (wndPtr->pHScroll) HeapFree( GetProcessHeap(), 0, wndPtr->pHScroll );
383 wndPtr->pVScroll = wndPtr->pHScroll = NULL;
384 WIN_ReleaseWndPtr( wndPtr );
385 return 0;
388 case WM_PRINT:
389 DEFWND_Print(hwnd, (HDC)wParam, lParam);
390 return 0;
392 case WM_PAINTICON:
393 case WM_PAINT:
395 PAINTSTRUCT ps;
396 HDC hdc = BeginPaint( hwnd, &ps );
397 if( hdc )
399 HICON hIcon;
400 if (IsIconic(hwnd) && ((hIcon = GetClassLongW( hwnd, GCL_HICON))) )
402 RECT rc;
403 int x, y;
405 GetClientRect( hwnd, &rc );
406 x = (rc.right - rc.left - GetSystemMetrics(SM_CXICON))/2;
407 y = (rc.bottom - rc.top - GetSystemMetrics(SM_CYICON))/2;
408 TRACE("Painting class icon: vis rect=(%i,%i - %i,%i)\n",
409 ps.rcPaint.left, ps.rcPaint.top, ps.rcPaint.right, ps.rcPaint.bottom );
410 DrawIcon( hdc, x, y, hIcon );
412 EndPaint( hwnd, &ps );
414 return 0;
417 case WM_SYNCPAINT:
418 RedrawWindow ( hwnd, NULL, 0, RDW_ERASENOW | RDW_ERASE | RDW_ALLCHILDREN );
419 return 0;
421 case WM_SETREDRAW:
422 DEFWND_SetRedraw( hwnd, wParam );
423 return 0;
425 case WM_CLOSE:
426 DestroyWindow( hwnd );
427 return 0;
429 case WM_MOUSEACTIVATE:
430 if (GetWindowLongW( hwnd, GWL_STYLE ) & WS_CHILD)
432 LONG ret = SendMessageW( GetParent(hwnd), WM_MOUSEACTIVATE, wParam, lParam );
433 if (ret) return ret;
436 /* Caption clicks are handled by the NC_HandleNCLButtonDown() */
437 return (LOWORD(lParam) >= HTCLIENT) ? MA_ACTIVATE : MA_NOACTIVATE;
439 case WM_ACTIVATE:
440 /* The default action in Windows is to set the keyboard focus to
441 * the window, if it's being activated and not minimized */
442 if (LOWORD(wParam) != WA_INACTIVE) {
443 if (!IsIconic(hwnd)) SetFocus(hwnd);
445 break;
447 case WM_MOUSEWHEEL:
448 if (GetWindowLongW( hwnd, GWL_STYLE ) & WS_CHILD)
449 return SendMessageW( GetParent(hwnd), WM_MOUSEWHEEL, wParam, lParam );
450 break;
452 case WM_ERASEBKGND:
453 case WM_ICONERASEBKGND:
455 RECT rect;
456 HDC hdc = (HDC)wParam;
457 HBRUSH hbr = GetClassLongW( hwnd, GCL_HBRBACKGROUND );
458 if (!hbr) return 0;
460 if (GetClassLongW( hwnd, GCL_STYLE ) & CS_PARENTDC)
462 /* can't use GetClipBox with a parent DC or we fill the whole parent */
463 GetClientRect( hwnd, &rect );
464 DPtoLP( hdc, (LPPOINT)&rect, 2 );
466 else GetClipBox( hdc, &rect );
467 FillRect( hdc, &rect, hbr );
468 return 1;
471 case WM_GETDLGCODE:
472 return 0;
474 case WM_CTLCOLORMSGBOX:
475 case WM_CTLCOLOREDIT:
476 case WM_CTLCOLORLISTBOX:
477 case WM_CTLCOLORBTN:
478 case WM_CTLCOLORDLG:
479 case WM_CTLCOLORSTATIC:
480 case WM_CTLCOLORSCROLLBAR:
481 return (LRESULT)DEFWND_ControlColor( (HDC)wParam, msg - WM_CTLCOLORMSGBOX );
483 case WM_CTLCOLOR:
484 return (LRESULT)DEFWND_ControlColor( (HDC)wParam, HIWORD(lParam) );
486 case WM_SETCURSOR:
487 if (GetWindowLongW( hwnd, GWL_STYLE ) & WS_CHILD)
489 /* with the exception of the border around a resizable wnd,
490 * give the parent first chance to set the cursor */
491 if ((LOWORD(lParam) < HTSIZEFIRST) || (LOWORD(lParam) > HTSIZELAST))
493 if (SendMessageW(GetParent(hwnd), WM_SETCURSOR, wParam, lParam)) return TRUE;
496 return NC_HandleSetCursor( hwnd, wParam, lParam );
498 case WM_SYSCOMMAND:
500 POINT pt;
501 pt.x = SLOWORD(lParam);
502 pt.y = SHIWORD(lParam);
503 return NC_HandleSysCommand( hwnd, wParam, pt );
506 case WM_KEYDOWN:
507 if(wParam == VK_F10) iF10Key = VK_F10;
508 break;
510 case WM_SYSKEYDOWN:
511 if( HIWORD(lParam) & KEYDATA_ALT )
513 /* if( HIWORD(lParam) & ~KEYDATA_PREVSTATE ) */
514 if( wParam == VK_MENU && !iMenuSysKey )
515 iMenuSysKey = 1;
516 else
517 iMenuSysKey = 0;
519 iF10Key = 0;
521 if( wParam == VK_F4 ) /* try to close the window */
523 HWND top = GetAncestor( hwnd, GA_ROOT );
524 if (!(GetClassLongW( top, GCL_STYLE ) & CS_NOCLOSE))
525 PostMessageW( top, WM_SYSCOMMAND, SC_CLOSE, 0 );
528 else if( wParam == VK_F10 )
529 iF10Key = 1;
530 else
531 if( wParam == VK_ESCAPE && (GetKeyState(VK_SHIFT) & 0x8000))
532 SendMessageW( hwnd, WM_SYSCOMMAND, SC_KEYMENU, VK_SPACE );
533 break;
535 case WM_KEYUP:
536 case WM_SYSKEYUP:
537 /* Press and release F10 or ALT */
538 if (((wParam == VK_MENU) && iMenuSysKey) ||
539 ((wParam == VK_F10) && iF10Key))
540 SendMessageW( GetAncestor( hwnd, GA_ROOT ), WM_SYSCOMMAND, SC_KEYMENU, 0L );
541 iMenuSysKey = iF10Key = 0;
542 break;
544 case WM_SYSCHAR:
545 iMenuSysKey = 0;
546 if (wParam == VK_RETURN && IsIconic(hwnd))
548 PostMessageW( hwnd, WM_SYSCOMMAND, SC_RESTORE, 0L );
549 break;
551 if ((HIWORD(lParam) & KEYDATA_ALT) && wParam)
553 if (wParam == VK_TAB || wParam == VK_ESCAPE) break;
554 if (wParam == VK_SPACE && (GetWindowLongW( hwnd, GWL_STYLE ) & WS_CHILD))
555 SendMessageW( GetParent(hwnd), msg, wParam, lParam );
556 else
557 SendMessageW( hwnd, WM_SYSCOMMAND, SC_KEYMENU, wParam );
559 else /* check for Ctrl-Esc */
560 if (wParam != VK_ESCAPE) MessageBeep(0);
561 break;
563 case WM_SHOWWINDOW:
565 LONG style = GetWindowLongW( hwnd, GWL_STYLE );
566 if (!lParam) return 0; /* sent from ShowWindow */
567 if (!(style & WS_POPUP)) return 0;
568 if ((style & WS_VISIBLE) && wParam) return 0;
569 if (!(style & WS_VISIBLE) && !wParam) return 0;
570 if (!GetWindow( hwnd, GW_OWNER )) return 0;
571 ShowWindow( hwnd, wParam ? SW_SHOWNOACTIVATE : SW_HIDE );
572 break;
575 case WM_CANCELMODE:
576 if (!(GetWindowLongW( hwnd, GWL_STYLE ) & WS_CHILD)) EndMenu();
577 if (GetCapture() == hwnd) ReleaseCapture();
578 break;
580 case WM_VKEYTOITEM:
581 case WM_CHARTOITEM:
582 return -1;
584 case WM_DROPOBJECT:
585 return DRAG_FILE;
587 case WM_QUERYDROPOBJECT:
588 return (GetWindowLongA( hwnd, GWL_EXSTYLE ) & WS_EX_ACCEPTFILES) != 0;
590 case WM_QUERYDRAGICON:
592 UINT len;
594 HICON hIcon = GetClassLongW( hwnd, GCL_HICON );
595 HINSTANCE instance = GetWindowLongW( hwnd, GWL_HINSTANCE );
596 if (hIcon) return hIcon;
597 for(len=1; len<64; len++)
598 if((hIcon = LoadIconW(instance, MAKEINTRESOURCEW(len))))
599 return (LRESULT)hIcon;
600 return (LRESULT)LoadIconW(0, IDI_APPLICATIONW);
602 break;
604 case WM_ISACTIVEICON:
606 WND *wndPtr = WIN_FindWndPtr( hwnd );
607 BOOL ret = (wndPtr->flags & WIN_NCACTIVATED) != 0;
608 WIN_ReleaseWndPtr( wndPtr );
609 return ret;
612 case WM_NOTIFYFORMAT:
613 if (IsWindowUnicode(hwnd)) return NFR_UNICODE;
614 else return NFR_ANSI;
616 case WM_QUERYOPEN:
617 case WM_QUERYENDSESSION:
618 return 1;
620 case WM_SETICON:
621 if (USER_Driver.pSetWindowIcon)
622 return USER_Driver.pSetWindowIcon( hwnd, lParam, (wParam != ICON_SMALL) );
623 else
625 int index = (wParam != ICON_SMALL) ? GCL_HICON : GCL_HICONSM;
626 HICON hOldIcon = GetClassLongW(hwnd, index);
627 SetClassLongW(hwnd, index, lParam);
629 SetWindowPos(hwnd, 0, 0, 0, 0, 0, SWP_FRAMECHANGED
630 | SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE
631 | SWP_NOZORDER);
632 return hOldIcon;
635 case WM_GETICON:
637 int index = (wParam != ICON_SMALL) ? GCL_HICON : GCL_HICONSM;
638 return GetClassLongW(hwnd, index);
641 case WM_HELP:
642 SendMessageW( GetParent(hwnd), msg, wParam, lParam );
643 break;
646 return 0;
651 /***********************************************************************
652 * DefWindowProc (USER.107)
654 LRESULT WINAPI DefWindowProc16( HWND16 hwnd, UINT16 msg, WPARAM16 wParam,
655 LPARAM lParam )
657 LRESULT result = 0;
659 if (!IsWindow( hwnd )) return 0;
660 SPY_EnterMessage( SPY_DEFWNDPROC16, hwnd, msg, wParam, lParam );
662 switch(msg)
664 case WM_NCCREATE:
666 CREATESTRUCT16 *cs = MapSL(lParam);
667 /* check for string, as static icons, bitmaps (SS_ICON, SS_BITMAP)
668 * may have child window IDs instead of window name */
669 if (HIWORD(cs->lpszName))
670 DEFWND_SetTextA( hwnd, MapSL(cs->lpszName) );
671 result = 1;
673 break;
675 case WM_NCCALCSIZE:
677 RECT rect32;
678 CONV_RECT16TO32( MapSL(lParam), &rect32 );
679 result = NC_HandleNCCalcSize( hwnd, &rect32 );
680 CONV_RECT32TO16( &rect32, MapSL(lParam) );
682 break;
684 case WM_WINDOWPOSCHANGING:
685 result = WINPOS_HandleWindowPosChanging16( hwnd, MapSL(lParam) );
686 break;
688 case WM_WINDOWPOSCHANGED:
690 WINDOWPOS16 * winPos = MapSL(lParam);
691 DEFWND_HandleWindowPosChanged( hwnd, winPos->flags );
693 break;
695 case WM_GETTEXT:
696 case WM_SETTEXT:
697 result = DefWindowProcA( hwnd, msg, wParam, (LPARAM)MapSL(lParam) );
698 break;
700 default:
701 result = DefWindowProcA( hwnd, msg, wParam, lParam );
702 break;
705 SPY_ExitMessage( SPY_RESULT_DEFWND16, hwnd, msg, result, wParam, lParam );
706 return result;
710 /***********************************************************************
711 * DefWindowProcA (USER32.@)
714 LRESULT WINAPI DefWindowProcA( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam )
716 LRESULT result = 0;
718 if (!IsWindow( hwnd )) return 0;
719 hwnd = WIN_GetFullHandle( hwnd );
720 SPY_EnterMessage( SPY_DEFWNDPROC, hwnd, msg, wParam, lParam );
722 switch(msg)
724 case WM_NCCREATE:
726 CREATESTRUCTA *cs = (CREATESTRUCTA *)lParam;
727 /* check for string, as static icons, bitmaps (SS_ICON, SS_BITMAP)
728 * may have child window IDs instead of window name */
729 if (HIWORD(cs->lpszName))
730 DEFWND_SetTextA( hwnd, cs->lpszName );
731 result = 1;
733 break;
735 case WM_NCCALCSIZE:
736 result = NC_HandleNCCalcSize( hwnd, (RECT *)lParam );
737 break;
739 case WM_WINDOWPOSCHANGING:
740 result = WINPOS_HandleWindowPosChanging( hwnd, (WINDOWPOS *)lParam );
741 break;
743 case WM_WINDOWPOSCHANGED:
745 WINDOWPOS * winPos = (WINDOWPOS *)lParam;
746 DEFWND_HandleWindowPosChanged( hwnd, winPos->flags );
748 break;
750 case WM_GETTEXTLENGTH:
752 WND *wndPtr = WIN_FindWndPtr( hwnd );
753 if (wndPtr && wndPtr->text)
754 result = WideCharToMultiByte( CP_ACP, 0, wndPtr->text, strlenW(wndPtr->text),
755 NULL, 0, NULL, NULL );
756 WIN_ReleaseWndPtr( wndPtr );
758 break;
760 case WM_GETTEXT:
762 WND *wndPtr = WIN_FindWndPtr( hwnd );
763 if (wParam && wndPtr && wndPtr->text)
765 LPSTR dest = (LPSTR)lParam;
766 if (!WideCharToMultiByte( CP_ACP, 0, wndPtr->text, -1,
767 dest, wParam, NULL, NULL )) dest[wParam-1] = 0;
768 result = strlen( dest );
770 WIN_ReleaseWndPtr( wndPtr );
772 break;
774 case WM_SETTEXT:
775 DEFWND_SetTextA( hwnd, (LPCSTR)lParam );
776 if( (GetWindowLongW( hwnd, GWL_STYLE ) & WS_CAPTION) == WS_CAPTION )
777 NC_HandleNCPaint( hwnd , (HRGN)1 ); /* Repaint caption */
778 result = 1; /* success. FIXME: check text length */
779 break;
781 /* for far east users (IMM32) - <hidenori@a2.ctktv.ne.jp> */
782 case WM_IME_CHAR:
784 CHAR chChar1 = (CHAR)( (wParam>>8) & 0xff );
785 CHAR chChar2 = (CHAR)( wParam & 0xff );
787 SendMessageA( hwnd, WM_CHAR, (WPARAM)chChar1, lParam );
788 if ( IsDBCSLeadByte( chChar1 ) )
789 SendMessageA( hwnd, WM_CHAR, (WPARAM)chChar2, lParam );
791 break;
792 case WM_IME_KEYDOWN:
793 result = SendMessageA( hwnd, WM_KEYDOWN, wParam, lParam );
794 break;
795 case WM_IME_KEYUP:
796 result = SendMessageA( hwnd, WM_KEYUP, wParam, lParam );
797 break;
799 case WM_IME_STARTCOMPOSITION:
800 case WM_IME_COMPOSITION:
801 case WM_IME_ENDCOMPOSITION:
802 case WM_IME_SELECT:
804 HWND hwndIME;
806 hwndIME = DEFWND_ImmGetDefaultIMEWnd( hwnd );
807 if (hwndIME)
808 result = SendMessageA( hwndIME, msg, wParam, lParam );
810 break;
811 case WM_IME_SETCONTEXT:
813 HWND hwndIME;
815 hwndIME = DEFWND_ImmGetDefaultIMEWnd( hwnd );
816 if (hwndIME)
817 result = DEFWND_ImmIsUIMessageA( hwndIME, msg, wParam, lParam );
819 break;
821 default:
822 result = DEFWND_DefWinProc( hwnd, msg, wParam, lParam );
823 break;
826 SPY_ExitMessage( SPY_RESULT_DEFWND, hwnd, msg, result, wParam, lParam );
827 return result;
831 /***********************************************************************
832 * DefWindowProcW (USER32.@) Calls default window message handler
834 * Calls default window procedure for messages not processed
835 * by application.
837 * RETURNS
838 * Return value is dependent upon the message.
840 LRESULT WINAPI DefWindowProcW(
841 HWND hwnd, /* [in] window procedure receiving message */
842 UINT msg, /* [in] message identifier */
843 WPARAM wParam, /* [in] first message parameter */
844 LPARAM lParam ) /* [in] second message parameter */
846 LRESULT result = 0;
848 if (!IsWindow( hwnd )) return 0;
849 hwnd = WIN_GetFullHandle( hwnd );
850 SPY_EnterMessage( SPY_DEFWNDPROC, hwnd, msg, wParam, lParam );
852 switch(msg)
854 case WM_NCCREATE:
856 CREATESTRUCTW *cs = (CREATESTRUCTW *)lParam;
857 /* check for string, as static icons, bitmaps (SS_ICON, SS_BITMAP)
858 * may have child window IDs instead of window name */
859 if (HIWORD(cs->lpszName))
860 DEFWND_SetTextW( hwnd, cs->lpszName );
861 result = 1;
863 break;
865 case WM_NCCALCSIZE:
866 result = NC_HandleNCCalcSize( hwnd, (RECT *)lParam );
867 break;
869 case WM_WINDOWPOSCHANGING:
870 result = WINPOS_HandleWindowPosChanging( hwnd, (WINDOWPOS *)lParam );
871 break;
873 case WM_WINDOWPOSCHANGED:
875 WINDOWPOS * winPos = (WINDOWPOS *)lParam;
876 DEFWND_HandleWindowPosChanged( hwnd, winPos->flags );
878 break;
880 case WM_GETTEXTLENGTH:
882 WND *wndPtr = WIN_FindWndPtr( hwnd );
883 if (wndPtr && wndPtr->text) result = (LRESULT)strlenW(wndPtr->text);
884 WIN_ReleaseWndPtr( wndPtr );
886 break;
888 case WM_GETTEXT:
890 WND *wndPtr = WIN_FindWndPtr( hwnd );
891 if (wParam && wndPtr && wndPtr->text)
893 LPWSTR dest = (LPWSTR)lParam;
894 lstrcpynW( dest, wndPtr->text, wParam );
895 result = strlenW( dest );
897 WIN_ReleaseWndPtr( wndPtr );
899 break;
901 case WM_SETTEXT:
902 DEFWND_SetTextW( hwnd, (LPCWSTR)lParam );
903 if( (GetWindowLongW( hwnd, GWL_STYLE ) & WS_CAPTION) == WS_CAPTION )
904 NC_HandleNCPaint( hwnd , (HRGN)1 ); /* Repaint caption */
905 result = 1; /* success. FIXME: check text length */
906 break;
908 /* for far east users (IMM32) - <hidenori@a2.ctktv.ne.jp> */
909 case WM_IME_CHAR:
910 SendMessageW( hwnd, WM_CHAR, wParam, lParam );
911 break;
912 case WM_IME_SETCONTEXT:
914 HWND hwndIME;
916 hwndIME = DEFWND_ImmGetDefaultIMEWnd( hwnd );
917 if (hwndIME)
918 result = DEFWND_ImmIsUIMessageW( hwndIME, msg, wParam, lParam );
920 break;
922 default:
923 result = DEFWND_DefWinProc( hwnd, msg, wParam, lParam );
924 break;
926 SPY_ExitMessage( SPY_RESULT_DEFWND, hwnd, msg, result, wParam, lParam );
927 return result;