user32: Fix VK_RETURN handling in IsDialogMessage for dialogs without an IDOK.
[wine] / dlls / user32 / dialog.c
1 /*
2  * Dialog functions
3  *
4  * Copyright 1993, 1994, 1996 Alexandre Julliard
5  *
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.
10  *
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.
15  *
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
19  */
20
21 #include "config.h"
22 #include "wine/port.h"
23
24 #include <ctype.h>
25 #include <errno.h>
26 #include <limits.h>
27 #include <stdlib.h>
28 #include <stdarg.h>
29 #include <stdio.h>
30 #include <string.h>
31
32 #include "windef.h"
33 #include "winbase.h"
34 #include "wingdi.h"
35 #include "winuser.h"
36 #include "winnls.h"
37 #include "wine/unicode.h"
38 #include "controls.h"
39 #include "win.h"
40 #include "user_private.h"
41 #include "wine/debug.h"
42
43 WINE_DEFAULT_DEBUG_CHANNEL(dialog);
44
45
46   /* Dialog control information */
47 typedef struct
48 {
49     DWORD      style;
50     DWORD      exStyle;
51     DWORD      helpId;
52     INT16      x;
53     INT16      y;
54     INT16      cx;
55     INT16      cy;
56     UINT_PTR   id;
57     LPCWSTR    className;
58     LPCWSTR    windowName;
59     LPCVOID    data;
60 } DLG_CONTROL_INFO;
61
62   /* Dialog template */
63 typedef struct
64 {
65     DWORD      style;
66     DWORD      exStyle;
67     DWORD      helpId;
68     UINT16     nbItems;
69     INT16      x;
70     INT16      y;
71     INT16      cx;
72     INT16      cy;
73     LPCWSTR    menuName;
74     LPCWSTR    className;
75     LPCWSTR    caption;
76     INT16      pointSize;
77     WORD       weight;
78     BOOL       italic;
79     LPCWSTR    faceName;
80     BOOL       dialogEx;
81 } DLG_TEMPLATE;
82
83   /* Radio button group */
84 typedef struct
85 {
86     UINT firstID;
87     UINT lastID;
88     UINT checkID;
89 } RADIOGROUP;
90
91
92 /*********************************************************************
93  * dialog class descriptor
94  */
95 const struct builtin_class_descr DIALOG_builtin_class =
96 {
97     (LPCWSTR)DIALOG_CLASS_ATOM, /* name */
98     CS_SAVEBITS | CS_DBLCLKS, /* style  */
99     WINPROC_DIALOG,     /* proc */
100     DLGWINDOWEXTRA,     /* extra */
101     IDC_ARROW,          /* cursor */
102     0                   /* brush */
103 };
104
105
106 /***********************************************************************
107  *           DIALOG_EnableOwner
108  *
109  * Helper function for modal dialogs to enable again the
110  * owner of the dialog box.
111  */
112 static void DIALOG_EnableOwner( HWND hOwner )
113 {
114     /* Owner must be a top-level window */
115     if (hOwner)
116         hOwner = GetAncestor( hOwner, GA_ROOT );
117     if (!hOwner) return;
118     EnableWindow( hOwner, TRUE );
119 }
120
121
122 /***********************************************************************
123  *           DIALOG_DisableOwner
124  *
125  * Helper function for modal dialogs to disable the
126  * owner of the dialog box. Returns TRUE if owner was enabled.
127  */
128 static BOOL DIALOG_DisableOwner( HWND hOwner )
129 {
130     /* Owner must be a top-level window */
131     if (hOwner)
132         hOwner = GetAncestor( hOwner, GA_ROOT );
133     if (!hOwner) return FALSE;
134     if (IsWindowEnabled( hOwner ))
135     {
136         EnableWindow( hOwner, FALSE );
137         return TRUE;
138     }
139     else
140         return FALSE;
141 }
142
143 /***********************************************************************
144  *           DIALOG_GetControl32
145  *
146  * Return the class and text of the control pointed to by ptr,
147  * fill the header structure and return a pointer to the next control.
148  */
149 static const WORD *DIALOG_GetControl32( const WORD *p, DLG_CONTROL_INFO *info,
150                                         BOOL dialogEx )
151 {
152     if (dialogEx)
153     {
154         info->helpId  = GET_DWORD(p); p += 2;
155         info->exStyle = GET_DWORD(p); p += 2;
156         info->style   = GET_DWORD(p); p += 2;
157     }
158     else
159     {
160         info->helpId  = 0;
161         info->style   = GET_DWORD(p); p += 2;
162         info->exStyle = GET_DWORD(p); p += 2;
163     }
164     info->x       = GET_WORD(p); p++;
165     info->y       = GET_WORD(p); p++;
166     info->cx      = GET_WORD(p); p++;
167     info->cy      = GET_WORD(p); p++;
168
169     if (dialogEx)
170     {
171         /* id is a DWORD for DIALOGEX */
172         info->id = GET_DWORD(p);
173         p += 2;
174     }
175     else
176     {
177         info->id = GET_WORD(p);
178         p++;
179     }
180
181     if (GET_WORD(p) == 0xffff)
182     {
183         static const WCHAR class_names[6][10] =
184         {
185             { 'B','u','t','t','o','n', },             /* 0x80 */
186             { 'E','d','i','t', },                     /* 0x81 */
187             { 'S','t','a','t','i','c', },             /* 0x82 */
188             { 'L','i','s','t','B','o','x', },         /* 0x83 */
189             { 'S','c','r','o','l','l','B','a','r', }, /* 0x84 */
190             { 'C','o','m','b','o','B','o','x', }      /* 0x85 */
191         };
192         WORD id = GET_WORD(p+1);
193         /* Windows treats dialog control class ids 0-5 same way as 0x80-0x85 */
194         if ((id >= 0x80) && (id <= 0x85)) id -= 0x80;
195         if (id <= 5)
196             info->className = class_names[id];
197         else
198         {
199             info->className = NULL;
200             ERR("Unknown built-in class id %04x\n", id );
201         }
202         p += 2;
203     }
204     else
205     {
206         info->className = p;
207         p += strlenW( info->className ) + 1;
208     }
209
210     if (GET_WORD(p) == 0xffff)  /* Is it an integer id? */
211     {
212         info->windowName = MAKEINTRESOURCEW(GET_WORD(p + 1));
213         p += 2;
214     }
215     else
216     {
217         info->windowName = p;
218         p += strlenW( info->windowName ) + 1;
219     }
220
221     TRACE("    %s %s %ld, %d, %d, %d, %d, %08x, %08x, %08x\n",
222           debugstr_w( info->className ), debugstr_w( info->windowName ),
223           info->id, info->x, info->y, info->cx, info->cy,
224           info->style, info->exStyle, info->helpId );
225
226     if (GET_WORD(p))
227     {
228         if (TRACE_ON(dialog))
229         {
230             WORD i, count = GET_WORD(p) / sizeof(WORD);
231             TRACE("  BEGIN\n");
232             TRACE("    ");
233             for (i = 0; i < count; i++) TRACE( "%04x,", GET_WORD(p+i+1) );
234             TRACE("\n");
235             TRACE("  END\n" );
236         }
237         info->data = p + 1;
238         p += GET_WORD(p) / sizeof(WORD);
239     }
240     else info->data = NULL;
241     p++;
242
243     /* Next control is on dword boundary */
244     return (const WORD *)(((UINT_PTR)p + 3) & ~3);
245 }
246
247
248 /***********************************************************************
249  *           DIALOG_CreateControls32
250  *
251  * Create the control windows for a dialog.
252  */
253 static BOOL DIALOG_CreateControls32( HWND hwnd, LPCSTR template, const DLG_TEMPLATE *dlgTemplate,
254                                      HINSTANCE hInst, BOOL unicode )
255 {
256     DIALOGINFO *dlgInfo = DIALOG_get_info( hwnd, TRUE );
257     DLG_CONTROL_INFO info;
258     HWND hwndCtrl, hwndDefButton = 0;
259     INT items = dlgTemplate->nbItems;
260
261     TRACE(" BEGIN\n" );
262     while (items--)
263     {
264         template = (LPCSTR)DIALOG_GetControl32( (const WORD *)template, &info,
265                                                 dlgTemplate->dialogEx );
266         /* Is this it? */
267         if (info.style & WS_BORDER)
268         {
269             info.style &= ~WS_BORDER;
270             info.exStyle |= WS_EX_CLIENTEDGE;
271         }
272         if (unicode)
273         {
274             hwndCtrl = CreateWindowExW( info.exStyle | WS_EX_NOPARENTNOTIFY,
275                                         info.className, info.windowName,
276                                         info.style | WS_CHILD,
277                                         MulDiv(info.x, dlgInfo->xBaseUnit, 4),
278                                         MulDiv(info.y, dlgInfo->yBaseUnit, 8),
279                                         MulDiv(info.cx, dlgInfo->xBaseUnit, 4),
280                                         MulDiv(info.cy, dlgInfo->yBaseUnit, 8),
281                                         hwnd, (HMENU)info.id,
282                                         hInst, (LPVOID)info.data );
283         }
284         else
285         {
286             LPCSTR class = (LPCSTR)info.className;
287             LPCSTR caption = (LPCSTR)info.windowName;
288             LPSTR class_tmp = NULL;
289             LPSTR caption_tmp = NULL;
290
291             if (!IS_INTRESOURCE(class))
292             {
293                 DWORD len = WideCharToMultiByte( CP_ACP, 0, info.className, -1, NULL, 0, NULL, NULL );
294                 class_tmp = HeapAlloc( GetProcessHeap(), 0, len );
295                 WideCharToMultiByte( CP_ACP, 0, info.className, -1, class_tmp, len, NULL, NULL );
296                 class = class_tmp;
297             }
298             if (!IS_INTRESOURCE(caption))
299             {
300                 DWORD len = WideCharToMultiByte( CP_ACP, 0, info.windowName, -1, NULL, 0, NULL, NULL );
301                 caption_tmp = HeapAlloc( GetProcessHeap(), 0, len );
302                 WideCharToMultiByte( CP_ACP, 0, info.windowName, -1, caption_tmp, len, NULL, NULL );
303                 caption = caption_tmp;
304             }
305             hwndCtrl = CreateWindowExA( info.exStyle | WS_EX_NOPARENTNOTIFY,
306                                         class, caption, info.style | WS_CHILD,
307                                         MulDiv(info.x, dlgInfo->xBaseUnit, 4),
308                                         MulDiv(info.y, dlgInfo->yBaseUnit, 8),
309                                         MulDiv(info.cx, dlgInfo->xBaseUnit, 4),
310                                         MulDiv(info.cy, dlgInfo->yBaseUnit, 8),
311                                         hwnd, (HMENU)info.id,
312                                         hInst, (LPVOID)info.data );
313             HeapFree( GetProcessHeap(), 0, class_tmp );
314             HeapFree( GetProcessHeap(), 0, caption_tmp );
315         }
316         if (!hwndCtrl)
317         {
318             if (dlgTemplate->style & DS_NOFAILCREATE) continue;
319             return FALSE;
320         }
321
322             /* Send initialisation messages to the control */
323         if (dlgInfo->hUserFont) SendMessageW( hwndCtrl, WM_SETFONT,
324                                              (WPARAM)dlgInfo->hUserFont, 0 );
325         if (SendMessageW(hwndCtrl, WM_GETDLGCODE, 0, 0) & DLGC_DEFPUSHBUTTON)
326         {
327               /* If there's already a default push-button, set it back */
328               /* to normal and use this one instead. */
329             if (hwndDefButton)
330                 SendMessageW( hwndDefButton, BM_SETSTYLE, BS_PUSHBUTTON, FALSE );
331             hwndDefButton = hwndCtrl;
332             dlgInfo->idResult = GetWindowLongPtrA( hwndCtrl, GWLP_ID );
333         }
334     }
335     TRACE(" END\n" );
336     return TRUE;
337 }
338
339
340 /***********************************************************************
341  *           DIALOG_ParseTemplate32
342  *
343  * Fill a DLG_TEMPLATE structure from the dialog template, and return
344  * a pointer to the first control.
345  */
346 static LPCSTR DIALOG_ParseTemplate32( LPCSTR template, DLG_TEMPLATE * result )
347 {
348     const WORD *p = (const WORD *)template;
349     WORD signature;
350     WORD dlgver;
351
352     dlgver = GET_WORD(p); p++;
353     signature = GET_WORD(p); p++;
354
355     if (dlgver == 1 && signature == 0xffff)  /* DIALOGEX resource */
356     {
357         result->dialogEx = TRUE;
358         result->helpId   = GET_DWORD(p); p += 2;
359         result->exStyle  = GET_DWORD(p); p += 2;
360         result->style    = GET_DWORD(p); p += 2;
361     }
362     else
363     {
364         result->style = GET_DWORD(p - 2);
365         result->dialogEx = FALSE;
366         result->helpId   = 0;
367         result->exStyle  = GET_DWORD(p); p += 2;
368     }
369     result->nbItems = GET_WORD(p); p++;
370     result->x       = GET_WORD(p); p++;
371     result->y       = GET_WORD(p); p++;
372     result->cx      = GET_WORD(p); p++;
373     result->cy      = GET_WORD(p); p++;
374     TRACE("DIALOG%s %d, %d, %d, %d, %d\n",
375            result->dialogEx ? "EX" : "", result->x, result->y,
376            result->cx, result->cy, result->helpId );
377     TRACE(" STYLE 0x%08x\n", result->style );
378     TRACE(" EXSTYLE 0x%08x\n", result->exStyle );
379
380     /* Get the menu name */
381
382     switch(GET_WORD(p))
383     {
384     case 0x0000:
385         result->menuName = NULL;
386         p++;
387         break;
388     case 0xffff:
389         result->menuName = MAKEINTRESOURCEW(GET_WORD( p + 1 ));
390         p += 2;
391         TRACE(" MENU %04x\n", LOWORD(result->menuName) );
392         break;
393     default:
394         result->menuName = p;
395         TRACE(" MENU %s\n", debugstr_w(result->menuName) );
396         p += strlenW( result->menuName ) + 1;
397         break;
398     }
399
400     /* Get the class name */
401
402     switch(GET_WORD(p))
403     {
404     case 0x0000:
405         result->className = (LPCWSTR)DIALOG_CLASS_ATOM;
406         p++;
407         break;
408     case 0xffff:
409         result->className = MAKEINTRESOURCEW(GET_WORD( p + 1 ));
410         p += 2;
411         TRACE(" CLASS %04x\n", LOWORD(result->className) );
412         break;
413     default:
414         result->className = p;
415         TRACE(" CLASS %s\n", debugstr_w( result->className ));
416         p += strlenW( result->className ) + 1;
417         break;
418     }
419
420     /* Get the window caption */
421
422     result->caption = p;
423     p += strlenW( result->caption ) + 1;
424     TRACE(" CAPTION %s\n", debugstr_w( result->caption ) );
425
426     /* Get the font name */
427
428     result->pointSize = 0;
429     result->faceName = NULL;
430     result->weight = FW_DONTCARE;
431     result->italic = FALSE;
432
433     if (result->style & DS_SETFONT)
434     {
435         result->pointSize = GET_WORD(p);
436         p++;
437
438         /* If pointSize is 0x7fff, it means that we need to use the font
439          * in NONCLIENTMETRICSW.lfMessageFont, and NOT read the weight,
440          * italic, and facename from the dialog template.
441          */
442         if (result->pointSize == 0x7fff)
443         {
444             /* We could call SystemParametersInfo here, but then we'd have
445              * to convert from pixel size to point size (which can be
446              * imprecise).
447              */
448             TRACE(" FONT: Using message box font\n");
449         }
450         else
451         {
452             if (result->dialogEx)
453             {
454                 result->weight = GET_WORD(p); p++;
455                 result->italic = LOBYTE(GET_WORD(p)); p++;
456             }
457             result->faceName = p;
458             p += strlenW( result->faceName ) + 1;
459
460             TRACE(" FONT %d, %s, %d, %s\n",
461                   result->pointSize, debugstr_w( result->faceName ),
462                   result->weight, result->italic ? "TRUE" : "FALSE" );
463         }
464     }
465
466     /* First control is on dword boundary */
467     return (LPCSTR)(((UINT_PTR)p + 3) & ~3);
468 }
469
470
471 /***********************************************************************
472  *           DIALOG_CreateIndirect
473  *       Creates a dialog box window
474  *
475  *       modal = TRUE if we are called from a modal dialog box.
476  *       (it's more compatible to do it here, as under Windows the owner
477  *       is never disabled if the dialog fails because of an invalid template)
478  */
479 static HWND DIALOG_CreateIndirect( HINSTANCE hInst, LPCVOID dlgTemplate,
480                                    HWND owner, DLGPROC dlgProc, LPARAM param,
481                                    BOOL unicode, BOOL modal )
482 {
483     HWND hwnd;
484     RECT rect;
485     POINT pos;
486     SIZE size;
487     DLG_TEMPLATE template;
488     DIALOGINFO * dlgInfo = NULL;
489     DWORD units = GetDialogBaseUnits();
490     BOOL ownerEnabled = TRUE;
491     HMENU hMenu = 0;
492     HFONT hUserFont = 0;
493     UINT flags = 0;
494     UINT xBaseUnit = LOWORD(units);
495     UINT yBaseUnit = HIWORD(units);
496
497       /* Parse dialog template */
498
499     if (!dlgTemplate) return 0;
500     dlgTemplate = DIALOG_ParseTemplate32( dlgTemplate, &template );
501
502       /* Load menu */
503
504     if (template.menuName) hMenu = LoadMenuW( hInst, template.menuName );
505
506       /* Create custom font if needed */
507
508     if (template.style & DS_SETFONT)
509     {
510         HDC dc = GetDC(0);
511
512         if (template.pointSize == 0x7fff)
513         {
514             /* We get the message font from the non-client metrics */
515             NONCLIENTMETRICSW ncMetrics;
516
517             ncMetrics.cbSize = sizeof(NONCLIENTMETRICSW);
518             if (SystemParametersInfoW(SPI_GETNONCLIENTMETRICS,
519                                       sizeof(NONCLIENTMETRICSW), &ncMetrics, 0))
520             {
521                 hUserFont = CreateFontIndirectW( &ncMetrics.lfMessageFont );
522             }
523         }
524         else
525         {
526             /* We convert the size to pixels and then make it -ve.  This works
527              * for both +ve and -ve template.pointSize */
528             int pixels = MulDiv(template.pointSize, GetDeviceCaps(dc , LOGPIXELSY), 72);
529             hUserFont = CreateFontW( -pixels, 0, 0, 0, template.weight,
530                                               template.italic, FALSE, FALSE, DEFAULT_CHARSET, 0, 0,
531                                               PROOF_QUALITY, FF_DONTCARE,
532                                               template.faceName );
533         }
534
535         if (hUserFont)
536         {
537             SIZE charSize;
538             HFONT hOldFont = SelectObject( dc, hUserFont );
539             charSize.cx = GdiGetCharDimensions( dc, NULL, &charSize.cy );
540             if (charSize.cx)
541             {
542                 xBaseUnit = charSize.cx;
543                 yBaseUnit = charSize.cy;
544             }
545             SelectObject( dc, hOldFont );
546         }
547         ReleaseDC(0, dc);
548         TRACE("units = %d,%d\n", xBaseUnit, yBaseUnit );
549     }
550
551     /* Create dialog main window */
552
553     rect.left = rect.top = 0;
554     rect.right = MulDiv(template.cx, xBaseUnit, 4);
555     rect.bottom =  MulDiv(template.cy, yBaseUnit, 8);
556     if (template.style & WS_CHILD)
557         template.style &= ~(WS_CAPTION|WS_SYSMENU);
558     if (template.style & DS_MODALFRAME)
559         template.exStyle |= WS_EX_DLGMODALFRAME;
560     if (template.style & DS_CONTROL)
561         template.exStyle |= WS_EX_CONTROLPARENT;
562     AdjustWindowRectEx( &rect, template.style, (hMenu != 0), template.exStyle );
563     pos.x = rect.left;
564     pos.y = rect.top;
565     size.cx = rect.right - rect.left;
566     size.cy = rect.bottom - rect.top;
567
568     if (template.x == (SHORT)0x8000 /*CW_USEDEFAULT16*/)
569     {
570         pos.x = pos.y = CW_USEDEFAULT;
571     }
572     else
573     {
574         HMONITOR monitor = 0;
575         MONITORINFO mon_info;
576
577         mon_info.cbSize = sizeof(mon_info);
578         if (template.style & DS_CENTER)
579         {
580             monitor = MonitorFromWindow( owner ? owner : GetActiveWindow(), MONITOR_DEFAULTTOPRIMARY );
581             GetMonitorInfoW( monitor, &mon_info );
582             pos.x = (mon_info.rcWork.left + mon_info.rcWork.right - size.cx) / 2;
583             pos.y = (mon_info.rcWork.top + mon_info.rcWork.bottom - size.cy) / 2;
584         }
585         else if (template.style & DS_CENTERMOUSE)
586         {
587             GetCursorPos( &pos );
588             monitor = MonitorFromPoint( pos, MONITOR_DEFAULTTOPRIMARY );
589             GetMonitorInfoW( monitor, &mon_info );
590         }
591         else
592         {
593             pos.x += MulDiv(template.x, xBaseUnit, 4);
594             pos.y += MulDiv(template.y, yBaseUnit, 8);
595             if (!(template.style & (WS_CHILD|DS_ABSALIGN))) ClientToScreen( owner, &pos );
596         }
597         if ( !(template.style & WS_CHILD) )
598         {
599             INT dX, dY;
600
601             /* try to fit it into the desktop */
602
603             if (!monitor)
604             {
605                 SetRect( &rect, pos.x, pos.y, pos.x + size.cx, pos.y + size.cy );
606                 monitor = MonitorFromRect( &rect, MONITOR_DEFAULTTOPRIMARY );
607                 GetMonitorInfoW( monitor, &mon_info );
608             }
609             if ((dX = pos.x + size.cx + GetSystemMetrics(SM_CXDLGFRAME) - mon_info.rcWork.right) > 0)
610                 pos.x -= dX;
611             if ((dY = pos.y + size.cy + GetSystemMetrics(SM_CYDLGFRAME) - mon_info.rcWork.bottom) > 0)
612                 pos.y -= dY;
613             if( pos.x < mon_info.rcWork.left ) pos.x = mon_info.rcWork.left;
614             if( pos.y < mon_info.rcWork.top ) pos.y = mon_info.rcWork.top;
615         }
616     }
617
618     if (modal)
619     {
620         ownerEnabled = DIALOG_DisableOwner( owner );
621         if (ownerEnabled) flags |= DF_OWNERENABLED;
622     }
623
624     if (unicode)
625     {
626         hwnd = CreateWindowExW(template.exStyle, template.className, template.caption,
627                                template.style & ~WS_VISIBLE, pos.x, pos.y, size.cx, size.cy,
628                                owner, hMenu, hInst, NULL );
629     }
630     else
631     {
632         LPCSTR class = (LPCSTR)template.className;
633         LPCSTR caption = (LPCSTR)template.caption;
634         LPSTR class_tmp = NULL;
635         LPSTR caption_tmp = NULL;
636
637         if (!IS_INTRESOURCE(class))
638         {
639             DWORD len = WideCharToMultiByte( CP_ACP, 0, template.className, -1, NULL, 0, NULL, NULL );
640             class_tmp = HeapAlloc( GetProcessHeap(), 0, len );
641             WideCharToMultiByte( CP_ACP, 0, template.className, -1, class_tmp, len, NULL, NULL );
642             class = class_tmp;
643         }
644         if (!IS_INTRESOURCE(caption))
645         {
646             DWORD len = WideCharToMultiByte( CP_ACP, 0, template.caption, -1, NULL, 0, NULL, NULL );
647             caption_tmp = HeapAlloc( GetProcessHeap(), 0, len );
648             WideCharToMultiByte( CP_ACP, 0, template.caption, -1, caption_tmp, len, NULL, NULL );
649             caption = caption_tmp;
650         }
651         hwnd = CreateWindowExA(template.exStyle, class, caption,
652                                template.style & ~WS_VISIBLE, pos.x, pos.y, size.cx, size.cy,
653                                owner, hMenu, hInst, NULL );
654         HeapFree( GetProcessHeap(), 0, class_tmp );
655         HeapFree( GetProcessHeap(), 0, caption_tmp );
656     }
657
658     if (!hwnd)
659     {
660         if (hUserFont) DeleteObject( hUserFont );
661         if (hMenu) DestroyMenu( hMenu );
662         if (modal && (flags & DF_OWNERENABLED)) DIALOG_EnableOwner(owner);
663         return 0;
664     }
665
666     /* moved this from the top of the method to here as DIALOGINFO structure
667     will be valid only after WM_CREATE message has been handled in DefDlgProc
668     All the members of the structure get filled here using temp variables */
669     dlgInfo = DIALOG_get_info( hwnd, TRUE );
670     dlgInfo->hwndFocus   = 0;
671     dlgInfo->hUserFont   = hUserFont;
672     dlgInfo->hMenu       = hMenu;
673     dlgInfo->xBaseUnit   = xBaseUnit;
674     dlgInfo->yBaseUnit   = yBaseUnit;
675     dlgInfo->flags       = flags;
676
677     if (template.helpId) SetWindowContextHelpId( hwnd, template.helpId );
678
679     if (unicode) SetWindowLongPtrW( hwnd, DWLP_DLGPROC, (ULONG_PTR)dlgProc );
680     else SetWindowLongPtrA( hwnd, DWLP_DLGPROC, (ULONG_PTR)dlgProc );
681
682     if (dlgProc && dlgInfo->hUserFont)
683         SendMessageW( hwnd, WM_SETFONT, (WPARAM)dlgInfo->hUserFont, 0 );
684
685     /* Create controls */
686
687     if (DIALOG_CreateControls32( hwnd, dlgTemplate, &template, hInst, unicode ))
688     {
689         /* Send initialisation messages and set focus */
690
691         if (dlgProc)
692         {
693             HWND focus = GetNextDlgTabItem( hwnd, 0, FALSE );
694             if (SendMessageW( hwnd, WM_INITDIALOG, (WPARAM)focus, param ) &&
695                 ((~template.style & DS_CONTROL) || (template.style & WS_VISIBLE)))
696             {
697                 /* By returning TRUE, app has requested a default focus assignment.
698                  * WM_INITDIALOG may have changed the tab order, so find the first
699                  * tabstop control again. */
700                 dlgInfo->hwndFocus = GetNextDlgTabItem( hwnd, 0, FALSE );
701                 if( dlgInfo->hwndFocus )
702                     SetFocus( dlgInfo->hwndFocus );
703             }
704         }
705
706         if (template.style & WS_VISIBLE && !(GetWindowLongW( hwnd, GWL_STYLE ) & WS_VISIBLE))
707         {
708            ShowWindow( hwnd, SW_SHOWNORMAL );   /* SW_SHOW doesn't always work */
709         }
710         return hwnd;
711     }
712     if (modal && ownerEnabled) DIALOG_EnableOwner(owner);
713     if( IsWindow(hwnd) ) DestroyWindow( hwnd );
714     return 0;
715 }
716
717
718 /***********************************************************************
719  *              CreateDialogParamA (USER32.@)
720  */
721 HWND WINAPI CreateDialogParamA( HINSTANCE hInst, LPCSTR name, HWND owner,
722                                 DLGPROC dlgProc, LPARAM param )
723 {
724     HRSRC hrsrc;
725     LPCDLGTEMPLATEA ptr;
726
727     if (!(hrsrc = FindResourceA( hInst, name, (LPSTR)RT_DIALOG ))) return 0;
728     if (!(ptr = LoadResource(hInst, hrsrc))) return 0;
729     return CreateDialogIndirectParamA( hInst, ptr, owner, dlgProc, param );
730 }
731
732
733 /***********************************************************************
734  *              CreateDialogParamW (USER32.@)
735  */
736 HWND WINAPI CreateDialogParamW( HINSTANCE hInst, LPCWSTR name, HWND owner,
737                                 DLGPROC dlgProc, LPARAM param )
738 {
739     HRSRC hrsrc;
740     LPCDLGTEMPLATEA ptr;
741
742     if (!(hrsrc = FindResourceW( hInst, name, (LPWSTR)RT_DIALOG ))) return 0;
743     if (!(ptr = LoadResource(hInst, hrsrc))) return 0;
744     return CreateDialogIndirectParamW( hInst, ptr, owner, dlgProc, param );
745 }
746
747
748 /***********************************************************************
749  *              CreateDialogIndirectParamAorW (USER32.@)
750  */
751 HWND WINAPI CreateDialogIndirectParamAorW( HINSTANCE hInst, LPCVOID dlgTemplate,
752                                            HWND owner, DLGPROC dlgProc, LPARAM param,
753                                            DWORD flags )
754 {
755     return DIALOG_CreateIndirect( hInst, dlgTemplate, owner, dlgProc, param, !flags, FALSE );
756 }
757
758 /***********************************************************************
759  *              CreateDialogIndirectParamA (USER32.@)
760  */
761 HWND WINAPI CreateDialogIndirectParamA( HINSTANCE hInst, LPCDLGTEMPLATEA dlgTemplate,
762                                         HWND owner, DLGPROC dlgProc, LPARAM param )
763 {
764     return CreateDialogIndirectParamAorW( hInst, dlgTemplate, owner, dlgProc, param, 2 );
765 }
766
767 /***********************************************************************
768  *              CreateDialogIndirectParamW (USER32.@)
769  */
770 HWND WINAPI CreateDialogIndirectParamW( HINSTANCE hInst, LPCDLGTEMPLATEW dlgTemplate,
771                                         HWND owner, DLGPROC dlgProc, LPARAM param )
772 {
773     return CreateDialogIndirectParamAorW( hInst, dlgTemplate, owner, dlgProc, param, 0 );
774 }
775
776
777 /***********************************************************************
778  *           DIALOG_DoDialogBox
779  */
780 INT DIALOG_DoDialogBox( HWND hwnd, HWND owner )
781 {
782     DIALOGINFO * dlgInfo;
783     MSG msg;
784     INT retval;
785     HWND ownerMsg = GetAncestor( owner, GA_ROOT );
786     BOOL bFirstEmpty;
787
788     if (!(dlgInfo = DIALOG_get_info( hwnd, FALSE ))) return -1;
789
790     bFirstEmpty = TRUE;
791     if (!(dlgInfo->flags & DF_END)) /* was EndDialog called in WM_INITDIALOG ? */
792     {
793         for (;;)
794         {
795             if (!PeekMessageW( &msg, 0, 0, 0, PM_REMOVE ))
796             {
797                 if (bFirstEmpty)
798                 {
799                     /* ShowWindow the first time the queue goes empty */
800                     ShowWindow( hwnd, SW_SHOWNORMAL );
801                     bFirstEmpty = FALSE;
802                 }
803                 if (!(GetWindowLongW( hwnd, GWL_STYLE ) & DS_NOIDLEMSG))
804                {
805                     /* No message present -> send ENTERIDLE and wait */
806                     SendMessageW( ownerMsg, WM_ENTERIDLE, MSGF_DIALOGBOX, (LPARAM)hwnd );
807                 }
808                 if (!GetMessageW( &msg, 0, 0, 0 )) break;
809             }
810
811             if (!IsWindow( hwnd )) return 0;
812             if (!(dlgInfo->flags & DF_END) && !IsDialogMessageW( hwnd, &msg))
813             {
814                 TranslateMessage( &msg );
815                 DispatchMessageW( &msg );
816             }
817             if (dlgInfo->flags & DF_END) break;
818
819             if (bFirstEmpty && msg.message == WM_TIMER)
820             {
821                 ShowWindow( hwnd, SW_SHOWNORMAL );
822                 bFirstEmpty = FALSE;
823             }
824         }
825     }
826     if (dlgInfo->flags & DF_OWNERENABLED) DIALOG_EnableOwner( owner );
827     retval = dlgInfo->idResult;
828     DestroyWindow( hwnd );
829     return retval;
830 }
831
832
833 /***********************************************************************
834  *              DialogBoxParamA (USER32.@)
835  */
836 INT_PTR WINAPI DialogBoxParamA( HINSTANCE hInst, LPCSTR name,
837                                 HWND owner, DLGPROC dlgProc, LPARAM param )
838 {
839     HWND hwnd;
840     HRSRC hrsrc;
841     LPCDLGTEMPLATEA ptr;
842
843     if (!(hrsrc = FindResourceA( hInst, name, (LPSTR)RT_DIALOG ))) return -1;
844     if (!(ptr = LoadResource(hInst, hrsrc))) return -1;
845     hwnd = DIALOG_CreateIndirect( hInst, ptr, owner, dlgProc, param, FALSE, TRUE );
846     if (hwnd) return DIALOG_DoDialogBox( hwnd, owner );
847     return 0;
848 }
849
850
851 /***********************************************************************
852  *              DialogBoxParamW (USER32.@)
853  */
854 INT_PTR WINAPI DialogBoxParamW( HINSTANCE hInst, LPCWSTR name,
855                                 HWND owner, DLGPROC dlgProc, LPARAM param )
856 {
857     HWND hwnd;
858     HRSRC hrsrc;
859     LPCDLGTEMPLATEW ptr;
860
861     if (!(hrsrc = FindResourceW( hInst, name, (LPWSTR)RT_DIALOG ))) return -1;
862     if (!(ptr = LoadResource(hInst, hrsrc))) return -1;
863     hwnd = DIALOG_CreateIndirect( hInst, ptr, owner, dlgProc, param, TRUE, TRUE );
864     if (hwnd) return DIALOG_DoDialogBox( hwnd, owner );
865     return 0;
866 }
867
868
869 /***********************************************************************
870  *              DialogBoxIndirectParamAorW (USER32.@)
871  */
872 INT_PTR WINAPI DialogBoxIndirectParamAorW( HINSTANCE hInstance, LPCVOID template,
873                                            HWND owner, DLGPROC dlgProc,
874                                            LPARAM param, DWORD flags )
875 {
876     HWND hwnd = DIALOG_CreateIndirect( hInstance, template, owner, dlgProc, param, !flags, TRUE );
877     if (hwnd) return DIALOG_DoDialogBox( hwnd, owner );
878     return -1;
879 }
880
881 /***********************************************************************
882  *              DialogBoxIndirectParamA (USER32.@)
883  */
884 INT_PTR WINAPI DialogBoxIndirectParamA(HINSTANCE hInstance, LPCDLGTEMPLATEA template,
885                                        HWND owner, DLGPROC dlgProc, LPARAM param )
886 {
887     return DialogBoxIndirectParamAorW( hInstance, template, owner, dlgProc, param, 2 );
888 }
889
890
891 /***********************************************************************
892  *              DialogBoxIndirectParamW (USER32.@)
893  */
894 INT_PTR WINAPI DialogBoxIndirectParamW(HINSTANCE hInstance, LPCDLGTEMPLATEW template,
895                                        HWND owner, DLGPROC dlgProc, LPARAM param )
896 {
897     return DialogBoxIndirectParamAorW( hInstance, template, owner, dlgProc, param, 0 );
898 }
899
900 /***********************************************************************
901  *              EndDialog (USER32.@)
902  */
903 BOOL WINAPI EndDialog( HWND hwnd, INT_PTR retval )
904 {
905     BOOL wasEnabled = TRUE;
906     DIALOGINFO * dlgInfo;
907     HWND owner;
908
909     TRACE("%p %ld\n", hwnd, retval );
910
911     if (!(dlgInfo = DIALOG_get_info( hwnd, FALSE )))
912     {
913         ERR("got invalid window handle (%p); buggy app !?\n", hwnd);
914         return FALSE;
915     }
916     dlgInfo->idResult = retval;
917     dlgInfo->flags |= DF_END;
918     wasEnabled = (dlgInfo->flags & DF_OWNERENABLED);
919
920     if (wasEnabled && (owner = GetWindow( hwnd, GW_OWNER )))
921         DIALOG_EnableOwner( owner );
922
923     /* Windows sets the focus to the dialog itself in EndDialog */
924
925     if (IsChild(hwnd, GetFocus()))
926        SetFocus( hwnd );
927
928     /* Don't have to send a ShowWindow(SW_HIDE), just do
929        SetWindowPos with SWP_HIDEWINDOW as done in Windows */
930
931     SetWindowPos(hwnd, NULL, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE
932                  | SWP_NOZORDER | SWP_NOACTIVATE | SWP_HIDEWINDOW);
933
934     if (hwnd == GetActiveWindow()) WINPOS_ActivateOtherWindow( hwnd );
935
936     /* unblock dialog loop */
937     PostMessageA(hwnd, WM_NULL, 0, 0);
938     return TRUE;
939 }
940
941
942 /***********************************************************************
943  *           DIALOG_IsAccelerator
944  */
945 static BOOL DIALOG_IsAccelerator( HWND hwnd, HWND hwndDlg, WPARAM wParam )
946 {
947     HWND hwndControl = hwnd;
948     HWND hwndNext;
949     INT dlgCode;
950     WCHAR buffer[128];
951
952     do
953     {
954         DWORD style = GetWindowLongW( hwndControl, GWL_STYLE );
955         if ((style & (WS_VISIBLE | WS_DISABLED)) == WS_VISIBLE)
956         {
957             dlgCode = SendMessageW( hwndControl, WM_GETDLGCODE, 0, 0 );
958             if ( (dlgCode & (DLGC_BUTTON | DLGC_STATIC)) &&
959                  GetWindowTextW( hwndControl, buffer, sizeof(buffer)/sizeof(WCHAR) ))
960             {
961                 /* find the accelerator key */
962                 LPWSTR p = buffer - 2;
963
964                 do
965                 {
966                     p = strchrW( p + 2, '&' );
967                 }
968                 while (p != NULL && p[1] == '&');
969
970                 /* and check if it's the one we're looking for */
971                 if (p != NULL && toupperW( p[1] ) == toupperW( wParam ) )
972                 {
973                     if ((dlgCode & DLGC_STATIC) || (style & 0x0f) == BS_GROUPBOX )
974                     {
975                         /* set focus to the control */
976                         SendMessageW( hwndDlg, WM_NEXTDLGCTL, (WPARAM)hwndControl, 1);
977                         /* and bump it on to next */
978                         SendMessageW( hwndDlg, WM_NEXTDLGCTL, 0, 0);
979                     }
980                     else if (dlgCode & DLGC_BUTTON)
981                     {
982                         /* send BM_CLICK message to the control */
983                         SendMessageW( hwndControl, BM_CLICK, 0, 0 );
984                     }
985                     return TRUE;
986                 }
987             }
988             hwndNext = GetWindow( hwndControl, GW_CHILD );
989         }
990         else hwndNext = 0;
991
992         if (!hwndNext) hwndNext = GetWindow( hwndControl, GW_HWNDNEXT );
993
994         while (!hwndNext && hwndControl)
995         {
996             hwndControl = GetParent( hwndControl );
997             if (hwndControl == hwndDlg)
998             {
999                 if(hwnd==hwndDlg)   /* prevent endless loop */
1000                 {
1001                     hwndNext=hwnd;
1002                     break;
1003                 }
1004                 hwndNext = GetWindow( hwndDlg, GW_CHILD );
1005             }
1006             else
1007                 hwndNext = GetWindow( hwndControl, GW_HWNDNEXT );
1008         }
1009         hwndControl = hwndNext;
1010     }
1011     while (hwndControl && (hwndControl != hwnd));
1012
1013     return FALSE;
1014 }
1015
1016 /***********************************************************************
1017  *           DIALOG_FindMsgDestination
1018  *
1019  * The messages that IsDialogMessage sends may not go to the dialog
1020  * calling IsDialogMessage if that dialog is a child, and it has the
1021  * DS_CONTROL style set.
1022  * We propagate up until we hit one that does not have DS_CONTROL, or
1023  * whose parent is not a dialog.
1024  *
1025  * This is undocumented behaviour.
1026  */
1027 static HWND DIALOG_FindMsgDestination( HWND hwndDlg )
1028 {
1029     while (GetWindowLongA(hwndDlg, GWL_STYLE) & DS_CONTROL)
1030     {
1031         WND *pParent;
1032         HWND hParent = GetParent(hwndDlg);
1033         if (!hParent) break;
1034
1035         pParent = WIN_GetPtr(hParent);
1036         if (!pParent || pParent == WND_OTHER_PROCESS || pParent == WND_DESKTOP) break;
1037
1038         if (!pParent->dlgInfo)
1039         {
1040             WIN_ReleasePtr(pParent);
1041             break;
1042         }
1043         WIN_ReleasePtr(pParent);
1044
1045         hwndDlg = hParent;
1046     }
1047
1048     return hwndDlg;
1049 }
1050
1051 /***********************************************************************
1052  *              DIALOG_FixOneChildOnChangeFocus
1053  *
1054  * Callback helper for DIALOG_FixChildrenOnChangeFocus
1055  */
1056
1057 static BOOL CALLBACK DIALOG_FixOneChildOnChangeFocus (HWND hwndChild,
1058         LPARAM lParam)
1059 {
1060     /* If a default pushbutton then no longer default */
1061     if (DLGC_DEFPUSHBUTTON & SendMessageW (hwndChild, WM_GETDLGCODE, 0, 0))
1062         SendMessageW (hwndChild, BM_SETSTYLE, BS_PUSHBUTTON, TRUE);
1063     return TRUE;
1064 }
1065
1066 /***********************************************************************
1067  *              DIALOG_FixChildrenOnChangeFocus
1068  *
1069  * Following the change of focus that occurs for example after handling
1070  * a WM_KEYDOWN VK_TAB in IsDialogMessage, some tidying of the dialog's
1071  * children may be required.
1072  */
1073 static void DIALOG_FixChildrenOnChangeFocus (HWND hwndDlg, HWND hwndNext)
1074 {
1075     INT dlgcode_next = SendMessageW (hwndNext, WM_GETDLGCODE, 0, 0);
1076     /* INT dlgcode_dlg  = SendMessageW (hwndDlg, WM_GETDLGCODE, 0, 0); */
1077     /* Windows does ask for this.  I don't know why yet */
1078
1079     EnumChildWindows (hwndDlg, DIALOG_FixOneChildOnChangeFocus, 0);
1080
1081     /* If the button that is getting the focus WAS flagged as the default
1082      * pushbutton then ask the dialog what it thinks the default is and
1083      * set that in the default style.
1084      */
1085     if (dlgcode_next & DLGC_DEFPUSHBUTTON)
1086     {
1087         DWORD def_id = SendMessageW (hwndDlg, DM_GETDEFID, 0, 0);
1088         if (HIWORD(def_id) == DC_HASDEFID)
1089         {
1090             HWND hwndDef;
1091             def_id = LOWORD(def_id);
1092             hwndDef = GetDlgItem (hwndDlg, def_id);
1093             if (hwndDef)
1094             {
1095                 INT dlgcode_def = SendMessageW (hwndDef, WM_GETDLGCODE, 0, 0);
1096                 /* I know that if it is a button then it should already be a
1097                  * UNDEFPUSHBUTTON, since we have just told the buttons to 
1098                  * change style.  But maybe they ignored our request
1099                  */
1100                 if ((dlgcode_def & DLGC_BUTTON) &&
1101                         (dlgcode_def &  DLGC_UNDEFPUSHBUTTON))
1102                 {
1103                     SendMessageW (hwndDef, BM_SETSTYLE, BS_DEFPUSHBUTTON, TRUE);
1104                 }
1105             }
1106         }
1107     }
1108     else if ((dlgcode_next & DLGC_BUTTON) && (dlgcode_next & DLGC_UNDEFPUSHBUTTON))
1109     {
1110         SendMessageW (hwndNext, BM_SETSTYLE, BS_DEFPUSHBUTTON, TRUE);
1111         /* I wonder why it doesn't send a DM_SETDEFID */
1112     }
1113 }
1114
1115 /***********************************************************************
1116  *              IsDialogMessageW (USER32.@)
1117  */
1118 BOOL WINAPI IsDialogMessageW( HWND hwndDlg, LPMSG msg )
1119 {
1120     INT dlgCode = 0;
1121
1122     if (CallMsgFilterW( msg, MSGF_DIALOGBOX )) return TRUE;
1123
1124     hwndDlg = WIN_GetFullHandle( hwndDlg );
1125     if (is_desktop_window(hwndDlg)) return FALSE;
1126     if ((hwndDlg != msg->hwnd) && !IsChild( hwndDlg, msg->hwnd )) return FALSE;
1127
1128     hwndDlg = DIALOG_FindMsgDestination(hwndDlg);
1129
1130     switch(msg->message)
1131     {
1132     case WM_KEYDOWN:
1133         dlgCode = SendMessageW( msg->hwnd, WM_GETDLGCODE, msg->wParam, (LPARAM)msg );
1134         if (dlgCode & (DLGC_WANTMESSAGE)) break;
1135
1136         switch(msg->wParam)
1137         {
1138         case VK_TAB:
1139             if (!(dlgCode & DLGC_WANTTAB))
1140             {
1141                 BOOL fIsDialog = TRUE;
1142                 WND *pWnd = WIN_GetPtr( hwndDlg );
1143
1144                 if (pWnd && pWnd != WND_OTHER_PROCESS)
1145                 {
1146                     fIsDialog = (pWnd->dlgInfo != NULL);
1147                     WIN_ReleasePtr(pWnd);
1148                 }
1149
1150                 /* I am not sure under which circumstances the TAB is handled
1151                  * each way.  All I do know is that it does not always simply
1152                  * send WM_NEXTDLGCTL.  (Personally I have never yet seen it
1153                  * do so but I presume someone has)
1154                  */
1155                 if (fIsDialog)
1156                     SendMessageW( hwndDlg, WM_NEXTDLGCTL, (GetKeyState(VK_SHIFT) & 0x8000), 0 );
1157                 else
1158                 {
1159                     /* It would appear that GetNextDlgTabItem can handle being
1160                      * passed hwndDlg rather than NULL but that is undocumented
1161                      * so let's do it properly
1162                      */
1163                     HWND hwndFocus = GetFocus();
1164                     HWND hwndNext = GetNextDlgTabItem (hwndDlg,
1165                             hwndFocus == hwndDlg ? NULL : hwndFocus,
1166                             GetKeyState (VK_SHIFT) & 0x8000);
1167                     if (hwndNext)
1168                     {
1169                         dlgCode = SendMessageW (hwndNext, WM_GETDLGCODE,
1170                                 msg->wParam, (LPARAM)msg);
1171                         if (dlgCode & DLGC_HASSETSEL)
1172                         {
1173                             INT maxlen = 1 + SendMessageW (hwndNext, WM_GETTEXTLENGTH, 0, 0);
1174                             WCHAR *buffer = HeapAlloc (GetProcessHeap(), 0, maxlen * sizeof(WCHAR));
1175                             if (buffer)
1176                             {
1177                                 INT length;
1178                                 SendMessageW (hwndNext, WM_GETTEXT, maxlen, (LPARAM) buffer);
1179                                 length = strlenW (buffer);
1180                                 HeapFree (GetProcessHeap(), 0, buffer);
1181                                 SendMessageW (hwndNext, EM_SETSEL, 0, length);
1182                             }
1183                         }
1184                         SetFocus (hwndNext);
1185                         DIALOG_FixChildrenOnChangeFocus (hwndDlg, hwndNext);
1186                     }
1187                     else
1188                         return FALSE;
1189                 }
1190                 return TRUE;
1191             }
1192             break;
1193
1194         case VK_RIGHT:
1195         case VK_DOWN:
1196         case VK_LEFT:
1197         case VK_UP:
1198             if (!(dlgCode & DLGC_WANTARROWS))
1199             {
1200                 BOOL fPrevious = (msg->wParam == VK_LEFT || msg->wParam == VK_UP);
1201                 HWND hwndNext = GetNextDlgGroupItem (hwndDlg, GetFocus(), fPrevious );
1202                 SendMessageW( hwndDlg, WM_NEXTDLGCTL, (WPARAM)hwndNext, 1 );
1203                 return TRUE;
1204             }
1205             break;
1206
1207         case VK_CANCEL:
1208         case VK_ESCAPE:
1209             SendMessageW( hwndDlg, WM_COMMAND, IDCANCEL, (LPARAM)GetDlgItem( hwndDlg, IDCANCEL ) );
1210             return TRUE;
1211
1212         case VK_EXECUTE:
1213         case VK_RETURN:
1214             {
1215                 DWORD dw;
1216                 if ((GetFocus() == msg->hwnd) &&
1217                     (SendMessageW (msg->hwnd, WM_GETDLGCODE, 0, 0) & DLGC_DEFPUSHBUTTON))
1218                 {
1219                     SendMessageW (hwndDlg, WM_COMMAND, MAKEWPARAM (GetDlgCtrlID(msg->hwnd),BN_CLICKED), (LPARAM)msg->hwnd); 
1220                 }
1221                 else if (DC_HASDEFID == HIWORD(dw = SendMessageW (hwndDlg, DM_GETDEFID, 0, 0)))
1222                 {
1223                     HWND hwndDef = GetDlgItem(hwndDlg, LOWORD(dw));
1224                     if (hwndDef ? IsWindowEnabled(hwndDef) : LOWORD(dw)==IDOK)
1225                         SendMessageW( hwndDlg, WM_COMMAND, MAKEWPARAM( LOWORD(dw), BN_CLICKED ), (LPARAM)hwndDef);
1226                 }
1227                 else
1228                 {
1229                     SendMessageW( hwndDlg, WM_COMMAND, IDOK, (LPARAM)GetDlgItem( hwndDlg, IDOK ) );
1230
1231                 }
1232             }
1233             return TRUE;
1234         }
1235         break;
1236
1237     case WM_CHAR:
1238         /* FIXME Under what circumstances does WM_GETDLGCODE get sent?
1239          * It does NOT get sent in the test program I have
1240          */
1241         dlgCode = SendMessageW( msg->hwnd, WM_GETDLGCODE, msg->wParam, (LPARAM)msg );
1242         if (dlgCode & (DLGC_WANTCHARS|DLGC_WANTMESSAGE)) break;
1243         if (msg->wParam == '\t' && (dlgCode & DLGC_WANTTAB)) break;
1244         /* drop through */
1245
1246     case WM_SYSCHAR:
1247         if (DIALOG_IsAccelerator( WIN_GetFullHandle(msg->hwnd), hwndDlg, msg->wParam ))
1248         {
1249             /* don't translate or dispatch */
1250             return TRUE;
1251         }
1252         break;
1253     }
1254
1255     TranslateMessage( msg );
1256     DispatchMessageW( msg );
1257     return TRUE;
1258 }
1259
1260
1261 /***********************************************************************
1262  *              GetDlgCtrlID (USER32.@)
1263  */
1264 INT WINAPI GetDlgCtrlID( HWND hwnd )
1265 {
1266     return GetWindowLongPtrW( hwnd, GWLP_ID );
1267 }
1268
1269
1270 /***********************************************************************
1271  *              GetDlgItem (USER32.@)
1272  */
1273 HWND WINAPI GetDlgItem( HWND hwndDlg, INT id )
1274 {
1275     int i;
1276     HWND *list = WIN_ListChildren( hwndDlg );
1277     HWND ret = 0;
1278
1279     if (!list) return 0;
1280
1281     for (i = 0; list[i]; i++) if (GetWindowLongPtrW( list[i], GWLP_ID ) == id) break;
1282     ret = list[i];
1283     HeapFree( GetProcessHeap(), 0, list );
1284     return ret;
1285 }
1286
1287
1288 /*******************************************************************
1289  *              SendDlgItemMessageA (USER32.@)
1290  */
1291 LRESULT WINAPI SendDlgItemMessageA( HWND hwnd, INT id, UINT msg,
1292                                       WPARAM wParam, LPARAM lParam )
1293 {
1294     HWND hwndCtrl = GetDlgItem( hwnd, id );
1295     if (hwndCtrl) return SendMessageA( hwndCtrl, msg, wParam, lParam );
1296     else return 0;
1297 }
1298
1299
1300 /*******************************************************************
1301  *              SendDlgItemMessageW (USER32.@)
1302  */
1303 LRESULT WINAPI SendDlgItemMessageW( HWND hwnd, INT id, UINT msg,
1304                                       WPARAM wParam, LPARAM lParam )
1305 {
1306     HWND hwndCtrl = GetDlgItem( hwnd, id );
1307     if (hwndCtrl) return SendMessageW( hwndCtrl, msg, wParam, lParam );
1308     else return 0;
1309 }
1310
1311
1312 /*******************************************************************
1313  *              SetDlgItemTextA (USER32.@)
1314  */
1315 BOOL WINAPI SetDlgItemTextA( HWND hwnd, INT id, LPCSTR lpString )
1316 {
1317     return SendDlgItemMessageA( hwnd, id, WM_SETTEXT, 0, (LPARAM)lpString );
1318 }
1319
1320
1321 /*******************************************************************
1322  *              SetDlgItemTextW (USER32.@)
1323  */
1324 BOOL WINAPI SetDlgItemTextW( HWND hwnd, INT id, LPCWSTR lpString )
1325 {
1326     return SendDlgItemMessageW( hwnd, id, WM_SETTEXT, 0, (LPARAM)lpString );
1327 }
1328
1329
1330 /***********************************************************************
1331  *              GetDlgItemTextA (USER32.@)
1332  */
1333 UINT WINAPI GetDlgItemTextA( HWND hwnd, INT id, LPSTR str, INT len )
1334 {
1335     if (str && (len > 0)) str[0] = '\0';
1336     return (UINT)SendDlgItemMessageA( hwnd, id, WM_GETTEXT,
1337                                          len, (LPARAM)str );
1338 }
1339
1340
1341 /***********************************************************************
1342  *              GetDlgItemTextW (USER32.@)
1343  */
1344 UINT WINAPI GetDlgItemTextW( HWND hwnd, INT id, LPWSTR str, INT len )
1345 {
1346     if (str && (len > 0)) str[0] = '\0';
1347     return (UINT)SendDlgItemMessageW( hwnd, id, WM_GETTEXT,
1348                                          len, (LPARAM)str );
1349 }
1350
1351
1352 /*******************************************************************
1353  *              SetDlgItemInt (USER32.@)
1354  */
1355 BOOL WINAPI SetDlgItemInt( HWND hwnd, INT id, UINT value,
1356                              BOOL fSigned )
1357 {
1358     char str[20];
1359
1360     if (fSigned) sprintf( str, "%d", (INT)value );
1361     else sprintf( str, "%u", value );
1362     SendDlgItemMessageA( hwnd, id, WM_SETTEXT, 0, (LPARAM)str );
1363     return TRUE;
1364 }
1365
1366
1367 /***********************************************************************
1368  *              GetDlgItemInt (USER32.@)
1369  */
1370 UINT WINAPI GetDlgItemInt( HWND hwnd, INT id, BOOL *translated,
1371                                BOOL fSigned )
1372 {
1373     char str[30];
1374     char * endptr;
1375     LONG_PTR result = 0;
1376
1377     if (translated) *translated = FALSE;
1378     if (!SendDlgItemMessageA(hwnd, id, WM_GETTEXT, sizeof(str), (LPARAM)str))
1379         return 0;
1380     if (fSigned)
1381     {
1382         result = strtol( str, &endptr, 10 );
1383         if (!endptr || (endptr == str))  /* Conversion was unsuccessful */
1384             return 0;
1385         if (((result == LONG_MIN) || (result == LONG_MAX)) && (errno==ERANGE))
1386             return 0;
1387     }
1388     else
1389     {
1390         result = strtoul( str, &endptr, 10 );
1391         if (!endptr || (endptr == str))  /* Conversion was unsuccessful */
1392             return 0;
1393         if ((result == ULONG_MAX) && (errno == ERANGE)) return 0;
1394     }
1395     if (translated) *translated = TRUE;
1396     return (UINT)result;
1397 }
1398
1399
1400 /***********************************************************************
1401  *              CheckDlgButton (USER32.@)
1402  */
1403 BOOL WINAPI CheckDlgButton( HWND hwnd, INT id, UINT check )
1404 {
1405     SendDlgItemMessageW( hwnd, id, BM_SETCHECK, check, 0 );
1406     return TRUE;
1407 }
1408
1409
1410 /***********************************************************************
1411  *              IsDlgButtonChecked (USER32.@)
1412  */
1413 UINT WINAPI IsDlgButtonChecked( HWND hwnd, int id )
1414 {
1415     return (UINT)SendDlgItemMessageW( hwnd, id, BM_GETCHECK, 0, 0 );
1416 }
1417
1418
1419 /***********************************************************************
1420  *           CheckRB
1421  *
1422  * Callback function used to check/uncheck radio buttons that fall
1423  * within a specific range of IDs.
1424  */
1425 static BOOL CALLBACK CheckRB(HWND hwndChild, LPARAM lParam)
1426 {
1427     LONG lChildID = GetWindowLongPtrW(hwndChild, GWLP_ID);
1428     RADIOGROUP *lpRadioGroup = (RADIOGROUP *) lParam;
1429
1430     if ((lChildID >= lpRadioGroup->firstID) &&
1431         (lChildID <= lpRadioGroup->lastID))
1432     {
1433         if (lChildID == lpRadioGroup->checkID)
1434         {
1435             SendMessageW(hwndChild, BM_SETCHECK, BST_CHECKED, 0);
1436         }
1437         else
1438         {
1439             SendMessageW(hwndChild, BM_SETCHECK, BST_UNCHECKED, 0);
1440         }
1441     }
1442
1443     return TRUE;
1444 }
1445
1446
1447 /***********************************************************************
1448  *              CheckRadioButton (USER32.@)
1449  */
1450 BOOL WINAPI CheckRadioButton( HWND hwndDlg, int firstID,
1451                               int lastID, int checkID )
1452 {
1453     RADIOGROUP radioGroup;
1454
1455     radioGroup.firstID = firstID;
1456     radioGroup.lastID = lastID;
1457     radioGroup.checkID = checkID;
1458
1459     return EnumChildWindows(hwndDlg, (WNDENUMPROC)CheckRB,
1460                             (LPARAM)&radioGroup);
1461 }
1462
1463
1464 /***********************************************************************
1465  *              GetDialogBaseUnits (USER.243)
1466  *              GetDialogBaseUnits (USER32.@)
1467  */
1468 DWORD WINAPI GetDialogBaseUnits(void)
1469 {
1470     static DWORD units;
1471
1472     if (!units)
1473     {
1474         HDC hdc;
1475         SIZE size;
1476
1477         if ((hdc = GetDC(0)))
1478         {
1479             size.cx = GdiGetCharDimensions( hdc, NULL, &size.cy );
1480             if (size.cx) units = MAKELONG( size.cx, size.cy );
1481             ReleaseDC( 0, hdc );
1482         }
1483         TRACE("base units = %d,%d\n", LOWORD(units), HIWORD(units) );
1484     }
1485     return units;
1486 }
1487
1488
1489 /***********************************************************************
1490  *              MapDialogRect (USER32.@)
1491  */
1492 BOOL WINAPI MapDialogRect( HWND hwnd, LPRECT rect )
1493 {
1494     DIALOGINFO * dlgInfo;
1495     if (!(dlgInfo = DIALOG_get_info( hwnd, FALSE ))) return FALSE;
1496     rect->left   = MulDiv(rect->left, dlgInfo->xBaseUnit, 4);
1497     rect->right  = MulDiv(rect->right, dlgInfo->xBaseUnit, 4);
1498     rect->top    = MulDiv(rect->top, dlgInfo->yBaseUnit, 8);
1499     rect->bottom = MulDiv(rect->bottom, dlgInfo->yBaseUnit, 8);
1500     return TRUE;
1501 }
1502
1503
1504 /***********************************************************************
1505  *              GetNextDlgGroupItem (USER32.@)
1506  *
1507  * Corrections to MSDN documentation
1508  *
1509  * (Under Windows 2000 at least, where hwndDlg is not actually a dialog)
1510  * 1. hwndCtrl can be hwndDlg in which case it behaves as for NULL
1511  * 2. Prev of NULL or hwndDlg fails
1512  */
1513 HWND WINAPI GetNextDlgGroupItem( HWND hwndDlg, HWND hwndCtrl, BOOL fPrevious )
1514 {
1515     HWND hwnd, hwndNext, retvalue, hwndLastGroup = 0;
1516     BOOL fLooped=FALSE;
1517     BOOL fSkipping=FALSE;
1518
1519     hwndDlg = WIN_GetFullHandle( hwndDlg );
1520     hwndCtrl = WIN_GetFullHandle( hwndCtrl );
1521
1522     if (hwndDlg == hwndCtrl) hwndCtrl = NULL;
1523     if (!hwndCtrl && fPrevious) return 0;
1524
1525     if (hwndCtrl)
1526     {
1527         if (!IsChild (hwndDlg, hwndCtrl)) return 0;
1528     }
1529     else
1530     {
1531         /* No ctrl specified -> start from the beginning */
1532         if (!(hwndCtrl = GetWindow( hwndDlg, GW_CHILD ))) return 0;
1533         /* MSDN is wrong. fPrevious does not result in the last child */
1534
1535         /* Maybe that first one is valid.  If so then we don't want to skip it*/
1536         if ((GetWindowLongW( hwndCtrl, GWL_STYLE ) & (WS_VISIBLE|WS_DISABLED)) == WS_VISIBLE)
1537         {
1538             return hwndCtrl;
1539         }
1540     }
1541
1542     /* Always go forward around the group and list of controls; for the 
1543      * previous control keep track; for the next break when you find one
1544      */
1545     retvalue = hwndCtrl;
1546     hwnd = hwndCtrl;
1547     while (hwndNext = GetWindow (hwnd, GW_HWNDNEXT),
1548            1)
1549     {
1550         while (!hwndNext)
1551         {
1552             /* Climb out until there is a next sibling of the ancestor or we
1553              * reach the top (in which case we loop back to the start)
1554              */
1555             if (hwndDlg == GetParent (hwnd))
1556             {
1557                 /* Wrap around to the beginning of the list, within the same
1558                  * group. (Once only)
1559                  */
1560                 if (fLooped) goto end;
1561                 fLooped = TRUE;
1562                 hwndNext = GetWindow (hwndDlg, GW_CHILD);
1563             }
1564             else
1565             {
1566                 hwnd = GetParent (hwnd);
1567                 hwndNext = GetWindow (hwnd, GW_HWNDNEXT);
1568             }
1569         }
1570         hwnd = hwndNext;
1571
1572         /* Wander down the leading edge of controlparents */
1573         while ( (GetWindowLongW (hwnd, GWL_EXSTYLE) & WS_EX_CONTROLPARENT) &&
1574                 ((GetWindowLongW (hwnd, GWL_STYLE) & (WS_VISIBLE | WS_DISABLED)) == WS_VISIBLE) &&
1575                 (hwndNext = GetWindow (hwnd, GW_CHILD)))
1576             hwnd = hwndNext;
1577         /* Question.  If the control is a control parent but either has no
1578          * children or is not visible/enabled then if it has a WS_GROUP does
1579          * it count?  For that matter does it count anyway?
1580          * I believe it doesn't count.
1581          */
1582
1583         if ((GetWindowLongW (hwnd, GWL_STYLE) & WS_GROUP))
1584         {
1585             hwndLastGroup = hwnd;
1586             if (!fSkipping)
1587             {
1588                 /* Look for the beginning of the group */
1589                 fSkipping = TRUE;
1590             }
1591         }
1592
1593         if (hwnd == hwndCtrl)
1594         {
1595             if (!fSkipping) break;
1596             if (hwndLastGroup == hwnd) break;
1597             hwnd = hwndLastGroup;
1598             fSkipping = FALSE;
1599             fLooped = FALSE;
1600         }
1601
1602         if (!fSkipping &&
1603             (GetWindowLongW (hwnd, GWL_STYLE) & (WS_VISIBLE|WS_DISABLED)) ==
1604              WS_VISIBLE)
1605         {
1606             retvalue = hwnd;
1607             if (!fPrevious) break;
1608         }
1609     }
1610 end:
1611     return retvalue;
1612 }
1613
1614
1615 /***********************************************************************
1616  *           DIALOG_GetNextTabItem
1617  *
1618  * Recursive helper for GetNextDlgTabItem
1619  */
1620 static HWND DIALOG_GetNextTabItem( HWND hwndMain, HWND hwndDlg, HWND hwndCtrl, BOOL fPrevious )
1621 {
1622     LONG dsStyle;
1623     LONG exStyle;
1624     UINT wndSearch = fPrevious ? GW_HWNDPREV : GW_HWNDNEXT;
1625     HWND retWnd = 0;
1626     HWND hChildFirst = 0;
1627
1628     if(!hwndCtrl)
1629     {
1630         hChildFirst = GetWindow(hwndDlg,GW_CHILD);
1631         if(fPrevious) hChildFirst = GetWindow(hChildFirst,GW_HWNDLAST);
1632     }
1633     else if (IsChild( hwndMain, hwndCtrl ))
1634     {
1635         hChildFirst = GetWindow(hwndCtrl,wndSearch);
1636         if(!hChildFirst)
1637         {
1638             if(GetParent(hwndCtrl) != hwndMain)
1639                 /* i.e. if we are not at the top level of the recursion */
1640                 hChildFirst = GetWindow(GetParent(hwndCtrl),wndSearch);
1641             else
1642                 hChildFirst = GetWindow(hwndCtrl, fPrevious ? GW_HWNDLAST : GW_HWNDFIRST);
1643         }
1644     }
1645
1646     while(hChildFirst)
1647     {
1648         dsStyle = GetWindowLongA(hChildFirst,GWL_STYLE);
1649         exStyle = GetWindowLongA(hChildFirst,GWL_EXSTYLE);
1650         if( (exStyle & WS_EX_CONTROLPARENT) && (dsStyle & WS_VISIBLE) && !(dsStyle & WS_DISABLED))
1651         {
1652             HWND retWnd;
1653             retWnd = DIALOG_GetNextTabItem(hwndMain,hChildFirst,NULL,fPrevious );
1654             if (retWnd) return (retWnd);
1655         }
1656         else if( (dsStyle & WS_TABSTOP) && (dsStyle & WS_VISIBLE) && !(dsStyle & WS_DISABLED))
1657         {
1658             return (hChildFirst);
1659         }
1660         hChildFirst = GetWindow(hChildFirst,wndSearch);
1661     }
1662     if(hwndCtrl)
1663     {
1664         HWND hParent = GetParent(hwndCtrl);
1665         while(hParent)
1666         {
1667             if(hParent == hwndMain) break;
1668             retWnd = DIALOG_GetNextTabItem(hwndMain,GetParent(hParent),hParent,fPrevious );
1669             if(retWnd) break;
1670             hParent = GetParent(hParent);
1671         }
1672         if(!retWnd)
1673             retWnd = DIALOG_GetNextTabItem(hwndMain,hwndMain,NULL,fPrevious );
1674     }
1675     return retWnd ? retWnd : hwndCtrl;
1676 }
1677
1678 /***********************************************************************
1679  *              GetNextDlgTabItem (USER32.@)
1680  */
1681 HWND WINAPI GetNextDlgTabItem( HWND hwndDlg, HWND hwndCtrl,
1682                                    BOOL fPrevious )
1683 {
1684     hwndDlg = WIN_GetFullHandle( hwndDlg );
1685     hwndCtrl = WIN_GetFullHandle( hwndCtrl );
1686
1687     /* Undocumented but tested under Win2000 and WinME */
1688     if (hwndDlg == hwndCtrl) hwndCtrl = NULL;
1689
1690     /* Contrary to MSDN documentation, tested under Win2000 and WinME
1691      * NB GetLastError returns whatever was set before the function was
1692      * called.
1693      */
1694     if (!hwndCtrl && fPrevious) return 0;
1695
1696     return DIALOG_GetNextTabItem(hwndDlg,hwndDlg,hwndCtrl,fPrevious);
1697 }
1698
1699 /**********************************************************************
1700  *           DIALOG_DlgDirSelect
1701  *
1702  * Helper function for DlgDirSelect*
1703  */
1704 static BOOL DIALOG_DlgDirSelect( HWND hwnd, LPWSTR str, INT len,
1705                                  INT id, BOOL unicode, BOOL combo )
1706 {
1707     WCHAR *buffer, *ptr;
1708     INT item, size;
1709     BOOL ret;
1710     HWND listbox = GetDlgItem( hwnd, id );
1711
1712     TRACE("%p %s %d\n", hwnd, unicode ? debugstr_w(str) : debugstr_a((LPSTR)str), id );
1713     if (!listbox) return FALSE;
1714
1715     item = SendMessageW(listbox, combo ? CB_GETCURSEL : LB_GETCURSEL, 0, 0 );
1716     if (item == LB_ERR) return FALSE;
1717
1718     size = SendMessageW(listbox, combo ? CB_GETLBTEXTLEN : LB_GETTEXTLEN, item, 0 );
1719     if (size == LB_ERR) return FALSE;
1720
1721     if (!(buffer = HeapAlloc( GetProcessHeap(), 0, (size+2) * sizeof(WCHAR) ))) return FALSE;
1722
1723     SendMessageW( listbox, combo ? CB_GETLBTEXT : LB_GETTEXT, item, (LPARAM)buffer );
1724
1725     if ((ret = (buffer[0] == '[')))  /* drive or directory */
1726     {
1727         if (buffer[1] == '-')  /* drive */
1728         {
1729             buffer[3] = ':';
1730             buffer[4] = 0;
1731             ptr = buffer + 2;
1732         }
1733         else
1734         {
1735             buffer[strlenW(buffer)-1] = '\\';
1736             ptr = buffer + 1;
1737         }
1738     }
1739     else
1740     {
1741         /* Filenames without a dot extension must have one tacked at the end */
1742         if (strchrW(buffer, '.') == NULL)
1743         {
1744             buffer[strlenW(buffer)+1] = '\0';
1745             buffer[strlenW(buffer)] = '.';
1746         }
1747         ptr = buffer;
1748     }
1749
1750     if (!unicode)
1751     {
1752         if (len > 0 && !WideCharToMultiByte( CP_ACP, 0, ptr, -1, (LPSTR)str, len, 0, 0 ))
1753             ((LPSTR)str)[len-1] = 0;
1754     }
1755     else lstrcpynW( str, ptr, len );
1756     HeapFree( GetProcessHeap(), 0, buffer );
1757     TRACE("Returning %d %s\n", ret, unicode ? debugstr_w(str) : debugstr_a((LPSTR)str) );
1758     return ret;
1759 }
1760
1761
1762 /**********************************************************************
1763  *          DIALOG_DlgDirListW
1764  *
1765  * Helper function for DlgDirList*W
1766  */
1767 static INT DIALOG_DlgDirListW( HWND hDlg, LPWSTR spec, INT idLBox,
1768                                INT idStatic, UINT attrib, BOOL combo )
1769 {
1770     HWND hwnd;
1771     LPWSTR orig_spec = spec;
1772     WCHAR any[] = {'*','.','*',0};
1773
1774 #define SENDMSG(msg,wparam,lparam) \
1775     ((attrib & DDL_POSTMSGS) ? PostMessageW( hwnd, msg, wparam, lparam ) \
1776                              : SendMessageW( hwnd, msg, wparam, lparam ))
1777
1778     TRACE("%p %s %d %d %04x\n", hDlg, debugstr_w(spec), idLBox, idStatic, attrib );
1779
1780     /* If the path exists and is a directory, chdir to it */
1781     if (!spec || !spec[0] || SetCurrentDirectoryW( spec )) spec = any;
1782     else
1783     {
1784         WCHAR *p, *p2;
1785         p = spec;
1786         if ((p2 = strchrW( p, ':' ))) p = p2 + 1;
1787         if ((p2 = strrchrW( p, '\\' ))) p = p2;
1788         if ((p2 = strrchrW( p, '/' ))) p = p2;
1789         if (p != spec)
1790         {
1791             WCHAR sep = *p;
1792             *p = 0;
1793             if (!SetCurrentDirectoryW( spec ))
1794             {
1795                 *p = sep;  /* Restore the original spec */
1796                 return FALSE;
1797             }
1798             spec = p + 1;
1799         }
1800     }
1801
1802     TRACE( "mask=%s\n", debugstr_w(spec) );
1803
1804     if (idLBox && ((hwnd = GetDlgItem( hDlg, idLBox )) != 0))
1805     {
1806         if (attrib == DDL_DRIVES) attrib |= DDL_EXCLUSIVE;
1807
1808         SENDMSG( combo ? CB_RESETCONTENT : LB_RESETCONTENT, 0, 0 );
1809         if (attrib & DDL_DIRECTORY)
1810         {
1811             if (!(attrib & DDL_EXCLUSIVE))
1812             {
1813                 SENDMSG( combo ? CB_DIR : LB_DIR,
1814                          attrib & ~(DDL_DIRECTORY | DDL_DRIVES),
1815                          (LPARAM)spec );
1816             }
1817             SENDMSG( combo ? CB_DIR : LB_DIR,
1818                    (attrib & (DDL_DIRECTORY | DDL_DRIVES)) | DDL_EXCLUSIVE,
1819                    (LPARAM)any );
1820         }
1821         else
1822         {
1823             SENDMSG( combo ? CB_DIR : LB_DIR, attrib, (LPARAM)spec );
1824         }
1825     }
1826
1827     /* Convert path specification to uppercase */
1828     if (spec) CharUpperW(spec);
1829
1830     if (idStatic && ((hwnd = GetDlgItem( hDlg, idStatic )) != 0))
1831     {
1832         WCHAR temp[MAX_PATH];
1833         GetCurrentDirectoryW( sizeof(temp)/sizeof(WCHAR), temp );
1834         CharLowerW( temp );
1835         /* Can't use PostMessage() here, because the string is on the stack */
1836         SetDlgItemTextW( hDlg, idStatic, temp );
1837     }
1838
1839     if (orig_spec && (spec != orig_spec))
1840     {
1841         /* Update the original file spec */
1842         WCHAR *p = spec;
1843         while ((*orig_spec++ = *p++));
1844     }
1845
1846     return TRUE;
1847 #undef SENDMSG
1848 }
1849
1850
1851 /**********************************************************************
1852  *          DIALOG_DlgDirListA
1853  *
1854  * Helper function for DlgDirList*A
1855  */
1856 static INT DIALOG_DlgDirListA( HWND hDlg, LPSTR spec, INT idLBox,
1857                                INT idStatic, UINT attrib, BOOL combo )
1858 {
1859     if (spec)
1860     {
1861         INT ret, len = MultiByteToWideChar( CP_ACP, 0, spec, -1, NULL, 0 );
1862         LPWSTR specW = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) );
1863         MultiByteToWideChar( CP_ACP, 0, spec, -1, specW, len );
1864         ret = DIALOG_DlgDirListW( hDlg, specW, idLBox, idStatic, attrib, combo );
1865         WideCharToMultiByte( CP_ACP, 0, specW, -1, spec, 0x7fffffff, NULL, NULL );
1866         HeapFree( GetProcessHeap(), 0, specW );
1867         return ret;
1868     }
1869     return DIALOG_DlgDirListW( hDlg, NULL, idLBox, idStatic, attrib, combo );
1870 }
1871
1872
1873 /**********************************************************************
1874  *              DlgDirSelectExA (USER32.@)
1875  */
1876 BOOL WINAPI DlgDirSelectExA( HWND hwnd, LPSTR str, INT len, INT id )
1877 {
1878     return DIALOG_DlgDirSelect( hwnd, (LPWSTR)str, len, id, FALSE, FALSE );
1879 }
1880
1881
1882 /**********************************************************************
1883  *              DlgDirSelectExW (USER32.@)
1884  */
1885 BOOL WINAPI DlgDirSelectExW( HWND hwnd, LPWSTR str, INT len, INT id )
1886 {
1887     return DIALOG_DlgDirSelect( hwnd, str, len, id, TRUE, FALSE );
1888 }
1889
1890
1891 /**********************************************************************
1892  *              DlgDirSelectComboBoxExA (USER32.@)
1893  */
1894 BOOL WINAPI DlgDirSelectComboBoxExA( HWND hwnd, LPSTR str, INT len,
1895                                          INT id )
1896 {
1897     return DIALOG_DlgDirSelect( hwnd, (LPWSTR)str, len, id, FALSE, TRUE );
1898 }
1899
1900
1901 /**********************************************************************
1902  *              DlgDirSelectComboBoxExW (USER32.@)
1903  */
1904 BOOL WINAPI DlgDirSelectComboBoxExW( HWND hwnd, LPWSTR str, INT len,
1905                                          INT id)
1906 {
1907     return DIALOG_DlgDirSelect( hwnd, str, len, id, TRUE, TRUE );
1908 }
1909
1910
1911 /**********************************************************************
1912  *              DlgDirListA (USER32.@)
1913  */
1914 INT WINAPI DlgDirListA( HWND hDlg, LPSTR spec, INT idLBox,
1915                             INT idStatic, UINT attrib )
1916 {
1917     return DIALOG_DlgDirListA( hDlg, spec, idLBox, idStatic, attrib, FALSE );
1918 }
1919
1920
1921 /**********************************************************************
1922  *              DlgDirListW (USER32.@)
1923  */
1924 INT WINAPI DlgDirListW( HWND hDlg, LPWSTR spec, INT idLBox,
1925                             INT idStatic, UINT attrib )
1926 {
1927     return DIALOG_DlgDirListW( hDlg, spec, idLBox, idStatic, attrib, FALSE );
1928 }
1929
1930
1931 /**********************************************************************
1932  *              DlgDirListComboBoxA (USER32.@)
1933  */
1934 INT WINAPI DlgDirListComboBoxA( HWND hDlg, LPSTR spec, INT idCBox,
1935                                     INT idStatic, UINT attrib )
1936 {
1937     return DIALOG_DlgDirListA( hDlg, spec, idCBox, idStatic, attrib, TRUE );
1938 }
1939
1940
1941 /**********************************************************************
1942  *              DlgDirListComboBoxW (USER32.@)
1943  */
1944 INT WINAPI DlgDirListComboBoxW( HWND hDlg, LPWSTR spec, INT idCBox,
1945                                     INT idStatic, UINT attrib )
1946 {
1947     return DIALOG_DlgDirListW( hDlg, spec, idCBox, idStatic, attrib, TRUE );
1948 }