2 * Default window procedure
4 * Copyright 1993, 1996 Alexandre Julliard
12 #include "nonclient.h"
15 #include "sysmetrics.h"
19 #include "wine/winuser16.h"
22 #define COLOR_MAX COLOR_BTNHIGHLIGHT
24 /* bits in the dwKeyData */
25 #define KEYDATA_ALT 0x2000
26 #define KEYDATA_PREVSTATE 0x4000
28 static short iF10Key
= 0;
29 static short iMenuSysKey
= 0;
31 /***********************************************************************
32 * DEFWND_HandleWindowPosChanged
34 * Handle the WM_WINDOWPOSCHANGED message.
36 static void DEFWND_HandleWindowPosChanged( WND
*wndPtr
, UINT32 flags
)
38 WPARAM16 wp
= SIZE_RESTORED
;
40 if (!(flags
& SWP_NOCLIENTMOVE
))
41 SendMessage16( wndPtr
->hwndSelf
, WM_MOVE
, 0,
42 MAKELONG(wndPtr
->rectClient
.left
, wndPtr
->rectClient
.top
));
43 if (!(flags
& SWP_NOCLIENTSIZE
))
45 if (wndPtr
->dwStyle
& WS_MAXIMIZE
) wp
= SIZE_MAXIMIZED
;
46 else if (wndPtr
->dwStyle
& WS_MINIMIZE
) wp
= SIZE_MINIMIZED
;
48 SendMessage16( wndPtr
->hwndSelf
, WM_SIZE
, wp
,
49 MAKELONG(wndPtr
->rectClient
.right
-wndPtr
->rectClient
.left
,
50 wndPtr
->rectClient
.bottom
-wndPtr
->rectClient
.top
));
55 /***********************************************************************
58 * Set the window text.
60 void DEFWND_SetText( WND
*wndPtr
, LPCSTR text
)
63 if (wndPtr
->text
) HeapFree( SystemHeap
, 0, wndPtr
->text
);
64 wndPtr
->text
= HEAP_strdupA( SystemHeap
, 0, text
);
65 wndPtr
->pDriver
->pSetText(wndPtr
, wndPtr
->text
);
68 /***********************************************************************
71 * Default colors for control painting.
73 HBRUSH32
DEFWND_ControlColor( HDC32 hDC
, UINT16 ctlType
)
75 if( ctlType
== CTLCOLOR_SCROLLBAR
)
77 HBRUSH32 hb
= GetSysColorBrush32(COLOR_SCROLLBAR
);
78 SetBkColor32( hDC
, RGB(255, 255, 255) );
79 SetTextColor32( hDC
, RGB(0, 0, 0) );
80 UnrealizeObject32( hb
);
84 SetTextColor32( hDC
, GetSysColor32(COLOR_WINDOWTEXT
));
86 if (TWEAK_WineLook
> WIN31_LOOK
) {
87 if ((ctlType
== CTLCOLOR_EDIT
) || (ctlType
== CTLCOLOR_LISTBOX
))
88 SetBkColor32( hDC
, GetSysColor32(COLOR_WINDOW
) );
90 SetBkColor32( hDC
, GetSysColor32(COLOR_3DFACE
) );
91 return GetSysColorBrush32(COLOR_3DFACE
);
95 SetBkColor32( hDC
, GetSysColor32(COLOR_WINDOW
) );
96 return GetSysColorBrush32(COLOR_WINDOW
);
100 /***********************************************************************
103 static void DEFWND_SetRedraw( WND
* wndPtr
, WPARAM32 wParam
)
105 BOOL32 bVisible
= wndPtr
->dwStyle
& WS_VISIBLE
;
107 TRACE(win
,"%04x %i\n", wndPtr
->hwndSelf
, (wParam
!=0) );
113 wndPtr
->dwStyle
|= WS_VISIBLE
;
114 DCE_InvalidateDCE( wndPtr
, &wndPtr
->rectWindow
);
119 if( wndPtr
->dwStyle
& WS_MINIMIZE
) wParam
= RDW_VALIDATE
;
120 else wParam
= RDW_ALLCHILDREN
| RDW_VALIDATE
;
122 PAINT_RedrawWindow( wndPtr
->hwndSelf
, NULL
, 0, wParam
, 0 );
123 DCE_InvalidateDCE( wndPtr
, &wndPtr
->rectWindow
);
124 wndPtr
->dwStyle
&= ~WS_VISIBLE
;
128 /***********************************************************************
131 * Default window procedure for messages that are the same in Win16 and Win32.
133 static LRESULT
DEFWND_DefWinProc( WND
*wndPtr
, UINT32 msg
, WPARAM32 wParam
,
139 return NC_HandleNCPaint( wndPtr
->hwndSelf
, (HRGN32
)wParam
);
142 return NC_HandleNCHitTest( wndPtr
->hwndSelf
, MAKEPOINT16(lParam
) );
144 case WM_NCLBUTTONDOWN
:
145 return NC_HandleNCLButtonDown( wndPtr
, wParam
, lParam
);
147 case WM_LBUTTONDBLCLK
:
148 case WM_NCLBUTTONDBLCLK
:
149 return NC_HandleNCLButtonDblClk( wndPtr
, wParam
, lParam
);
152 case WM_NCRBUTTONDOWN
:
153 if ((wndPtr
->flags
& WIN_ISWIN32
) || (TWEAK_WineLook
> WIN31_LOOK
))
155 ClientToScreen16(wndPtr
->hwndSelf
, (LPPOINT16
)&lParam
);
156 SendMessage32A( wndPtr
->hwndSelf
, WM_CONTEXTMENU
,
157 wndPtr
->hwndSelf
, lParam
);
162 if( wndPtr
->dwStyle
& WS_CHILD
)
163 SendMessage32A( wndPtr
->parent
->hwndSelf
, msg
, wParam
, lParam
);
165 if (wndPtr
->hSysMenu
)
167 TrackPopupMenu32(wndPtr->hSysMenu,TPM_LEFTALIGN | TPM_RETURNCMD,LOWORD(lParam),HIWORD(lParam),0,wndPtr->hwndSelf,NULL);
168 DestroyMenu32(wndPtr->hSysMenu);
170 FIXME(win
,"Display default popup menu\n");
171 /* Track system popup if click was in the caption area. */
176 return NC_HandleNCActivate( wndPtr
, wParam
);
179 if (wndPtr
->text
) HeapFree( SystemHeap
, 0, wndPtr
->text
);
181 if (wndPtr
->pVScroll
) HeapFree( SystemHeap
, 0, wndPtr
->pVScroll
);
182 if (wndPtr
->pHScroll
) HeapFree( SystemHeap
, 0, wndPtr
->pHScroll
);
183 wndPtr
->pVScroll
= wndPtr
->pHScroll
= NULL
;
190 HDC16 hdc
= BeginPaint16( wndPtr
->hwndSelf
, &ps
);
193 if( (wndPtr
->dwStyle
& WS_MINIMIZE
) && wndPtr
->class->hIcon
)
195 int x
= (wndPtr
->rectWindow
.right
- wndPtr
->rectWindow
.left
-
196 SYSMETRICS_CXICON
)/2;
197 int y
= (wndPtr
->rectWindow
.bottom
- wndPtr
->rectWindow
.top
-
198 SYSMETRICS_CYICON
)/2;
199 TRACE(win
,"Painting class icon: vis rect=(%i,%i - %i,%i)\n",
200 ps
.rcPaint
.left
, ps
.rcPaint
.top
, ps
.rcPaint
.right
, ps
.rcPaint
.bottom
);
201 DrawIcon32( hdc
, x
, y
, wndPtr
->class->hIcon
);
203 EndPaint16( wndPtr
->hwndSelf
, &ps
);
209 DEFWND_SetRedraw( wndPtr
, wParam
);
213 DestroyWindow32( wndPtr
->hwndSelf
);
216 case WM_MOUSEACTIVATE
:
217 if (wndPtr
->dwStyle
& WS_CHILD
)
219 LONG ret
= SendMessage16( wndPtr
->parent
->hwndSelf
,
220 WM_MOUSEACTIVATE
, wParam
, lParam
);
224 /* Caption clicks are handled by the NC_HandleNCLButtonDown() */
225 return (LOWORD(lParam
) == HTCAPTION
) ? MA_NOACTIVATE
: MA_ACTIVATE
;
228 if (LOWORD(wParam
) != WA_INACTIVE
)
229 SetWindowPos32(wndPtr
->hwndSelf
, HWND_TOP
, 0, 0, 0, 0,
230 SWP_NOMOVE
| SWP_NOSIZE
);
234 case WM_ICONERASEBKGND
:
236 if (!wndPtr
->class->hbrBackground
) return 0;
238 if (wndPtr
->class->hbrBackground
<= (HBRUSH16
)(COLOR_MAX
+1))
240 HBRUSH32 hbrush
= CreateSolidBrush32(
241 GetSysColor32(((DWORD
)wndPtr
->class->hbrBackground
)-1));
242 FillWindow( GetParent16(wndPtr
->hwndSelf
), wndPtr
->hwndSelf
,
243 (HDC16
)wParam
, hbrush
);
244 DeleteObject32( hbrush
);
246 else FillWindow( GetParent16(wndPtr
->hwndSelf
), wndPtr
->hwndSelf
,
247 (HDC16
)wParam
, wndPtr
->class->hbrBackground
);
254 case WM_CTLCOLORMSGBOX
:
255 case WM_CTLCOLOREDIT
:
256 case WM_CTLCOLORLISTBOX
:
259 case WM_CTLCOLORSTATIC
:
260 case WM_CTLCOLORSCROLLBAR
:
261 return (LRESULT
)DEFWND_ControlColor( (HDC32
)wParam
, msg
- WM_CTLCOLORMSGBOX
);
264 return (LRESULT
)DEFWND_ControlColor( (HDC32
)wParam
, HIWORD(lParam
) );
266 case WM_GETTEXTLENGTH
:
267 if (wndPtr
->text
) return (LRESULT
)strlen(wndPtr
->text
);
271 if (wndPtr
->dwStyle
& WS_CHILD
)
272 if (SendMessage16(wndPtr
->parent
->hwndSelf
, WM_SETCURSOR
,
275 return NC_HandleSetCursor( wndPtr
->hwndSelf
, wParam
, lParam
);
278 return NC_HandleSysCommand( wndPtr
->hwndSelf
, wParam
,
279 MAKEPOINT16(lParam
) );
282 if(wParam
== VK_F10
) iF10Key
= VK_F10
;
286 if( HIWORD(lParam
) & KEYDATA_ALT
)
288 /* if( HIWORD(lParam) & ~KEYDATA_PREVSTATE ) */
289 if( wParam
== VK_MENU
&& !iMenuSysKey
)
296 if( wParam
== VK_F4
) /* try to close the window */
298 HWND32 hWnd
= WIN_GetTopParent( wndPtr
->hwndSelf
);
299 wndPtr
= WIN_FindWndPtr( hWnd
);
300 if( wndPtr
&& !(wndPtr
->class->style
& CS_NOCLOSE
) )
301 PostMessage16( hWnd
, WM_SYSCOMMAND
, SC_CLOSE
, 0 );
304 else if( wParam
== VK_F10
)
307 if( wParam
== VK_ESCAPE
&& (GetKeyState32(VK_SHIFT
) & 0x8000))
308 SendMessage16( wndPtr
->hwndSelf
, WM_SYSCOMMAND
,
309 (WPARAM16
)SC_KEYMENU
, (LPARAM
)VK_SPACE
);
314 /* Press and release F10 or ALT */
315 if (((wParam
== VK_MENU
) && iMenuSysKey
) ||
316 ((wParam
== VK_F10
) && iF10Key
))
317 SendMessage16( WIN_GetTopParent(wndPtr
->hwndSelf
),
318 WM_SYSCOMMAND
, SC_KEYMENU
, 0L );
319 iMenuSysKey
= iF10Key
= 0;
324 if (wParam
== VK_RETURN
&& (wndPtr
->dwStyle
& WS_MINIMIZE
))
326 PostMessage16( wndPtr
->hwndSelf
, WM_SYSCOMMAND
,
327 (WPARAM16
)SC_RESTORE
, 0L );
330 if ((HIWORD(lParam
) & KEYDATA_ALT
) && wParam
)
332 if (wParam
== VK_TAB
|| wParam
== VK_ESCAPE
) break;
333 if (wParam
== VK_SPACE
&& (wndPtr
->dwStyle
& WS_CHILD
))
334 SendMessage16( wndPtr
->parent
->hwndSelf
, msg
, wParam
, lParam
);
336 SendMessage16( wndPtr
->hwndSelf
, WM_SYSCOMMAND
,
337 (WPARAM16
)SC_KEYMENU
, (LPARAM
)(DWORD
)wParam
);
339 else /* check for Ctrl-Esc */
340 if (wParam
!= VK_ESCAPE
) MessageBeep32(0);
344 if (!lParam
) return 0; /* sent from ShowWindow */
345 if (!(wndPtr
->dwStyle
& WS_POPUP
) || !wndPtr
->owner
) return 0;
346 if ((wndPtr
->dwStyle
& WS_VISIBLE
) && wParam
) return 0;
347 else if (!(wndPtr
->dwStyle
& WS_VISIBLE
) && !wParam
) return 0;
348 ShowWindow32( wndPtr
->hwndSelf
, wParam
? SW_SHOWNOACTIVATE
: SW_HIDE
);
352 if (wndPtr
->parent
== WIN_GetDesktop()) EndMenu();
353 if (GetCapture32() == wndPtr
->hwndSelf
) ReleaseCapture();
363 case WM_QUERYDROPOBJECT
:
364 if (wndPtr
->dwExStyle
& WS_EX_ACCEPTFILES
) return 1;
367 case WM_QUERYDRAGICON
:
372 if( (hIcon
=wndPtr
->class->hCursor
) ) return (LRESULT
)hIcon
;
373 for(len
=1; len
<64; len
++)
374 if((hIcon
=LoadIcon16(wndPtr
->hInstance
,MAKEINTRESOURCE16(len
))))
375 return (LRESULT
)hIcon
;
376 return (LRESULT
)LoadIcon16(0,IDI_APPLICATION16
);
380 case WM_ISACTIVEICON
:
381 return ((wndPtr
->flags
& WIN_NCACTIVATED
) != 0);
384 case WM_QUERYENDSESSION
:
392 /***********************************************************************
393 * DefWindowProc16 (USER.107)
395 LRESULT WINAPI
DefWindowProc16( HWND16 hwnd
, UINT16 msg
, WPARAM16 wParam
,
398 WND
* wndPtr
= WIN_FindWndPtr( hwnd
);
401 if (!wndPtr
) return 0;
402 SPY_EnterMessage( SPY_DEFWNDPROC16
, hwnd
, msg
, wParam
, lParam
);
408 CREATESTRUCT16
*cs
= (CREATESTRUCT16
*)PTR_SEG_TO_LIN(lParam
);
410 DEFWND_SetText( wndPtr
, (LPSTR
)PTR_SEG_TO_LIN(cs
->lpszName
) );
418 CONV_RECT16TO32( (RECT16
*)PTR_SEG_TO_LIN(lParam
), &rect32
);
419 result
= NC_HandleNCCalcSize( wndPtr
, &rect32
);
420 CONV_RECT32TO16( &rect32
, (RECT16
*)PTR_SEG_TO_LIN(lParam
) );
424 case WM_WINDOWPOSCHANGING
:
425 result
= WINPOS_HandleWindowPosChanging16( wndPtr
,
426 (WINDOWPOS16
*)PTR_SEG_TO_LIN(lParam
) );
429 case WM_WINDOWPOSCHANGED
:
431 WINDOWPOS16
* winPos
= (WINDOWPOS16
*)PTR_SEG_TO_LIN(lParam
);
432 DEFWND_HandleWindowPosChanged( wndPtr
, winPos
->flags
);
437 if (wParam
&& wndPtr
->text
)
439 lstrcpyn32A( (LPSTR
)PTR_SEG_TO_LIN(lParam
), wndPtr
->text
, wParam
);
440 result
= (LRESULT
)strlen( (LPSTR
)PTR_SEG_TO_LIN(lParam
) );
445 DEFWND_SetText( wndPtr
, (LPSTR
)PTR_SEG_TO_LIN(lParam
) );
446 if( wndPtr
->dwStyle
& WS_CAPTION
) NC_HandleNCPaint( hwnd
, (HRGN32
)1 );
450 result
= DEFWND_DefWinProc( wndPtr
, msg
, wParam
, lParam
);
454 SPY_ExitMessage( SPY_RESULT_DEFWND16
, hwnd
, msg
, result
);
459 /***********************************************************************
460 * DefWindowProc32A [USER32.126]
463 LRESULT WINAPI
DefWindowProc32A( HWND32 hwnd
, UINT32 msg
, WPARAM32 wParam
,
466 WND
* wndPtr
= WIN_FindWndPtr( hwnd
);
469 if (!wndPtr
) return 0;
470 SPY_EnterMessage( SPY_DEFWNDPROC32
, hwnd
, msg
, wParam
, lParam
);
476 CREATESTRUCT32A
*cs
= (CREATESTRUCT32A
*)lParam
;
477 if (cs
->lpszName
) DEFWND_SetText( wndPtr
, cs
->lpszName
);
483 result
= NC_HandleNCCalcSize( wndPtr
, (RECT32
*)lParam
);
486 case WM_WINDOWPOSCHANGING
:
487 result
= WINPOS_HandleWindowPosChanging32( wndPtr
,
488 (WINDOWPOS32
*)lParam
);
491 case WM_WINDOWPOSCHANGED
:
493 WINDOWPOS32
* winPos
= (WINDOWPOS32
*)lParam
;
494 DEFWND_HandleWindowPosChanged( wndPtr
, winPos
->flags
);
499 if (wParam
&& wndPtr
->text
)
501 lstrcpyn32A( (LPSTR
)lParam
, wndPtr
->text
, wParam
);
502 result
= (LRESULT
)strlen( (LPSTR
)lParam
);
507 DEFWND_SetText( wndPtr
, (LPSTR
)lParam
);
508 NC_HandleNCPaint( hwnd
, (HRGN32
)1 ); /* Repaint caption */
512 result
= DEFWND_DefWinProc( wndPtr
, msg
, wParam
, lParam
);
516 SPY_ExitMessage( SPY_RESULT_DEFWND32
, hwnd
, msg
, result
);
521 /***********************************************************************
522 * DefWindowProc32W [USER32.127] Calls default window message handler
524 * Calls default window procedure for messages not processed
528 * Return value is dependent upon the message.
530 LRESULT WINAPI
DefWindowProc32W(
531 HWND32 hwnd
, /* [in] window procedure recieving message */
532 UINT32 msg
, /* [in] message identifier */
533 WPARAM32 wParam
, /* [in] first message parameter */
534 LPARAM lParam
) /* [in] second message parameter */
542 CREATESTRUCT32W
*cs
= (CREATESTRUCT32W
*)lParam
;
545 WND
*wndPtr
= WIN_FindWndPtr( hwnd
);
546 LPSTR str
= HEAP_strdupWtoA(GetProcessHeap(), 0, cs
->lpszName
);
547 DEFWND_SetText( wndPtr
, str
);
548 HeapFree( GetProcessHeap(), 0, str
);
556 LPSTR str
= HeapAlloc( GetProcessHeap(), 0, wParam
);
557 result
= DefWindowProc32A( hwnd
, msg
, wParam
, (LPARAM
)str
);
558 lstrcpynAtoW( (LPWSTR
)lParam
, str
, wParam
);
559 HeapFree( GetProcessHeap(), 0, str
);
565 LPSTR str
= HEAP_strdupWtoA( GetProcessHeap(), 0, (LPWSTR
)lParam
);
566 result
= DefWindowProc32A( hwnd
, msg
, wParam
, (LPARAM
)str
);
567 HeapFree( GetProcessHeap(), 0, str
);
572 result
= DefWindowProc32A( hwnd
, msg
, wParam
, lParam
);