push 37d76373165707dfd5c864bc2126a42ed39183b4
[wine/hacks.git] / dlls / user32 / wnd16.c
blobf35840fae9d9cf897336fca9e48504b92e232341
1 /*
2 * 16-bit windowing functions
4 * Copyright 2001 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include "wine/winuser16.h"
22 #include "wownt32.h"
23 #include "win.h"
24 #include "user_private.h"
26 /* handle <--> handle16 conversions */
27 #define HANDLE_16(h32) (LOWORD(h32))
28 #define HANDLE_32(h16) ((HANDLE)(ULONG_PTR)(h16))
30 static HWND16 hwndSysModal;
32 struct wnd_enum_info
34 WNDENUMPROC16 proc;
35 LPARAM param;
38 /* callback for 16-bit window enumeration functions */
39 static BOOL CALLBACK wnd_enum_callback( HWND hwnd, LPARAM param )
41 const struct wnd_enum_info *info = (struct wnd_enum_info *)param;
42 WORD args[3];
43 DWORD ret;
45 args[2] = HWND_16(hwnd);
46 args[1] = HIWORD(info->param);
47 args[0] = LOWORD(info->param);
48 WOWCallback16Ex( (DWORD)info->proc, WCB16_PASCAL, sizeof(args), args, &ret );
49 return LOWORD(ret);
52 /* convert insert after window handle to 32-bit */
53 static inline HWND full_insert_after_hwnd( HWND16 hwnd )
55 HWND ret = WIN_Handle32( hwnd );
56 if (ret == (HWND)0xffff) ret = HWND_TOPMOST;
57 return ret;
60 /**************************************************************************
61 * MessageBox (USER.1)
63 INT16 WINAPI MessageBox16( HWND16 hwnd, LPCSTR text, LPCSTR title, UINT16 type )
65 return MessageBoxA( WIN_Handle32(hwnd), text, title, type );
69 /***********************************************************************
70 * SetTimer (USER.10)
72 UINT16 WINAPI SetTimer16( HWND16 hwnd, UINT16 id, UINT16 timeout, TIMERPROC16 proc )
74 TIMERPROC proc32 = (TIMERPROC)WINPROC_AllocProc16( (WNDPROC16)proc );
75 return SetTimer( WIN_Handle32(hwnd), id, timeout, proc32 );
79 /***********************************************************************
80 * SetSystemTimer (USER.11)
82 UINT16 WINAPI SetSystemTimer16( HWND16 hwnd, UINT16 id, UINT16 timeout, TIMERPROC16 proc )
84 TIMERPROC proc32 = (TIMERPROC)WINPROC_AllocProc16( (WNDPROC16)proc );
85 return SetSystemTimer( WIN_Handle32(hwnd), id, timeout, proc32 );
89 /**************************************************************************
90 * KillTimer (USER.12)
92 BOOL16 WINAPI KillTimer16( HWND16 hwnd, UINT16 id )
94 return KillTimer( WIN_Handle32(hwnd), id );
98 /**************************************************************************
99 * SetCapture (USER.18)
101 HWND16 WINAPI SetCapture16( HWND16 hwnd )
103 return HWND_16( SetCapture( WIN_Handle32(hwnd) ));
107 /**************************************************************************
108 * ReleaseCapture (USER.19)
110 BOOL16 WINAPI ReleaseCapture16(void)
112 return ReleaseCapture();
116 /**************************************************************************
117 * SetFocus (USER.22)
119 HWND16 WINAPI SetFocus16( HWND16 hwnd )
121 return HWND_16( SetFocus( WIN_Handle32(hwnd) ));
125 /**************************************************************************
126 * GetFocus (USER.23)
128 HWND16 WINAPI GetFocus16(void)
130 return HWND_16( GetFocus() );
134 /**************************************************************************
135 * RemoveProp (USER.24)
137 HANDLE16 WINAPI RemoveProp16( HWND16 hwnd, LPCSTR str )
139 return HANDLE_16(RemovePropA( WIN_Handle32(hwnd), str ));
143 /**************************************************************************
144 * GetProp (USER.25)
146 HANDLE16 WINAPI GetProp16( HWND16 hwnd, LPCSTR str )
148 return HANDLE_16(GetPropA( WIN_Handle32(hwnd), str ));
152 /**************************************************************************
153 * SetProp (USER.26)
155 BOOL16 WINAPI SetProp16( HWND16 hwnd, LPCSTR str, HANDLE16 handle )
157 return SetPropA( WIN_Handle32(hwnd), str, HANDLE_32(handle) );
161 /**************************************************************************
162 * ClientToScreen (USER.28)
164 void WINAPI ClientToScreen16( HWND16 hwnd, LPPOINT16 lppnt )
166 MapWindowPoints16( hwnd, 0, lppnt, 1 );
170 /**************************************************************************
171 * ScreenToClient (USER.29)
173 void WINAPI ScreenToClient16( HWND16 hwnd, LPPOINT16 lppnt )
175 MapWindowPoints16( 0, hwnd, lppnt, 1 );
179 /**************************************************************************
180 * WindowFromPoint (USER.30)
182 HWND16 WINAPI WindowFromPoint16( POINT16 pt )
184 POINT pt32;
186 pt32.x = pt.x;
187 pt32.y = pt.y;
188 return HWND_16( WindowFromPoint( pt32 ) );
192 /**************************************************************************
193 * IsIconic (USER.31)
195 BOOL16 WINAPI IsIconic16(HWND16 hwnd)
197 return IsIconic( WIN_Handle32(hwnd) );
201 /**************************************************************************
202 * GetWindowRect (USER.32)
204 void WINAPI GetWindowRect16( HWND16 hwnd, LPRECT16 rect )
206 RECT rect32;
208 GetWindowRect( WIN_Handle32(hwnd), &rect32 );
209 rect->left = rect32.left;
210 rect->top = rect32.top;
211 rect->right = rect32.right;
212 rect->bottom = rect32.bottom;
216 /**************************************************************************
217 * GetClientRect (USER.33)
219 void WINAPI GetClientRect16( HWND16 hwnd, LPRECT16 rect )
221 RECT rect32;
223 GetClientRect( WIN_Handle32(hwnd), &rect32 );
224 rect->left = rect32.left;
225 rect->top = rect32.top;
226 rect->right = rect32.right;
227 rect->bottom = rect32.bottom;
231 /**************************************************************************
232 * EnableWindow (USER.34)
234 BOOL16 WINAPI EnableWindow16( HWND16 hwnd, BOOL16 enable )
236 return EnableWindow( WIN_Handle32(hwnd), enable );
240 /**************************************************************************
241 * IsWindowEnabled (USER.35)
243 BOOL16 WINAPI IsWindowEnabled16(HWND16 hwnd)
245 return IsWindowEnabled( WIN_Handle32(hwnd) );
249 /**************************************************************************
250 * GetWindowText (USER.36)
252 INT16 WINAPI GetWindowText16( HWND16 hwnd, SEGPTR lpString, INT16 nMaxCount )
254 return SendMessage16( hwnd, WM_GETTEXT, nMaxCount, lpString );
258 /**************************************************************************
259 * SetWindowText (USER.37)
261 BOOL16 WINAPI SetWindowText16( HWND16 hwnd, SEGPTR lpString )
263 return SendMessage16( hwnd, WM_SETTEXT, 0, (LPARAM)lpString );
267 /**************************************************************************
268 * GetWindowTextLength (USER.38)
270 INT16 WINAPI GetWindowTextLength16( HWND16 hwnd )
272 return SendMessage16( hwnd, WM_GETTEXTLENGTH, 0, 0 );
276 /***********************************************************************
277 * BeginPaint (USER.39)
279 HDC16 WINAPI BeginPaint16( HWND16 hwnd, LPPAINTSTRUCT16 lps )
281 PAINTSTRUCT ps;
283 BeginPaint( WIN_Handle32(hwnd), &ps );
284 lps->hdc = HDC_16(ps.hdc);
285 lps->fErase = ps.fErase;
286 lps->rcPaint.top = ps.rcPaint.top;
287 lps->rcPaint.left = ps.rcPaint.left;
288 lps->rcPaint.right = ps.rcPaint.right;
289 lps->rcPaint.bottom = ps.rcPaint.bottom;
290 lps->fRestore = ps.fRestore;
291 lps->fIncUpdate = ps.fIncUpdate;
292 return lps->hdc;
296 /***********************************************************************
297 * EndPaint (USER.40)
299 BOOL16 WINAPI EndPaint16( HWND16 hwnd, const PAINTSTRUCT16* lps )
301 PAINTSTRUCT ps;
303 ps.hdc = HDC_32(lps->hdc);
304 return EndPaint( WIN_Handle32(hwnd), &ps );
308 /**************************************************************************
309 * ShowWindow (USER.42)
311 BOOL16 WINAPI ShowWindow16( HWND16 hwnd, INT16 cmd )
313 return ShowWindow( WIN_Handle32(hwnd), cmd );
317 /**************************************************************************
318 * CloseWindow (USER.43)
320 BOOL16 WINAPI CloseWindow16( HWND16 hwnd )
322 return CloseWindow( WIN_Handle32(hwnd) );
326 /**************************************************************************
327 * OpenIcon (USER.44)
329 BOOL16 WINAPI OpenIcon16( HWND16 hwnd )
331 return OpenIcon( WIN_Handle32(hwnd) );
335 /**************************************************************************
336 * BringWindowToTop (USER.45)
338 BOOL16 WINAPI BringWindowToTop16( HWND16 hwnd )
340 return BringWindowToTop( WIN_Handle32(hwnd) );
344 /**************************************************************************
345 * GetParent (USER.46)
347 HWND16 WINAPI GetParent16( HWND16 hwnd )
349 return HWND_16( GetParent( WIN_Handle32(hwnd) ));
353 /**************************************************************************
354 * IsWindow (USER.47)
356 BOOL16 WINAPI IsWindow16( HWND16 hwnd )
358 STACK16FRAME *frame = MapSL( (SEGPTR)NtCurrentTeb()->WOW32Reserved );
359 frame->es = USER_HeapSel;
360 /* don't use WIN_Handle32 here, we don't care about the full handle */
361 return IsWindow( HWND_32(hwnd) );
365 /**************************************************************************
366 * IsChild (USER.48)
368 BOOL16 WINAPI IsChild16( HWND16 parent, HWND16 child )
370 return IsChild( WIN_Handle32(parent), WIN_Handle32(child) );
374 /**************************************************************************
375 * IsWindowVisible (USER.49)
377 BOOL16 WINAPI IsWindowVisible16( HWND16 hwnd )
379 return IsWindowVisible( WIN_Handle32(hwnd) );
383 /**************************************************************************
384 * FindWindow (USER.50)
386 HWND16 WINAPI FindWindow16( LPCSTR className, LPCSTR title )
388 return HWND_16( FindWindowA( className, title ));
392 /**************************************************************************
393 * DestroyWindow (USER.53)
395 BOOL16 WINAPI DestroyWindow16( HWND16 hwnd )
397 return DestroyWindow( WIN_Handle32(hwnd) );
401 /*******************************************************************
402 * EnumWindows (USER.54)
404 BOOL16 WINAPI EnumWindows16( WNDENUMPROC16 func, LPARAM lParam )
406 struct wnd_enum_info info;
408 info.proc = func;
409 info.param = lParam;
410 return EnumWindows( wnd_enum_callback, (LPARAM)&info );
414 /**********************************************************************
415 * EnumChildWindows (USER.55)
417 BOOL16 WINAPI EnumChildWindows16( HWND16 parent, WNDENUMPROC16 func, LPARAM lParam )
419 struct wnd_enum_info info;
421 info.proc = func;
422 info.param = lParam;
423 return EnumChildWindows( WIN_Handle32(parent), wnd_enum_callback, (LPARAM)&info );
427 /**************************************************************************
428 * MoveWindow (USER.56)
430 BOOL16 WINAPI MoveWindow16( HWND16 hwnd, INT16 x, INT16 y, INT16 cx, INT16 cy, BOOL16 repaint )
432 return MoveWindow( WIN_Handle32(hwnd), x, y, cx, cy, repaint );
436 /***********************************************************************
437 * RegisterClass (USER.57)
439 ATOM WINAPI RegisterClass16( const WNDCLASS16 *wc )
441 WNDCLASSEX16 wcex;
443 wcex.cbSize = sizeof(wcex);
444 wcex.style = wc->style;
445 wcex.lpfnWndProc = wc->lpfnWndProc;
446 wcex.cbClsExtra = wc->cbClsExtra;
447 wcex.cbWndExtra = wc->cbWndExtra;
448 wcex.hInstance = wc->hInstance;
449 wcex.hIcon = wc->hIcon;
450 wcex.hCursor = wc->hCursor;
451 wcex.hbrBackground = wc->hbrBackground;
452 wcex.lpszMenuName = wc->lpszMenuName;
453 wcex.lpszClassName = wc->lpszClassName;
454 wcex.hIconSm = 0;
455 return RegisterClassEx16( &wcex );
459 /**************************************************************************
460 * GetClassName (USER.58)
462 INT16 WINAPI GetClassName16( HWND16 hwnd, LPSTR buffer, INT16 count )
464 return GetClassNameA( WIN_Handle32(hwnd), buffer, count );
468 /**************************************************************************
469 * SetActiveWindow (USER.59)
471 HWND16 WINAPI SetActiveWindow16( HWND16 hwnd )
473 return HWND_16( SetActiveWindow( WIN_Handle32(hwnd) ));
477 /**************************************************************************
478 * GetActiveWindow (USER.60)
480 HWND16 WINAPI GetActiveWindow16(void)
482 return HWND_16( GetActiveWindow() );
486 /**************************************************************************
487 * ScrollWindow (USER.61)
489 void WINAPI ScrollWindow16( HWND16 hwnd, INT16 dx, INT16 dy, const RECT16 *rect,
490 const RECT16 *clipRect )
492 RECT rect32, clipRect32;
494 if (rect)
496 rect32.left = rect->left;
497 rect32.top = rect->top;
498 rect32.right = rect->right;
499 rect32.bottom = rect->bottom;
501 if (clipRect)
503 clipRect32.left = clipRect->left;
504 clipRect32.top = clipRect->top;
505 clipRect32.right = clipRect->right;
506 clipRect32.bottom = clipRect->bottom;
508 ScrollWindow( WIN_Handle32(hwnd), dx, dy, rect ? &rect32 : NULL,
509 clipRect ? &clipRect32 : NULL );
513 /**************************************************************************
514 * SetScrollPos (USER.62)
516 INT16 WINAPI SetScrollPos16( HWND16 hwnd, INT16 nBar, INT16 nPos, BOOL16 redraw )
518 return SetScrollPos( WIN_Handle32(hwnd), nBar, nPos, redraw );
522 /**************************************************************************
523 * GetScrollPos (USER.63)
525 INT16 WINAPI GetScrollPos16( HWND16 hwnd, INT16 nBar )
527 return GetScrollPos( WIN_Handle32(hwnd), nBar );
531 /**************************************************************************
532 * SetScrollRange (USER.64)
534 void WINAPI SetScrollRange16( HWND16 hwnd, INT16 nBar, INT16 MinVal, INT16 MaxVal, BOOL16 redraw )
536 /* Invalid range -> range is set to (0,0) */
537 if ((INT)MaxVal - (INT)MinVal > 0x7fff) MinVal = MaxVal = 0;
538 SetScrollRange( WIN_Handle32(hwnd), nBar, MinVal, MaxVal, redraw );
542 /**************************************************************************
543 * GetScrollRange (USER.65)
545 BOOL16 WINAPI GetScrollRange16( HWND16 hwnd, INT16 nBar, LPINT16 lpMin, LPINT16 lpMax)
547 INT min, max;
548 BOOL ret = GetScrollRange( WIN_Handle32(hwnd), nBar, &min, &max );
549 if (lpMin) *lpMin = min;
550 if (lpMax) *lpMax = max;
551 return ret;
555 /**************************************************************************
556 * GetDC (USER.66)
558 HDC16 WINAPI GetDC16( HWND16 hwnd )
560 return HDC_16(GetDC( WIN_Handle32(hwnd) ));
564 /**************************************************************************
565 * GetWindowDC (USER.67)
567 HDC16 WINAPI GetWindowDC16( HWND16 hwnd )
569 return GetDCEx16( hwnd, 0, DCX_USESTYLE | DCX_WINDOW );
573 /**************************************************************************
574 * ReleaseDC (USER.68)
576 INT16 WINAPI ReleaseDC16( HWND16 hwnd, HDC16 hdc )
578 return (INT16)ReleaseDC( WIN_Handle32(hwnd), HDC_32(hdc) );
582 /**************************************************************************
583 * FlashWindow (USER.105)
585 BOOL16 WINAPI FlashWindow16( HWND16 hwnd, BOOL16 bInvert )
587 return FlashWindow( WIN_Handle32(hwnd), bInvert );
591 /**************************************************************************
592 * WindowFromDC (USER.117)
594 HWND16 WINAPI WindowFromDC16( HDC16 hDC )
596 return HWND_16( WindowFromDC( HDC_32(hDC) ) );
600 /**************************************************************************
601 * UpdateWindow (USER.124)
603 void WINAPI UpdateWindow16( HWND16 hwnd )
605 RedrawWindow16( hwnd, NULL, 0, RDW_UPDATENOW | RDW_ALLCHILDREN );
609 /**************************************************************************
610 * InvalidateRect (USER.125)
612 void WINAPI InvalidateRect16( HWND16 hwnd, const RECT16 *rect, BOOL16 erase )
614 RedrawWindow16( hwnd, rect, 0, RDW_INVALIDATE | (erase ? RDW_ERASE : 0) );
618 /**************************************************************************
619 * InvalidateRgn (USER.126)
621 void WINAPI InvalidateRgn16( HWND16 hwnd, HRGN16 hrgn, BOOL16 erase )
623 RedrawWindow16( hwnd, NULL, hrgn, RDW_INVALIDATE | (erase ? RDW_ERASE : 0) );
627 /**************************************************************************
628 * ValidateRect (USER.127)
630 void WINAPI ValidateRect16( HWND16 hwnd, const RECT16 *rect )
632 RedrawWindow16( hwnd, rect, 0, RDW_VALIDATE | RDW_NOCHILDREN );
636 /**************************************************************************
637 * ValidateRgn (USER.128)
639 void WINAPI ValidateRgn16( HWND16 hwnd, HRGN16 hrgn )
641 RedrawWindow16( hwnd, NULL, hrgn, RDW_VALIDATE | RDW_NOCHILDREN );
645 /**************************************************************************
646 * GetClassWord (USER.129)
648 WORD WINAPI GetClassWord16( HWND16 hwnd, INT16 offset )
650 WORD ret = GetClassWord( WIN_Handle32(hwnd), offset );
652 switch (offset)
654 case GCLP_HCURSOR:
655 case GCLP_HICON:
656 case GCLP_HICONSM:
657 return HCURSOR_16((HCURSOR)(LONG_PTR)ret);
658 default:
659 return ret;
664 /**************************************************************************
665 * SetClassWord (USER.130)
667 WORD WINAPI SetClassWord16( HWND16 hwnd, INT16 offset, WORD newval )
669 switch (offset)
671 case GCLP_HCURSOR:
672 case GCLP_HICON:
673 case GCLP_HICONSM:
674 return HCURSOR_16((HCURSOR)SetClassLongW( WIN_Handle32(hwnd), offset, (LONG_PTR)HCURSOR_32(newval) ));
675 default:
676 return SetClassWord( WIN_Handle32(hwnd), offset, newval );
681 /***********************************************************************
682 * GetClassLong (USER.131)
684 LONG WINAPI GetClassLong16( HWND16 hwnd16, INT16 offset )
686 LONG_PTR ret = GetClassLongA( WIN_Handle32(hwnd16), offset );
688 switch( offset )
690 case GCLP_HCURSOR:
691 case GCLP_HICON:
692 case GCLP_HICONSM:
693 return HCURSOR_16((HCURSOR)ret);
694 case GCLP_WNDPROC:
695 return (LONG_PTR)WINPROC_GetProc16( (WNDPROC)ret, FALSE );
696 case GCLP_MENUNAME:
697 return MapLS( (void *)ret ); /* leak */
698 default:
699 return ret;
704 /***********************************************************************
705 * SetClassLong (USER.132)
707 LONG WINAPI SetClassLong16( HWND16 hwnd16, INT16 offset, LONG newval )
709 switch( offset )
711 case GCLP_HCURSOR:
712 case GCLP_HICON:
713 case GCLP_HICONSM:
714 return HCURSOR_16((HCURSOR)SetClassLongW( WIN_Handle32(hwnd16), offset, (LONG_PTR)HCURSOR_32( newval ) ));
715 case GCLP_WNDPROC:
717 WNDPROC new_proc = WINPROC_AllocProc16( (WNDPROC16)newval );
718 WNDPROC old_proc = (WNDPROC)SetClassLongA( WIN_Handle32(hwnd16), offset, (LONG_PTR)new_proc );
719 return (LONG)WINPROC_GetProc16( old_proc, FALSE );
721 case GCLP_MENUNAME:
722 newval = (LONG)MapSL( newval );
723 /* fall through */
724 default:
725 return SetClassLongA( WIN_Handle32(hwnd16), offset, newval );
730 /**************************************************************************
731 * GetWindowWord (USER.133)
733 WORD WINAPI GetWindowWord16( HWND16 hwnd, INT16 offset )
735 return GetWindowWord( WIN_Handle32(hwnd), offset );
739 /**************************************************************************
740 * SetWindowWord (USER.134)
742 WORD WINAPI SetWindowWord16( HWND16 hwnd, INT16 offset, WORD newval )
744 return SetWindowWord( WIN_Handle32(hwnd), offset, newval );
748 /**************************************************************************
749 * OpenClipboard (USER.137)
751 BOOL16 WINAPI OpenClipboard16( HWND16 hwnd )
753 return OpenClipboard( WIN_Handle32(hwnd) );
757 /**************************************************************************
758 * GetClipboardOwner (USER.140)
760 HWND16 WINAPI GetClipboardOwner16(void)
762 return HWND_16( GetClipboardOwner() );
766 /**************************************************************************
767 * SetClipboardViewer (USER.147)
769 HWND16 WINAPI SetClipboardViewer16( HWND16 hwnd )
771 return HWND_16( SetClipboardViewer( WIN_Handle32(hwnd) ));
775 /**************************************************************************
776 * GetClipboardViewer (USER.148)
778 HWND16 WINAPI GetClipboardViewer16(void)
780 return HWND_16( GetClipboardViewer() );
784 /**************************************************************************
785 * ChangeClipboardChain (USER.149)
787 BOOL16 WINAPI ChangeClipboardChain16(HWND16 hwnd, HWND16 hwndNext)
789 return ChangeClipboardChain( WIN_Handle32(hwnd), WIN_Handle32(hwndNext) );
793 /**************************************************************************
794 * GetSystemMenu (USER.156)
796 HMENU16 WINAPI GetSystemMenu16( HWND16 hwnd, BOOL16 revert )
798 return HMENU_16(GetSystemMenu( WIN_Handle32(hwnd), revert ));
802 /**************************************************************************
803 * GetMenu (USER.157)
805 HMENU16 WINAPI GetMenu16( HWND16 hwnd )
807 return HMENU_16(GetMenu( WIN_Handle32(hwnd) ));
811 /**************************************************************************
812 * SetMenu (USER.158)
814 BOOL16 WINAPI SetMenu16( HWND16 hwnd, HMENU16 hMenu )
816 return SetMenu( WIN_Handle32(hwnd), HMENU_32(hMenu) );
820 /**************************************************************************
821 * DrawMenuBar (USER.160)
823 void WINAPI DrawMenuBar16( HWND16 hwnd )
825 DrawMenuBar( WIN_Handle32(hwnd) );
829 /**************************************************************************
830 * HiliteMenuItem (USER.162)
832 BOOL16 WINAPI HiliteMenuItem16( HWND16 hwnd, HMENU16 hMenu, UINT16 id, UINT16 wHilite )
834 return HiliteMenuItem( WIN_Handle32(hwnd), HMENU_32(hMenu), id, wHilite );
838 /**************************************************************************
839 * CreateCaret (USER.163)
841 void WINAPI CreateCaret16( HWND16 hwnd, HBITMAP16 bitmap, INT16 width, INT16 height )
843 CreateCaret( WIN_Handle32(hwnd), HBITMAP_32(bitmap), width, height );
847 /*****************************************************************
848 * DestroyCaret (USER.164)
850 void WINAPI DestroyCaret16(void)
852 DestroyCaret();
856 /*****************************************************************
857 * SetCaretPos (USER.165)
859 void WINAPI SetCaretPos16( INT16 x, INT16 y )
861 SetCaretPos( x, y );
865 /**************************************************************************
866 * HideCaret (USER.166)
868 void WINAPI HideCaret16( HWND16 hwnd )
870 HideCaret( WIN_Handle32(hwnd) );
874 /**************************************************************************
875 * ShowCaret (USER.167)
877 void WINAPI ShowCaret16( HWND16 hwnd )
879 ShowCaret( WIN_Handle32(hwnd) );
883 /*****************************************************************
884 * SetCaretBlinkTime (USER.168)
886 void WINAPI SetCaretBlinkTime16( UINT16 msecs )
888 SetCaretBlinkTime( msecs );
892 /*****************************************************************
893 * GetCaretBlinkTime (USER.169)
895 UINT16 WINAPI GetCaretBlinkTime16(void)
897 return GetCaretBlinkTime();
901 /**************************************************************************
902 * ArrangeIconicWindows (USER.170)
904 UINT16 WINAPI ArrangeIconicWindows16( HWND16 parent)
906 return ArrangeIconicWindows( WIN_Handle32(parent) );
910 /**************************************************************************
911 * SwitchToThisWindow (USER.172)
913 void WINAPI SwitchToThisWindow16( HWND16 hwnd, BOOL16 restore )
915 SwitchToThisWindow( WIN_Handle32(hwnd), restore );
919 /**************************************************************************
920 * KillSystemTimer (USER.182)
922 BOOL16 WINAPI KillSystemTimer16( HWND16 hwnd, UINT16 id )
924 return KillSystemTimer( WIN_Handle32(hwnd), id );
928 /*****************************************************************
929 * GetCaretPos (USER.183)
931 void WINAPI GetCaretPos16( LPPOINT16 pt16 )
933 POINT pt;
934 if (GetCaretPos( &pt ))
936 pt16->x = pt.x;
937 pt16->y = pt.y;
942 /**************************************************************************
943 * SetSysModalWindow (USER.188)
945 HWND16 WINAPI SetSysModalWindow16( HWND16 hwnd )
947 HWND16 old = hwndSysModal;
948 hwndSysModal = hwnd;
949 return old;
953 /**************************************************************************
954 * GetSysModalWindow (USER.189)
956 HWND16 WINAPI GetSysModalWindow16(void)
958 return hwndSysModal;
962 /**************************************************************************
963 * GetUpdateRect (USER.190)
965 BOOL16 WINAPI GetUpdateRect16( HWND16 hwnd, LPRECT16 rect, BOOL16 erase )
967 RECT r;
968 BOOL16 ret;
970 if (!rect) return GetUpdateRect( WIN_Handle32(hwnd), NULL, erase );
971 ret = GetUpdateRect( WIN_Handle32(hwnd), &r, erase );
972 rect->left = r.left;
973 rect->top = r.top;
974 rect->right = r.right;
975 rect->bottom = r.bottom;
976 return ret;
980 /**************************************************************************
981 * ChildWindowFromPoint (USER.191)
983 HWND16 WINAPI ChildWindowFromPoint16( HWND16 hwndParent, POINT16 pt )
985 POINT pt32;
987 pt32.x = pt.x;
988 pt32.y = pt.y;
989 return HWND_16( ChildWindowFromPoint( WIN_Handle32(hwndParent), pt32 ));
993 /***********************************************************************
994 * GetWindowTask (USER.224)
996 HTASK16 WINAPI GetWindowTask16( HWND16 hwnd )
998 DWORD tid = GetWindowThreadProcessId( HWND_32(hwnd), NULL );
999 if (!tid) return 0;
1000 return HTASK_16(tid);
1003 /**********************************************************************
1004 * EnumTaskWindows (USER.225)
1006 BOOL16 WINAPI EnumTaskWindows16( HTASK16 hTask, WNDENUMPROC16 func, LPARAM lParam )
1008 struct wnd_enum_info info;
1009 DWORD tid = HTASK_32( hTask );
1011 if (!tid) return FALSE;
1012 info.proc = func;
1013 info.param = lParam;
1014 return EnumThreadWindows( tid, wnd_enum_callback, (LPARAM)&info );
1018 /**************************************************************************
1019 * GetTopWindow (USER.229)
1021 HWND16 WINAPI GetTopWindow16( HWND16 hwnd )
1023 return HWND_16( GetTopWindow( WIN_Handle32(hwnd) ));
1027 /**************************************************************************
1028 * GetNextWindow (USER.230)
1030 HWND16 WINAPI GetNextWindow16( HWND16 hwnd, WORD flag )
1032 if ((flag != GW_HWNDNEXT) && (flag != GW_HWNDPREV)) return 0;
1033 return GetWindow16( hwnd, flag );
1037 /**************************************************************************
1038 * SetWindowPos (USER.232)
1040 BOOL16 WINAPI SetWindowPos16( HWND16 hwnd, HWND16 hwndInsertAfter,
1041 INT16 x, INT16 y, INT16 cx, INT16 cy, WORD flags)
1043 return SetWindowPos( WIN_Handle32(hwnd), full_insert_after_hwnd(hwndInsertAfter),
1044 x, y, cx, cy, flags );
1048 /**************************************************************************
1049 * SetParent (USER.233)
1051 HWND16 WINAPI SetParent16( HWND16 hwndChild, HWND16 hwndNewParent )
1053 return HWND_16( SetParent( WIN_Handle32(hwndChild), WIN_Handle32(hwndNewParent) ));
1057 /**************************************************************************
1058 * GetCapture (USER.236)
1060 HWND16 WINAPI GetCapture16(void)
1062 return HWND_16( GetCapture() );
1066 /**************************************************************************
1067 * GetUpdateRgn (USER.237)
1069 INT16 WINAPI GetUpdateRgn16( HWND16 hwnd, HRGN16 hrgn, BOOL16 erase )
1071 return GetUpdateRgn( WIN_Handle32(hwnd), HRGN_32(hrgn), erase );
1075 /**************************************************************************
1076 * ExcludeUpdateRgn (USER.238)
1078 INT16 WINAPI ExcludeUpdateRgn16( HDC16 hdc, HWND16 hwnd )
1080 return ExcludeUpdateRgn( HDC_32(hdc), WIN_Handle32(hwnd) );
1084 /**************************************************************************
1085 * GetOpenClipboardWindow (USER.248)
1087 HWND16 WINAPI GetOpenClipboardWindow16(void)
1089 return HWND_16( GetOpenClipboardWindow() );
1093 /**************************************************************************
1094 * BeginDeferWindowPos (USER.259)
1096 HDWP16 WINAPI BeginDeferWindowPos16( INT16 count )
1098 return HDWP_16(BeginDeferWindowPos( count ));
1102 /**************************************************************************
1103 * DeferWindowPos (USER.260)
1105 HDWP16 WINAPI DeferWindowPos16( HDWP16 hdwp, HWND16 hwnd, HWND16 hwndAfter,
1106 INT16 x, INT16 y, INT16 cx, INT16 cy,
1107 UINT16 flags )
1109 return HDWP_16(DeferWindowPos( HDWP_32(hdwp), WIN_Handle32(hwnd),
1110 full_insert_after_hwnd(hwndAfter), x, y, cx, cy, flags ));
1114 /**************************************************************************
1115 * EndDeferWindowPos (USER.261)
1117 BOOL16 WINAPI EndDeferWindowPos16( HDWP16 hdwp )
1119 return EndDeferWindowPos(HDWP_32(hdwp));
1123 /**************************************************************************
1124 * GetWindow (USER.262)
1126 HWND16 WINAPI GetWindow16( HWND16 hwnd, WORD rel )
1128 return HWND_16( GetWindow( WIN_Handle32(hwnd), rel ) );
1132 /**************************************************************************
1133 * ShowOwnedPopups (USER.265)
1135 void WINAPI ShowOwnedPopups16( HWND16 owner, BOOL16 fShow )
1137 ShowOwnedPopups( WIN_Handle32(owner), fShow );
1141 /**************************************************************************
1142 * ShowScrollBar (USER.267)
1144 void WINAPI ShowScrollBar16( HWND16 hwnd, INT16 nBar, BOOL16 fShow )
1146 ShowScrollBar( WIN_Handle32(hwnd), nBar, fShow );
1150 /**************************************************************************
1151 * IsZoomed (USER.272)
1153 BOOL16 WINAPI IsZoomed16(HWND16 hwnd)
1155 return IsZoomed( WIN_Handle32(hwnd) );
1159 /**************************************************************************
1160 * GetDlgCtrlID (USER.277)
1162 INT16 WINAPI GetDlgCtrlID16( HWND16 hwnd )
1164 return GetDlgCtrlID( WIN_Handle32(hwnd) );
1168 /**************************************************************************
1169 * GetDesktopHwnd (USER.278)
1171 * Exactly the same thing as GetDesktopWindow(), but not documented.
1172 * Don't ask me why...
1174 HWND16 WINAPI GetDesktopHwnd16(void)
1176 return GetDesktopWindow16();
1180 /**************************************************************************
1181 * SetSystemMenu (USER.280)
1183 BOOL16 WINAPI SetSystemMenu16( HWND16 hwnd, HMENU16 hMenu )
1185 return SetSystemMenu( WIN_Handle32(hwnd), HMENU_32(hMenu) );
1189 /**************************************************************************
1190 * GetDesktopWindow (USER.286)
1192 HWND16 WINAPI GetDesktopWindow16(void)
1194 return HWND_16( GetDesktopWindow() );
1198 /**************************************************************************
1199 * GetLastActivePopup (USER.287)
1201 HWND16 WINAPI GetLastActivePopup16( HWND16 hwnd )
1203 return HWND_16( GetLastActivePopup( WIN_Handle32(hwnd) ));
1207 /**************************************************************************
1208 * RedrawWindow (USER.290)
1210 BOOL16 WINAPI RedrawWindow16( HWND16 hwnd, const RECT16 *rectUpdate,
1211 HRGN16 hrgnUpdate, UINT16 flags )
1213 if (rectUpdate)
1215 RECT r;
1216 r.left = rectUpdate->left;
1217 r.top = rectUpdate->top;
1218 r.right = rectUpdate->right;
1219 r.bottom = rectUpdate->bottom;
1220 return RedrawWindow(WIN_Handle32(hwnd), &r, HRGN_32(hrgnUpdate), flags);
1222 return RedrawWindow(WIN_Handle32(hwnd), NULL, HRGN_32(hrgnUpdate), flags);
1226 /**************************************************************************
1227 * LockWindowUpdate (USER.294)
1229 BOOL16 WINAPI LockWindowUpdate16( HWND16 hwnd )
1231 return LockWindowUpdate( WIN_Handle32(hwnd) );
1235 /**************************************************************************
1236 * ScrollWindowEx (USER.319)
1238 INT16 WINAPI ScrollWindowEx16( HWND16 hwnd, INT16 dx, INT16 dy,
1239 const RECT16 *rect, const RECT16 *clipRect,
1240 HRGN16 hrgnUpdate, LPRECT16 rcUpdate,
1241 UINT16 flags )
1243 RECT rect32, clipRect32, rcUpdate32;
1244 BOOL16 ret;
1246 if (rect)
1248 rect32.left = rect->left;
1249 rect32.top = rect->top;
1250 rect32.right = rect->right;
1251 rect32.bottom = rect->bottom;
1253 if (clipRect)
1255 clipRect32.left = clipRect->left;
1256 clipRect32.top = clipRect->top;
1257 clipRect32.right = clipRect->right;
1258 clipRect32.bottom = clipRect->bottom;
1260 ret = ScrollWindowEx( WIN_Handle32(hwnd), dx, dy, rect ? &rect32 : NULL,
1261 clipRect ? &clipRect32 : NULL, HRGN_32(hrgnUpdate),
1262 (rcUpdate) ? &rcUpdate32 : NULL, flags );
1263 if (rcUpdate)
1265 rcUpdate->left = rcUpdate32.left;
1266 rcUpdate->top = rcUpdate32.top;
1267 rcUpdate->right = rcUpdate32.right;
1268 rcUpdate->bottom = rcUpdate32.bottom;
1270 return ret;
1274 /**************************************************************************
1275 * FillWindow (USER.324)
1277 void WINAPI FillWindow16( HWND16 hwndParent, HWND16 hwnd, HDC16 hdc, HBRUSH16 hbrush )
1279 RECT rect;
1280 RECT16 rc16;
1281 GetClientRect( WIN_Handle32(hwnd), &rect );
1282 DPtoLP( HDC_32(hdc), (LPPOINT)&rect, 2 );
1283 rc16.left = rect.left;
1284 rc16.top = rect.top;
1285 rc16.right = rect.right;
1286 rc16.bottom = rect.bottom;
1287 PaintRect16( hwndParent, hwnd, hdc, hbrush, &rc16 );
1291 /**************************************************************************
1292 * PaintRect (USER.325)
1294 void WINAPI PaintRect16( HWND16 hwndParent, HWND16 hwnd, HDC16 hdc,
1295 HBRUSH16 hbrush, const RECT16 *rect)
1297 if (hbrush <= CTLCOLOR_STATIC)
1299 HWND parent = WIN_Handle32(hwndParent), hwnd32 = WIN_Handle32(hwnd);
1301 if (!parent) return;
1302 hbrush = SendMessageW( parent, WM_CTLCOLORMSGBOX + hbrush, (WPARAM)hdc, (LPARAM)hwnd32 );
1303 if (!hbrush) hbrush = DefWindowProcW( parent, WM_CTLCOLORMSGBOX + hbrush,
1304 (WPARAM)hdc, (LPARAM)hwnd32 );
1306 if (hbrush) FillRect16( hdc, rect, hbrush );
1310 /**************************************************************************
1311 * GetControlBrush (USER.326)
1313 HBRUSH16 WINAPI GetControlBrush16( HWND16 hwnd, HDC16 hdc, UINT16 ctlType )
1315 HBRUSH16 ret;
1316 HWND hwnd32 = WIN_Handle32(hwnd);
1317 HWND parent = GetParent( hwnd32 );
1319 if (!parent) parent = hwnd32;
1320 ret = SendMessageW( parent, WM_CTLCOLORMSGBOX + ctlType, (WPARAM)hdc, (LPARAM)hwnd32 );
1321 if (!ret) ret = DefWindowProcW( parent, WM_CTLCOLORMSGBOX + ctlType,
1322 (WPARAM)hdc, (LPARAM)hwnd32 );
1323 return ret;
1327 /**************************************************************************
1328 * GetDCEx (USER.359)
1330 HDC16 WINAPI GetDCEx16( HWND16 hwnd, HRGN16 hrgnClip, DWORD flags )
1332 return HDC_16(GetDCEx(WIN_Handle32(hwnd), HRGN_32(hrgnClip), flags));
1336 /**************************************************************************
1337 * GetWindowPlacement (USER.370)
1339 BOOL16 WINAPI GetWindowPlacement16( HWND16 hwnd, WINDOWPLACEMENT16 *wp16 )
1341 WINDOWPLACEMENT wpl;
1343 wpl.length = sizeof(wpl);
1344 if (!GetWindowPlacement( WIN_Handle32(hwnd), &wpl )) return FALSE;
1345 wp16->length = sizeof(*wp16);
1346 wp16->flags = wpl.flags;
1347 wp16->showCmd = wpl.showCmd;
1348 wp16->ptMinPosition.x = wpl.ptMinPosition.x;
1349 wp16->ptMinPosition.y = wpl.ptMinPosition.y;
1350 wp16->ptMaxPosition.x = wpl.ptMaxPosition.x;
1351 wp16->ptMaxPosition.y = wpl.ptMaxPosition.y;
1352 wp16->rcNormalPosition.left = wpl.rcNormalPosition.left;
1353 wp16->rcNormalPosition.top = wpl.rcNormalPosition.top;
1354 wp16->rcNormalPosition.right = wpl.rcNormalPosition.right;
1355 wp16->rcNormalPosition.bottom = wpl.rcNormalPosition.bottom;
1356 return TRUE;
1360 /**************************************************************************
1361 * SetWindowPlacement (USER.371)
1363 BOOL16 WINAPI SetWindowPlacement16( HWND16 hwnd, const WINDOWPLACEMENT16 *wp16 )
1365 WINDOWPLACEMENT wpl;
1367 if (!wp16) return FALSE;
1368 wpl.length = sizeof(wpl);
1369 wpl.flags = wp16->flags;
1370 wpl.showCmd = wp16->showCmd;
1371 wpl.ptMinPosition.x = wp16->ptMinPosition.x;
1372 wpl.ptMinPosition.y = wp16->ptMinPosition.y;
1373 wpl.ptMaxPosition.x = wp16->ptMaxPosition.x;
1374 wpl.ptMaxPosition.y = wp16->ptMaxPosition.y;
1375 wpl.rcNormalPosition.left = wp16->rcNormalPosition.left;
1376 wpl.rcNormalPosition.top = wp16->rcNormalPosition.top;
1377 wpl.rcNormalPosition.right = wp16->rcNormalPosition.right;
1378 wpl.rcNormalPosition.bottom = wp16->rcNormalPosition.bottom;
1379 return SetWindowPlacement( WIN_Handle32(hwnd), &wpl );
1383 /***********************************************************************
1384 * RegisterClassEx (USER.397)
1386 ATOM WINAPI RegisterClassEx16( const WNDCLASSEX16 *wc )
1388 WNDCLASSEXA wc32;
1390 wc32.cbSize = sizeof(wc32);
1391 wc32.style = wc->style;
1392 wc32.lpfnWndProc = WINPROC_AllocProc16( wc->lpfnWndProc );
1393 wc32.cbClsExtra = wc->cbClsExtra;
1394 wc32.cbWndExtra = wc->cbWndExtra;
1395 wc32.hInstance = HINSTANCE_32(GetExePtr(wc->hInstance));
1396 if (!wc32.hInstance) wc32.hInstance = HINSTANCE_32(GetModuleHandle16(NULL));
1397 wc32.hIcon = HICON_32(wc->hIcon);
1398 wc32.hCursor = HCURSOR_32(wc->hCursor);
1399 wc32.hbrBackground = HBRUSH_32(wc->hbrBackground);
1400 wc32.lpszMenuName = MapSL(wc->lpszMenuName);
1401 wc32.lpszClassName = MapSL(wc->lpszClassName);
1402 wc32.hIconSm = HICON_32(wc->hIconSm);
1403 return RegisterClassExA( &wc32 );
1407 /***********************************************************************
1408 * GetClassInfoEx (USER.398)
1410 * FIXME: this is just a guess, I have no idea if GetClassInfoEx() is the
1411 * same in Win16 as in Win32. --AJ
1413 BOOL16 WINAPI GetClassInfoEx16( HINSTANCE16 hInst16, SEGPTR name, WNDCLASSEX16 *wc )
1415 WNDCLASSEXA wc32;
1416 HINSTANCE hInstance;
1417 BOOL ret;
1419 if (hInst16 == GetModuleHandle16("user")) hInstance = user32_module;
1420 else hInstance = HINSTANCE_32(GetExePtr( hInst16 ));
1422 ret = GetClassInfoExA( hInstance, MapSL(name), &wc32 );
1424 if (ret)
1426 wc->lpfnWndProc = WINPROC_GetProc16( wc32.lpfnWndProc, FALSE );
1427 wc->style = wc32.style;
1428 wc->cbClsExtra = wc32.cbClsExtra;
1429 wc->cbWndExtra = wc32.cbWndExtra;
1430 wc->hInstance = (wc32.hInstance == user32_module) ? GetModuleHandle16("user") : HINSTANCE_16(wc32.hInstance);
1431 wc->hIcon = HICON_16(wc32.hIcon);
1432 wc->hIconSm = HICON_16(wc32.hIconSm);
1433 wc->hCursor = HCURSOR_16(wc32.hCursor);
1434 wc->hbrBackground = HBRUSH_16(wc32.hbrBackground);
1435 wc->lpszClassName = 0;
1436 wc->lpszMenuName = MapLS(wc32.lpszMenuName); /* FIXME: leak */
1438 return ret;
1442 /**************************************************************************
1443 * ChildWindowFromPointEx (USER.399)
1445 HWND16 WINAPI ChildWindowFromPointEx16( HWND16 hwndParent, POINT16 pt, UINT16 uFlags)
1447 POINT pt32;
1449 pt32.x = pt.x;
1450 pt32.y = pt.y;
1451 return HWND_16( ChildWindowFromPointEx( WIN_Handle32(hwndParent), pt32, uFlags ));
1455 /**************************************************************************
1456 * GetPriorityClipboardFormat (USER.402)
1458 INT16 WINAPI GetPriorityClipboardFormat16( UINT16 *list, INT16 count )
1460 int i;
1462 for (i = 0; i < count; i++)
1463 if (IsClipboardFormatAvailable( list[i] )) return list[i];
1464 return -1;
1468 /***********************************************************************
1469 * UnregisterClass (USER.403)
1471 BOOL16 WINAPI UnregisterClass16( LPCSTR className, HINSTANCE16 hInstance )
1473 if (hInstance == GetModuleHandle16("user")) hInstance = 0;
1474 return UnregisterClassA( className, HINSTANCE_32(GetExePtr( hInstance )) );
1478 /***********************************************************************
1479 * GetClassInfo (USER.404)
1481 BOOL16 WINAPI GetClassInfo16( HINSTANCE16 hInst16, SEGPTR name, WNDCLASS16 *wc )
1483 WNDCLASSEX16 wcex;
1484 UINT16 ret = GetClassInfoEx16( hInst16, name, &wcex );
1486 if (ret)
1488 wc->style = wcex.style;
1489 wc->lpfnWndProc = wcex.lpfnWndProc;
1490 wc->cbClsExtra = wcex.cbClsExtra;
1491 wc->cbWndExtra = wcex.cbWndExtra;
1492 wc->hInstance = wcex.hInstance;
1493 wc->hIcon = wcex.hIcon;
1494 wc->hCursor = wcex.hCursor;
1495 wc->hbrBackground = wcex.hbrBackground;
1496 wc->lpszMenuName = wcex.lpszMenuName;
1497 wc->lpszClassName = wcex.lpszClassName;
1499 return ret;
1503 /**************************************************************************
1504 * TrackPopupMenu (USER.416)
1506 BOOL16 WINAPI TrackPopupMenu16( HMENU16 hMenu, UINT16 wFlags, INT16 x, INT16 y,
1507 INT16 nReserved, HWND16 hwnd, const RECT16 *lpRect )
1509 RECT r;
1510 if (lpRect)
1512 r.left = lpRect->left;
1513 r.top = lpRect->top;
1514 r.right = lpRect->right;
1515 r.bottom = lpRect->bottom;
1517 return TrackPopupMenu( HMENU_32(hMenu), wFlags, x, y, nReserved,
1518 WIN_Handle32(hwnd), lpRect ? &r : NULL );
1522 /**************************************************************************
1523 * FindWindowEx (USER.427)
1525 HWND16 WINAPI FindWindowEx16( HWND16 parent, HWND16 child, LPCSTR className, LPCSTR title )
1527 return HWND_16( FindWindowExA( WIN_Handle32(parent), WIN_Handle32(child),
1528 className, title ));
1532 /***********************************************************************
1533 * DefFrameProc (USER.445)
1535 LRESULT WINAPI DefFrameProc16( HWND16 hwnd, HWND16 hwndMDIClient,
1536 UINT16 message, WPARAM16 wParam, LPARAM lParam )
1538 switch (message)
1540 case WM_SETTEXT:
1541 lParam = (LPARAM)MapSL(lParam);
1542 /* fall through */
1543 case WM_COMMAND:
1544 case WM_NCACTIVATE:
1545 case WM_SETFOCUS:
1546 case WM_SIZE:
1547 return DefFrameProcA( WIN_Handle32(hwnd), WIN_Handle32(hwndMDIClient),
1548 message, wParam, lParam );
1550 case WM_NEXTMENU:
1552 MDINEXTMENU next_menu;
1553 DefFrameProcW( WIN_Handle32(hwnd), WIN_Handle32(hwndMDIClient),
1554 message, wParam, (LPARAM)&next_menu );
1555 return MAKELONG( HMENU_16(next_menu.hmenuNext), HWND_16(next_menu.hwndNext) );
1557 default:
1558 return DefWindowProc16(hwnd, message, wParam, lParam);
1563 /***********************************************************************
1564 * DefMDIChildProc (USER.447)
1566 LRESULT WINAPI DefMDIChildProc16( HWND16 hwnd, UINT16 message,
1567 WPARAM16 wParam, LPARAM lParam )
1569 switch (message)
1571 case WM_SETTEXT:
1572 return DefMDIChildProcA( WIN_Handle32(hwnd), message, wParam, (LPARAM)MapSL(lParam) );
1574 case WM_MENUCHAR:
1575 case WM_CLOSE:
1576 case WM_SETFOCUS:
1577 case WM_CHILDACTIVATE:
1578 case WM_SYSCOMMAND:
1579 case WM_SETVISIBLE:
1580 case WM_SIZE:
1581 case WM_SYSCHAR:
1582 return DefMDIChildProcW( WIN_Handle32(hwnd), message, wParam, lParam );
1584 case WM_GETMINMAXINFO:
1586 MINMAXINFO16 *mmi16 = (MINMAXINFO16 *)MapSL(lParam);
1587 MINMAXINFO mmi;
1589 mmi.ptReserved.x = mmi16->ptReserved.x;
1590 mmi.ptReserved.y = mmi16->ptReserved.y;
1591 mmi.ptMaxSize.x = mmi16->ptMaxSize.x;
1592 mmi.ptMaxSize.y = mmi16->ptMaxSize.y;
1593 mmi.ptMaxPosition.x = mmi16->ptMaxPosition.x;
1594 mmi.ptMaxPosition.y = mmi16->ptMaxPosition.y;
1595 mmi.ptMinTrackSize.x = mmi16->ptMinTrackSize.x;
1596 mmi.ptMinTrackSize.y = mmi16->ptMinTrackSize.y;
1597 mmi.ptMaxTrackSize.x = mmi16->ptMaxTrackSize.x;
1598 mmi.ptMaxTrackSize.y = mmi16->ptMaxTrackSize.y;
1600 DefMDIChildProcW( WIN_Handle32(hwnd), message, wParam, (LPARAM)&mmi );
1602 mmi16->ptReserved.x = mmi.ptReserved.x;
1603 mmi16->ptReserved.y = mmi.ptReserved.y;
1604 mmi16->ptMaxSize.x = mmi.ptMaxSize.x;
1605 mmi16->ptMaxSize.y = mmi.ptMaxSize.y;
1606 mmi16->ptMaxPosition.x = mmi.ptMaxPosition.x;
1607 mmi16->ptMaxPosition.y = mmi.ptMaxPosition.y;
1608 mmi16->ptMinTrackSize.x = mmi.ptMinTrackSize.x;
1609 mmi16->ptMinTrackSize.y = mmi.ptMinTrackSize.y;
1610 mmi16->ptMaxTrackSize.x = mmi.ptMaxTrackSize.x;
1611 mmi16->ptMaxTrackSize.y = mmi.ptMaxTrackSize.y;
1612 return 0;
1614 case WM_NEXTMENU:
1616 MDINEXTMENU next_menu;
1617 DefMDIChildProcW( WIN_Handle32(hwnd), message, wParam, (LPARAM)&next_menu );
1618 return MAKELONG( HMENU_16(next_menu.hmenuNext), HWND_16(next_menu.hwndNext) );
1620 default:
1621 return DefWindowProc16(hwnd, message, wParam, lParam);
1626 /**************************************************************************
1627 * DrawAnimatedRects (USER.448)
1629 BOOL16 WINAPI DrawAnimatedRects16( HWND16 hwnd, INT16 idAni,
1630 const RECT16* lprcFrom, const RECT16* lprcTo )
1632 RECT rcFrom32, rcTo32;
1633 rcFrom32.left = lprcFrom->left;
1634 rcFrom32.top = lprcFrom->top;
1635 rcFrom32.right = lprcFrom->right;
1636 rcFrom32.bottom = lprcFrom->bottom;
1637 rcTo32.left = lprcTo->left;
1638 rcTo32.top = lprcTo->top;
1639 rcTo32.right = lprcTo->right;
1640 rcTo32.bottom = lprcTo->bottom;
1641 return DrawAnimatedRects( WIN_Handle32(hwnd), idAni, &rcFrom32, &rcTo32 );
1645 /***********************************************************************
1646 * GetInternalWindowPos (USER.460)
1648 UINT16 WINAPI GetInternalWindowPos16( HWND16 hwnd, LPRECT16 rectWnd, LPPOINT16 ptIcon )
1650 WINDOWPLACEMENT16 wndpl;
1652 if (!GetWindowPlacement16( hwnd, &wndpl )) return 0;
1653 if (rectWnd) *rectWnd = wndpl.rcNormalPosition;
1654 if (ptIcon) *ptIcon = wndpl.ptMinPosition;
1655 return wndpl.showCmd;
1659 /**************************************************************************
1660 * SetInternalWindowPos (USER.461)
1662 void WINAPI SetInternalWindowPos16( HWND16 hwnd, UINT16 showCmd, LPRECT16 rect, LPPOINT16 pt )
1664 RECT rc32;
1665 POINT pt32;
1667 if (rect)
1669 rc32.left = rect->left;
1670 rc32.top = rect->top;
1671 rc32.right = rect->right;
1672 rc32.bottom = rect->bottom;
1674 if (pt)
1676 pt32.x = pt->x;
1677 pt32.y = pt->y;
1679 SetInternalWindowPos( WIN_Handle32(hwnd), showCmd,
1680 rect ? &rc32 : NULL, pt ? &pt32 : NULL );
1684 /**************************************************************************
1685 * CalcChildScroll (USER.462)
1687 void WINAPI CalcChildScroll16( HWND16 hwnd, WORD scroll )
1689 CalcChildScroll( WIN_Handle32(hwnd), scroll );
1693 /**************************************************************************
1694 * ScrollChildren (USER.463)
1696 void WINAPI ScrollChildren16(HWND16 hwnd, UINT16 uMsg, WPARAM16 wParam, LPARAM lParam)
1698 ScrollChildren( WIN_Handle32(hwnd), uMsg, wParam, lParam );
1702 /**************************************************************************
1703 * DragDetect (USER.465)
1705 BOOL16 WINAPI DragDetect16( HWND16 hwnd, POINT16 pt )
1707 POINT pt32;
1709 pt32.x = pt.x;
1710 pt32.y = pt.y;
1711 return DragDetect( WIN_Handle32(hwnd), pt32 );
1715 /**************************************************************************
1716 * SetScrollInfo (USER.475)
1718 INT16 WINAPI SetScrollInfo16( HWND16 hwnd, INT16 nBar, const SCROLLINFO *info, BOOL16 redraw )
1720 return SetScrollInfo( WIN_Handle32(hwnd), nBar, info, redraw );
1724 /**************************************************************************
1725 * GetScrollInfo (USER.476)
1727 BOOL16 WINAPI GetScrollInfo16( HWND16 hwnd, INT16 nBar, LPSCROLLINFO info )
1729 return GetScrollInfo( WIN_Handle32(hwnd), nBar, info );
1733 /**************************************************************************
1734 * EnableScrollBar (USER.482)
1736 BOOL16 WINAPI EnableScrollBar16( HWND16 hwnd, INT16 nBar, UINT16 flags )
1738 return EnableScrollBar( WIN_Handle32(hwnd), nBar, flags );
1742 /**************************************************************************
1743 * GetShellWindow (USER.600)
1745 HWND16 WINAPI GetShellWindow16(void)
1747 return HWND_16( GetShellWindow() );
1751 /**************************************************************************
1752 * GetForegroundWindow (USER.608)
1754 HWND16 WINAPI GetForegroundWindow16(void)
1756 return HWND_16( GetForegroundWindow() );
1760 /**************************************************************************
1761 * SetForegroundWindow (USER.609)
1763 BOOL16 WINAPI SetForegroundWindow16( HWND16 hwnd )
1765 return SetForegroundWindow( WIN_Handle32(hwnd) );
1769 /**************************************************************************
1770 * DrawCaptionTemp (USER.657)
1772 BOOL16 WINAPI DrawCaptionTemp16( HWND16 hwnd, HDC16 hdc, const RECT16 *rect,
1773 HFONT16 hFont, HICON16 hIcon, LPCSTR str, UINT16 uFlags )
1775 RECT rect32;
1777 if (rect)
1779 rect32.left = rect->left;
1780 rect32.top = rect->top;
1781 rect32.right = rect->right;
1782 rect32.bottom = rect->bottom;
1784 return DrawCaptionTempA( WIN_Handle32(hwnd), HDC_32(hdc),
1785 rect ? &rect32 : NULL, HFONT_32(hFont),
1786 HICON_32(hIcon), str, uFlags & 0x1f );
1790 /**************************************************************************
1791 * DrawCaption (USER.660)
1793 BOOL16 WINAPI DrawCaption16( HWND16 hwnd, HDC16 hdc, const RECT16 *rect, UINT16 flags )
1795 RECT rect32;
1797 if (rect)
1799 rect32.left = rect->left;
1800 rect32.top = rect->top;
1801 rect32.right = rect->right;
1802 rect32.bottom = rect->bottom;
1804 return DrawCaption(WIN_Handle32(hwnd), HDC_32(hdc), rect ? &rect32 : NULL, flags);
1808 /**************************************************************************
1809 * GetMenuItemRect (USER.665)
1811 BOOL16 WINAPI GetMenuItemRect16( HWND16 hwnd, HMENU16 hMenu, UINT16 uItem,
1812 LPRECT16 rect)
1814 RECT r32;
1815 BOOL res;
1816 if (!rect) return FALSE;
1817 res = GetMenuItemRect( WIN_Handle32(hwnd), HMENU_32(hMenu), uItem, &r32 );
1818 rect->left = r32.left;
1819 rect->top = r32.top;
1820 rect->right = r32.right;
1821 rect->bottom = r32.bottom;
1822 return res;
1826 /**************************************************************************
1827 * SetWindowRgn (USER.668)
1829 INT16 WINAPI SetWindowRgn16( HWND16 hwnd, HRGN16 hrgn, BOOL16 redraw )
1831 return SetWindowRgn( WIN_Handle32(hwnd), HRGN_32(hrgn), redraw );
1835 /**************************************************************************
1836 * MessageBoxIndirect (USER.827)
1838 INT16 WINAPI MessageBoxIndirect16( LPMSGBOXPARAMS16 msgbox )
1840 MSGBOXPARAMSA msgbox32;
1842 msgbox32.cbSize = msgbox->cbSize;
1843 msgbox32.hwndOwner = WIN_Handle32( msgbox->hwndOwner );
1844 msgbox32.hInstance = HINSTANCE_32(msgbox->hInstance);
1845 msgbox32.lpszText = MapSL(msgbox->lpszText);
1846 msgbox32.lpszCaption = MapSL(msgbox->lpszCaption);
1847 msgbox32.dwStyle = msgbox->dwStyle;
1848 msgbox32.lpszIcon = MapSL(msgbox->lpszIcon);
1849 msgbox32.dwContextHelpId = msgbox->dwContextHelpId;
1850 msgbox32.lpfnMsgBoxCallback = msgbox->lpfnMsgBoxCallback;
1851 msgbox32.dwLanguageId = msgbox->dwLanguageId;
1852 return MessageBoxIndirectA( &msgbox32 );