blob: a35001bd63706a07f3fd6ce3910622de222c0aa0 [file] [log] [blame]
Alexandre Julliard0e607781993-11-03 19:23:37 +00001/*
2 * Dialog functions
3 *
Alexandre Julliard1e9ac791996-06-06 18:38:27 +00004 * Copyright 1993, 1994, 1996 Alexandre Julliard
Alexandre Julliard59730ae1996-03-24 16:20:51 +00005 */
Alexandre Julliard0e607781993-11-03 19:23:37 +00006
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00007#include <ctype.h>
Patrik Stridvall1e1cf481998-10-17 12:56:00 +00008#include <errno.h>
Alexandre Julliard01d63461997-01-20 19:43:45 +00009#include <limits.h>
Alexandre Julliard8d24ae61994-04-05 21:42:43 +000010#include <stdlib.h>
Jeremy Whited3e22d92000-02-10 19:03:02 +000011#include <stdio.h>
Alexandre Julliard8d24ae61994-04-05 21:42:43 +000012#include <string.h>
Jeremy Whited3e22d92000-02-10 19:03:02 +000013#include "windef.h"
14#include "wingdi.h"
Marcus Meissner61afa331999-02-22 10:16:00 +000015#include "winuser.h"
Slava Monich3a170a11999-06-06 09:03:08 +000016#include "windowsx.h"
Marcus Meissner61afa331999-02-22 10:16:00 +000017#include "wine/winuser16.h"
18#include "wine/winbase16.h"
Dmitry Timoshkov04da8b82000-07-10 12:09:31 +000019#include "wine/unicode.h"
Alexandre Julliard0e607781993-11-03 19:23:37 +000020#include "dialog.h"
Alexandre Julliardda0cfb31996-12-01 17:17:47 +000021#include "drive.h"
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +000022#include "heap.h"
Alexandre Julliard0e607781993-11-03 19:23:37 +000023#include "win.h"
Alexandre Julliarde2abbb11995-03-19 17:39:39 +000024#include "ldt.h"
Alexandre Julliarddba420a1994-02-02 06:48:31 +000025#include "user.h"
Alexandre Julliard1e9ac791996-06-06 18:38:27 +000026#include "winproc.h"
Alexandre Julliard3f2abfa1994-08-16 15:43:11 +000027#include "message.h"
Patrik Stridvall6cc47d42000-03-08 18:26:56 +000028#include "queue.h"
Alexandre Julliard359f497e1999-07-04 16:02:24 +000029#include "debugtools.h"
Alexandre Julliard0e607781993-11-03 19:23:37 +000030
Jeremy Whited3e22d92000-02-10 19:03:02 +000031DEFAULT_DEBUG_CHANNEL(dialog);
Patrik Stridvallb4b9fae1999-04-19 14:56:29 +000032
Alexandre Julliard1e9ac791996-06-06 18:38:27 +000033
34 /* Dialog control information */
35typedef struct
36{
37 DWORD style;
38 DWORD exStyle;
Alexandre Julliardc7c217b1998-04-13 12:21:30 +000039 DWORD helpId;
Alexandre Julliard1e9ac791996-06-06 18:38:27 +000040 INT16 x;
41 INT16 y;
42 INT16 cx;
43 INT16 cy;
Alexandre Julliarda3960291999-02-26 11:11:13 +000044 UINT id;
Alexandre Julliard1e9ac791996-06-06 18:38:27 +000045 LPCSTR className;
46 LPCSTR windowName;
47 LPVOID data;
48} DLG_CONTROL_INFO;
49
50 /* Dialog template */
51typedef struct
52{
53 DWORD style;
54 DWORD exStyle;
Alexandre Julliardc7c217b1998-04-13 12:21:30 +000055 DWORD helpId;
Alexandre Julliard1e9ac791996-06-06 18:38:27 +000056 UINT16 nbItems;
57 INT16 x;
58 INT16 y;
59 INT16 cx;
60 INT16 cy;
61 LPCSTR menuName;
62 LPCSTR className;
63 LPCSTR caption;
64 WORD pointSize;
Alexandre Julliardc7c217b1998-04-13 12:21:30 +000065 WORD weight;
Alexandre Julliarda3960291999-02-26 11:11:13 +000066 BOOL italic;
Alexandre Julliard1e9ac791996-06-06 18:38:27 +000067 LPCSTR faceName;
Alexandre Julliarda3960291999-02-26 11:11:13 +000068 BOOL dialogEx;
Alexandre Julliard1e9ac791996-06-06 18:38:27 +000069} DLG_TEMPLATE;
70
Luc Tourangeau8e238d01999-05-29 14:19:42 +000071 /* Radio button group */
72typedef struct
73{
74 UINT firstID;
75 UINT lastID;
76 UINT checkID;
77} RADIOGROUP;
78
Alexandre Julliard0e607781993-11-03 19:23:37 +000079 /* Dialog base units */
Alexandre Julliard1e9ac791996-06-06 18:38:27 +000080static WORD xBaseUnit = 0, yBaseUnit = 0;
Alexandre Julliard0e607781993-11-03 19:23:37 +000081
Alexandre Julliard0e607781993-11-03 19:23:37 +000082/***********************************************************************
Slava Monich3a170a11999-06-06 09:03:08 +000083 * DIALOG_GetCharSizeFromDC
84 *
85 *
86 * Calculates the *true* average size of English characters in the
87 * specified font as oppposed to the one returned by GetTextMetrics.
Richard Cohen0ded0fe1999-09-05 12:25:33 +000088 *
89 * Latest: the X font driver will now compute a proper average width
90 * so this code can be removed
Slava Monich3a170a11999-06-06 09:03:08 +000091 */
92static BOOL DIALOG_GetCharSizeFromDC( HDC hDC, HFONT hFont, SIZE * pSize )
93{
94 BOOL Success = FALSE;
95 HFONT hFontPrev = 0;
96 pSize->cx = xBaseUnit;
97 pSize->cy = yBaseUnit;
98 if ( hDC )
99 {
100 /* select the font */
101 TEXTMETRICA tm;
102 memset(&tm,0,sizeof(tm));
103 if (hFont) hFontPrev = SelectFont(hDC,hFont);
104 if (GetTextMetricsA(hDC,&tm))
105 {
106 pSize->cx = tm.tmAveCharWidth;
107 pSize->cy = tm.tmHeight;
108
109 /* if variable width font */
110 if (tm.tmPitchAndFamily & TMPF_FIXED_PITCH)
111 {
112 SIZE total;
Richard Cohen0ded0fe1999-09-05 12:25:33 +0000113 const char* szAvgChars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
Slava Monich3a170a11999-06-06 09:03:08 +0000114
115 /* Calculate a true average as opposed to the one returned
116 * by tmAveCharWidth. This works better when dealing with
117 * proportional spaced fonts and (more important) that's
118 * how Microsoft's dialog creation code calculates the size
119 * of the font
120 */
121 if (GetTextExtentPointA(hDC,szAvgChars,sizeof(szAvgChars),&total))
122 {
123 /* round up */
124 pSize->cx = ((2*total.cx/sizeof(szAvgChars)) + 1)/2;
125 Success = TRUE;
126 }
127 }
128 else
129 {
130 Success = TRUE;
131 }
Richard Cohen0ded0fe1999-09-05 12:25:33 +0000132 /* Use the text metrics */
133 TRACE("Using tm: %ldx%ld (dlg: %dx%d) (%s)\n", tm.tmAveCharWidth, tm.tmHeight, pSize->cx, pSize->cy,
134 tm.tmPitchAndFamily & TMPF_FIXED_PITCH ? "variable" : "fixed");
135 pSize->cx = tm.tmAveCharWidth;
136 pSize->cy = tm.tmHeight;
Slava Monich3a170a11999-06-06 09:03:08 +0000137 }
Slava Monich3a170a11999-06-06 09:03:08 +0000138 /* select the original font */
139 if (hFontPrev) SelectFont(hDC,hFontPrev);
140 }
141 return (Success);
142}
143
Slava Monich3a170a11999-06-06 09:03:08 +0000144/***********************************************************************
145 * DIALOG_GetCharSize
146 *
Slava Monich3a170a11999-06-06 09:03:08 +0000147 * A convenient variant of DIALOG_GetCharSizeFromDC.
148 */
149static BOOL DIALOG_GetCharSize( HFONT hFont, SIZE * pSize )
150{
151 HDC hDC = GetDC(0);
152 BOOL Success = DIALOG_GetCharSizeFromDC( hDC, hFont, pSize );
153 ReleaseDC(0, hDC);
154 return Success;
155}
156
Slava Monich3a170a11999-06-06 09:03:08 +0000157/***********************************************************************
Alexandre Julliard0e607781993-11-03 19:23:37 +0000158 * DIALOG_Init
159 *
160 * Initialisation of the dialog manager.
161 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000162BOOL DIALOG_Init(void)
Alexandre Julliard0e607781993-11-03 19:23:37 +0000163{
Alexandre Julliard530ee841996-10-23 16:59:13 +0000164 HDC16 hdc;
Slava Monich3a170a11999-06-06 09:03:08 +0000165 SIZE size;
166
Alexandre Julliard0e607781993-11-03 19:23:37 +0000167 /* Calculate the dialog base units */
168
Alexandre Julliardb1bac321996-12-15 19:45:59 +0000169 if (!(hdc = CreateDC16( "DISPLAY", NULL, NULL, NULL ))) return FALSE;
Slava Monich3a170a11999-06-06 09:03:08 +0000170 if (!DIALOG_GetCharSizeFromDC( hdc, 0, &size )) return FALSE;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000171 DeleteDC( hdc );
Slava Monich3a170a11999-06-06 09:03:08 +0000172 xBaseUnit = size.cx;
173 yBaseUnit = size.cy;
Alexandre Julliard7cbe6571995-01-09 18:21:16 +0000174
Alexandre Julliard359f497e1999-07-04 16:02:24 +0000175 TRACE("base units = %d,%d\n", xBaseUnit, yBaseUnit );
Alexandre Julliard0e607781993-11-03 19:23:37 +0000176 return TRUE;
177}
178
179
180/***********************************************************************
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000181 * DIALOG_GetControl16
Alexandre Julliard0e607781993-11-03 19:23:37 +0000182 *
183 * Return the class and text of the control pointed to by ptr,
Alexandre Julliard329f0681996-04-14 13:21:20 +0000184 * fill the header structure and return a pointer to the next control.
Alexandre Julliard0e607781993-11-03 19:23:37 +0000185 */
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000186static LPCSTR DIALOG_GetControl16( LPCSTR p, DLG_CONTROL_INFO *info )
Alexandre Julliard0e607781993-11-03 19:23:37 +0000187{
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000188 static char buffer[10];
Alexandre Julliard03468f71998-02-15 19:40:49 +0000189 int int_id;
Alexandre Julliardff8331e1995-09-18 11:19:54 +0000190
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000191 info->x = GET_WORD(p); p += sizeof(WORD);
192 info->y = GET_WORD(p); p += sizeof(WORD);
193 info->cx = GET_WORD(p); p += sizeof(WORD);
194 info->cy = GET_WORD(p); p += sizeof(WORD);
195 info->id = GET_WORD(p); p += sizeof(WORD);
196 info->style = GET_DWORD(p); p += sizeof(DWORD);
197 info->exStyle = 0;
Alexandre Julliard7e50df31994-08-06 11:22:41 +0000198
Alexandre Julliard0e607781993-11-03 19:23:37 +0000199 if (*p & 0x80)
200 {
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000201 switch((BYTE)*p)
202 {
203 case 0x80: strcpy( buffer, "BUTTON" ); break;
204 case 0x81: strcpy( buffer, "EDIT" ); break;
205 case 0x82: strcpy( buffer, "STATIC" ); break;
206 case 0x83: strcpy( buffer, "LISTBOX" ); break;
207 case 0x84: strcpy( buffer, "SCROLLBAR" ); break;
208 case 0x85: strcpy( buffer, "COMBOBOX" ); break;
209 default: buffer[0] = '\0'; break;
210 }
211 info->className = buffer;
Alexandre Julliardff8331e1995-09-18 11:19:54 +0000212 p++;
Alexandre Julliard0e607781993-11-03 19:23:37 +0000213 }
214 else
215 {
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000216 info->className = p;
Alexandre Julliard0e607781993-11-03 19:23:37 +0000217 p += strlen(p) + 1;
218 }
Alexandre Julliardff8331e1995-09-18 11:19:54 +0000219
Alexandre Julliard03468f71998-02-15 19:40:49 +0000220 int_id = ((BYTE)*p == 0xff);
221 if (int_id)
Alexandre Julliard940d58c1994-09-16 09:24:37 +0000222 {
223 /* Integer id, not documented (?). Only works for SS_ICON controls */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000224 info->windowName = (LPCSTR)(UINT)GET_WORD(p+1);
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000225 p += 3;
Alexandre Julliard940d58c1994-09-16 09:24:37 +0000226 }
227 else
228 {
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000229 info->windowName = p;
230 p += strlen(p) + 1;
Alexandre Julliard7e50df31994-08-06 11:22:41 +0000231 }
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000232
Bernd Herd5b60bf02000-05-11 00:05:22 +0000233 if (*p)
234 {
235 /* Additional CTLDATA available for this control. */
236 info->data = SEGPTR_ALLOC(*p);
237 memcpy( info->data, p + 1, *p );
238 }
239 else info->data = NULL;
240
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000241 p += *p + 1;
242
Alexandre Julliard03468f71998-02-15 19:40:49 +0000243 if(int_id)
Alexandre Julliard359f497e1999-07-04 16:02:24 +0000244 TRACE(" %s %04x %d, %d, %d, %d, %d, %08lx, %08lx\n",
Alexandre Julliard03468f71998-02-15 19:40:49 +0000245 info->className, LOWORD(info->windowName),
246 info->id, info->x, info->y, info->cx, info->cy,
Bernd Herd5b60bf02000-05-11 00:05:22 +0000247 info->style, (DWORD)SEGPTR_GET(info->data) );
Alexandre Julliard03468f71998-02-15 19:40:49 +0000248 else
Alexandre Julliard359f497e1999-07-04 16:02:24 +0000249 TRACE(" %s '%s' %d, %d, %d, %d, %d, %08lx, %08lx\n",
Alexandre Julliard03468f71998-02-15 19:40:49 +0000250 info->className, info->windowName,
251 info->id, info->x, info->y, info->cx, info->cy,
Bernd Herd5b60bf02000-05-11 00:05:22 +0000252 info->style, (DWORD)SEGPTR_GET(info->data) );
Alexandre Julliard03468f71998-02-15 19:40:49 +0000253
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000254 return p;
Alexandre Julliard0e607781993-11-03 19:23:37 +0000255}
256
257
258/***********************************************************************
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000259 * DIALOG_GetControl32
Alexandre Julliard0e607781993-11-03 19:23:37 +0000260 *
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000261 * Return the class and text of the control pointed to by ptr,
262 * fill the header structure and return a pointer to the next control.
Alexandre Julliard0e607781993-11-03 19:23:37 +0000263 */
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000264static const WORD *DIALOG_GetControl32( const WORD *p, DLG_CONTROL_INFO *info,
Alexandre Julliarda3960291999-02-26 11:11:13 +0000265 BOOL dialogEx )
Alexandre Julliard0e607781993-11-03 19:23:37 +0000266{
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000267 if (dialogEx)
268 {
269 info->helpId = GET_DWORD(p); p += 2;
270 info->exStyle = GET_DWORD(p); p += 2;
271 info->style = GET_DWORD(p); p += 2;
272 }
273 else
274 {
275 info->helpId = 0;
276 info->style = GET_DWORD(p); p += 2;
277 info->exStyle = GET_DWORD(p); p += 2;
278 }
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000279 info->x = GET_WORD(p); p++;
280 info->y = GET_WORD(p); p++;
281 info->cx = GET_WORD(p); p++;
282 info->cy = GET_WORD(p); p++;
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000283
284 if (dialogEx)
285 {
286 /* id is a DWORD for DIALOGEX */
287 info->id = GET_DWORD(p);
288 p += 2;
289 }
290 else
291 {
292 info->id = GET_WORD(p);
293 p++;
294 }
Alexandre Julliard0e607781993-11-03 19:23:37 +0000295
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000296 if (GET_WORD(p) == 0xffff)
Alexandre Julliard0e607781993-11-03 19:23:37 +0000297 {
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000298 static const WCHAR class_names[6][10] =
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000299 {
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000300 { 'B','u','t','t','o','n', }, /* 0x80 */
301 { 'E','d','i','t', }, /* 0x81 */
302 { 'S','t','a','t','i','c', }, /* 0x82 */
303 { 'L','i','s','t','B','o','x', }, /* 0x83 */
304 { 'S','c','r','o','l','l','B','a','r', }, /* 0x84 */
305 { 'C','o','m','b','o','B','o','x', } /* 0x85 */
306 };
307 WORD id = GET_WORD(p+1);
308 if ((id >= 0x80) && (id <= 0x85))
309 info->className = (LPCSTR)class_names[id - 0x80];
310 else
311 {
312 info->className = NULL;
Alexandre Julliard359f497e1999-07-04 16:02:24 +0000313 ERR("Unknown built-in class id %04x\n", id );
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000314 }
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000315 p += 2;
Alexandre Julliardff8331e1995-09-18 11:19:54 +0000316 }
317 else
318 {
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000319 info->className = (LPCSTR)p;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000320 p += lstrlenW( (LPCWSTR)p ) + 1;
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000321 }
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000322
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000323 if (GET_WORD(p) == 0xffff) /* Is it an integer id? */
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000324 {
Alexandre Julliarda3960291999-02-26 11:11:13 +0000325 info->windowName = (LPCSTR)(UINT)GET_WORD(p + 1);
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000326 p += 2;
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000327 }
328 else
329 {
330 info->windowName = (LPCSTR)p;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000331 p += lstrlenW( (LPCWSTR)p ) + 1;
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000332 }
333
Alexandre Julliard359f497e1999-07-04 16:02:24 +0000334 TRACE(" %s %s %d, %d, %d, %d, %d, %08lx, %08lx, %08lx\n",
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000335 debugstr_w( (LPCWSTR)info->className ),
336 debugres_w( (LPCWSTR)info->windowName ),
337 info->id, info->x, info->y, info->cx, info->cy,
338 info->style, info->exStyle, info->helpId );
339
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000340 if (GET_WORD(p))
341 {
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000342 if (TRACE_ON(dialog))
343 {
344 WORD i, count = GET_WORD(p) / sizeof(WORD);
Alexandre Julliard359f497e1999-07-04 16:02:24 +0000345 TRACE(" BEGIN\n");
346 TRACE(" ");
347 for (i = 0; i < count; i++) DPRINTF( "%04x,", GET_WORD(p+i+1) );
348 DPRINTF("\n");
349 TRACE(" END\n" );
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000350 }
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000351 info->data = (LPVOID)(p + 1);
352 p += GET_WORD(p) / sizeof(WORD);
353 }
354 else info->data = NULL;
355 p++;
356
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000357 /* Next control is on dword boundary */
358 return (const WORD *)((((int)p) + 3) & ~3);
359}
360
361
362/***********************************************************************
363 * DIALOG_CreateControls
364 *
365 * Create the control windows for a dialog.
366 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000367static BOOL DIALOG_CreateControls( WND *pWnd, LPCSTR template,
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000368 const DLG_TEMPLATE *dlgTemplate,
Alexandre Julliarda3960291999-02-26 11:11:13 +0000369 HINSTANCE hInst, BOOL win32 )
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000370{
371 DIALOGINFO *dlgInfo = (DIALOGINFO *)pWnd->wExtra;
372 DLG_CONTROL_INFO info;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000373 HWND hwndCtrl, hwndDefButton = 0;
374 INT items = dlgTemplate->nbItems;
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000375
Alexandre Julliard359f497e1999-07-04 16:02:24 +0000376 TRACE(" BEGIN\n" );
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000377 while (items--)
378 {
379 if (!win32)
380 {
381 HINSTANCE16 instance;
382 template = DIALOG_GetControl16( template, &info );
383 if (HIWORD(info.className) && !strcmp( info.className, "EDIT") &&
Alexandre Julliard139a4b11996-11-02 14:24:07 +0000384 ((pWnd->dwStyle & DS_LOCALEDIT) != DS_LOCALEDIT))
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000385 {
386 if (!dlgInfo->hDialogHeap)
387 {
388 dlgInfo->hDialogHeap = GlobalAlloc16(GMEM_FIXED, 0x10000);
389 if (!dlgInfo->hDialogHeap)
390 {
Alexandre Julliard359f497e1999-07-04 16:02:24 +0000391 ERR("Insufficient memory to create heap for edit control\n" );
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000392 continue;
393 }
Alexandre Julliarda3960291999-02-26 11:11:13 +0000394 LocalInit16(dlgInfo->hDialogHeap, 0, 0xffff);
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000395 }
396 instance = dlgInfo->hDialogHeap;
397 }
398 else instance = (HINSTANCE16)hInst;
399
400 hwndCtrl = CreateWindowEx16( info.exStyle | WS_EX_NOPARENTNOTIFY,
401 info.className, info.windowName,
402 info.style | WS_CHILD,
Francis Beaudeteb13dd41999-09-03 15:14:27 +0000403 MulDiv(info.x, dlgInfo->xBaseUnit, 4),
404 MulDiv(info.y, dlgInfo->yBaseUnit, 8),
405 MulDiv(info.cx, dlgInfo->xBaseUnit, 4),
406 MulDiv(info.cy, dlgInfo->yBaseUnit, 8),
Alexandre Julliardbf9130a1996-10-13 17:45:47 +0000407 pWnd->hwndSelf, (HMENU16)info.id,
Bernd Herd5b60bf02000-05-11 00:05:22 +0000408 instance, (LPVOID)SEGPTR_GET(info.data) );
409
410 if (info.data) SEGPTR_FREE(info.data);
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000411 }
412 else
413 {
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000414 template = (LPCSTR)DIALOG_GetControl32( (WORD *)template, &info,
415 dlgTemplate->dialogEx );
Alexandre Julliarda3960291999-02-26 11:11:13 +0000416 hwndCtrl = CreateWindowExW( info.exStyle | WS_EX_NOPARENTNOTIFY,
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000417 (LPCWSTR)info.className,
418 (LPCWSTR)info.windowName,
419 info.style | WS_CHILD,
Francis Beaudeteb13dd41999-09-03 15:14:27 +0000420 MulDiv(info.x, dlgInfo->xBaseUnit, 4),
421 MulDiv(info.y, dlgInfo->yBaseUnit, 8),
422 MulDiv(info.cx, dlgInfo->xBaseUnit, 4),
423 MulDiv(info.cy, dlgInfo->yBaseUnit, 8),
Alexandre Julliarda3960291999-02-26 11:11:13 +0000424 pWnd->hwndSelf, (HMENU)info.id,
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000425 hInst, info.data );
426 }
427 if (!hwndCtrl) return FALSE;
428
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000429 /* Send initialisation messages to the control */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000430 if (dlgInfo->hUserFont) SendMessageA( hwndCtrl, WM_SETFONT,
431 (WPARAM)dlgInfo->hUserFont, 0 );
432 if (SendMessageA(hwndCtrl, WM_GETDLGCODE, 0, 0) & DLGC_DEFPUSHBUTTON)
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000433 {
434 /* If there's already a default push-button, set it back */
435 /* to normal and use this one instead. */
436 if (hwndDefButton)
Alexandre Julliarda3960291999-02-26 11:11:13 +0000437 SendMessageA( hwndDefButton, BM_SETSTYLE,
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000438 BS_PUSHBUTTON,FALSE );
439 hwndDefButton = hwndCtrl;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000440 dlgInfo->idResult = GetWindowWord( hwndCtrl, GWW_ID );
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000441 }
442 }
Alexandre Julliard359f497e1999-07-04 16:02:24 +0000443 TRACE(" END\n" );
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000444 return TRUE;
445}
446
447
448/***********************************************************************
449 * DIALOG_ParseTemplate16
450 *
451 * Fill a DLG_TEMPLATE structure from the dialog template, and return
452 * a pointer to the first control.
453 */
454static LPCSTR DIALOG_ParseTemplate16( LPCSTR p, DLG_TEMPLATE * result )
455{
456 result->style = GET_DWORD(p); p += sizeof(DWORD);
457 result->exStyle = 0;
Pavel Roskin4b5f8761999-06-12 08:11:32 +0000458 result->nbItems = (unsigned char) *p++;
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000459 result->x = GET_WORD(p); p += sizeof(WORD);
460 result->y = GET_WORD(p); p += sizeof(WORD);
461 result->cx = GET_WORD(p); p += sizeof(WORD);
462 result->cy = GET_WORD(p); p += sizeof(WORD);
Alexandre Julliard359f497e1999-07-04 16:02:24 +0000463 TRACE("DIALOG %d, %d, %d, %d\n",
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000464 result->x, result->y, result->cx, result->cy );
Alexandre Julliard359f497e1999-07-04 16:02:24 +0000465 TRACE(" STYLE %08lx\n", result->style );
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000466
467 /* Get the menu name */
468
469 switch( (BYTE)*p )
470 {
471 case 0:
Alexandre Julliardff8331e1995-09-18 11:19:54 +0000472 result->menuName = 0;
473 p++;
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000474 break;
475 case 0xff:
Alexandre Julliarda3960291999-02-26 11:11:13 +0000476 result->menuName = (LPCSTR)(UINT)GET_WORD( p + 1 );
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000477 p += 3;
Alexandre Julliard359f497e1999-07-04 16:02:24 +0000478 TRACE(" MENU %04x\n", LOWORD(result->menuName) );
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000479 break;
480 default:
481 result->menuName = p;
Alexandre Julliard359f497e1999-07-04 16:02:24 +0000482 TRACE(" MENU '%s'\n", p );
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000483 p += strlen(p) + 1;
484 break;
Alexandre Julliard0e607781993-11-03 19:23:37 +0000485 }
Alexandre Julliard0e607781993-11-03 19:23:37 +0000486
Alexandre Julliardff8331e1995-09-18 11:19:54 +0000487 /* Get the class name */
488
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000489 if (*p)
490 {
491 result->className = p;
Alexandre Julliard359f497e1999-07-04 16:02:24 +0000492 TRACE(" CLASS '%s'\n", result->className );
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000493 }
Alexandre Julliardff8331e1995-09-18 11:19:54 +0000494 else result->className = DIALOG_CLASS_ATOM;
495 p += strlen(p) + 1;
496
497 /* Get the window caption */
498
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000499 result->caption = p;
Alexandre Julliardff8331e1995-09-18 11:19:54 +0000500 p += strlen(p) + 1;
Alexandre Julliard359f497e1999-07-04 16:02:24 +0000501 TRACE(" CAPTION '%s'\n", result->caption );
Alexandre Julliardff8331e1995-09-18 11:19:54 +0000502
503 /* Get the font name */
504
Alexandre Julliard329f0681996-04-14 13:21:20 +0000505 if (result->style & DS_SETFONT)
Alexandre Julliardff8331e1995-09-18 11:19:54 +0000506 {
Alexandre Julliard329f0681996-04-14 13:21:20 +0000507 result->pointSize = GET_WORD(p);
Alexandre Julliardff8331e1995-09-18 11:19:54 +0000508 p += sizeof(WORD);
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000509 result->faceName = p;
Alexandre Julliardff8331e1995-09-18 11:19:54 +0000510 p += strlen(p) + 1;
Alexandre Julliard359f497e1999-07-04 16:02:24 +0000511 TRACE(" FONT %d,'%s'\n",
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000512 result->pointSize, result->faceName );
513 }
514 return p;
515}
516
517
518/***********************************************************************
519 * DIALOG_ParseTemplate32
520 *
521 * Fill a DLG_TEMPLATE structure from the dialog template, and return
522 * a pointer to the first control.
523 */
524static LPCSTR DIALOG_ParseTemplate32( LPCSTR template, DLG_TEMPLATE * result )
525{
526 const WORD *p = (const WORD *)template;
527
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000528 result->style = GET_DWORD(p); p += 2;
529 if (result->style == 0xffff0001) /* DIALOGEX resource */
530 {
531 result->dialogEx = TRUE;
532 result->helpId = GET_DWORD(p); p += 2;
533 result->exStyle = GET_DWORD(p); p += 2;
534 result->style = GET_DWORD(p); p += 2;
535 }
536 else
537 {
538 result->dialogEx = FALSE;
539 result->helpId = 0;
540 result->exStyle = GET_DWORD(p); p += 2;
541 }
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000542 result->nbItems = GET_WORD(p); p++;
543 result->x = GET_WORD(p); p++;
544 result->y = GET_WORD(p); p++;
545 result->cx = GET_WORD(p); p++;
546 result->cy = GET_WORD(p); p++;
Alexandre Julliard359f497e1999-07-04 16:02:24 +0000547 TRACE("DIALOG%s %d, %d, %d, %d, %ld\n",
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000548 result->dialogEx ? "EX" : "", result->x, result->y,
549 result->cx, result->cy, result->helpId );
Alexandre Julliard359f497e1999-07-04 16:02:24 +0000550 TRACE(" STYLE 0x%08lx\n", result->style );
551 TRACE(" EXSTYLE 0x%08lx\n", result->exStyle );
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000552
553 /* Get the menu name */
554
555 switch(GET_WORD(p))
556 {
557 case 0x0000:
558 result->menuName = NULL;
559 p++;
560 break;
561 case 0xffff:
Alexandre Julliarda3960291999-02-26 11:11:13 +0000562 result->menuName = (LPCSTR)(UINT)GET_WORD( p + 1 );
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000563 p += 2;
Alexandre Julliard359f497e1999-07-04 16:02:24 +0000564 TRACE(" MENU %04x\n", LOWORD(result->menuName) );
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000565 break;
566 default:
567 result->menuName = (LPCSTR)p;
Alexandre Julliard359f497e1999-07-04 16:02:24 +0000568 TRACE(" MENU %s\n", debugstr_w( (LPCWSTR)p ));
Alexandre Julliarda3960291999-02-26 11:11:13 +0000569 p += lstrlenW( (LPCWSTR)p ) + 1;
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000570 break;
Alexandre Julliardff8331e1995-09-18 11:19:54 +0000571 }
572
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000573 /* Get the class name */
Alexandre Julliard0e607781993-11-03 19:23:37 +0000574
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000575 switch(GET_WORD(p))
576 {
577 case 0x0000:
578 result->className = DIALOG_CLASS_ATOM;
579 p++;
580 break;
581 case 0xffff:
Alexandre Julliarda3960291999-02-26 11:11:13 +0000582 result->className = (LPCSTR)(UINT)GET_WORD( p + 1 );
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000583 p += 2;
Alexandre Julliard359f497e1999-07-04 16:02:24 +0000584 TRACE(" CLASS %04x\n", LOWORD(result->className) );
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000585 break;
586 default:
587 result->className = (LPCSTR)p;
Alexandre Julliard359f497e1999-07-04 16:02:24 +0000588 TRACE(" CLASS %s\n", debugstr_w( (LPCWSTR)p ));
Alexandre Julliarda3960291999-02-26 11:11:13 +0000589 p += lstrlenW( (LPCWSTR)p ) + 1;
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000590 break;
591 }
Alexandre Julliard0e607781993-11-03 19:23:37 +0000592
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000593 /* Get the window caption */
Alexandre Julliardff8331e1995-09-18 11:19:54 +0000594
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000595 result->caption = (LPCSTR)p;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000596 p += lstrlenW( (LPCWSTR)p ) + 1;
Alexandre Julliard359f497e1999-07-04 16:02:24 +0000597 TRACE(" CAPTION %s\n", debugstr_w( (LPCWSTR)result->caption ) );
Alexandre Julliardff8331e1995-09-18 11:19:54 +0000598
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000599 /* Get the font name */
Alexandre Julliardff8331e1995-09-18 11:19:54 +0000600
Alexandre Julliard329f0681996-04-14 13:21:20 +0000601 if (result->style & DS_SETFONT)
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000602 {
603 result->pointSize = GET_WORD(p);
604 p++;
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000605 if (result->dialogEx)
606 {
607 result->weight = GET_WORD(p); p++;
608 result->italic = LOBYTE(GET_WORD(p)); p++;
609 }
610 else
611 {
612 result->weight = FW_DONTCARE;
613 result->italic = FALSE;
614 }
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000615 result->faceName = (LPCSTR)p;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000616 p += lstrlenW( (LPCWSTR)p ) + 1;
Alexandre Julliard359f497e1999-07-04 16:02:24 +0000617 TRACE(" FONT %d, %s, %d, %s\n",
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000618 result->pointSize, debugstr_w( (LPCWSTR)result->faceName ),
619 result->weight, result->italic ? "TRUE" : "FALSE" );
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000620 }
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000621
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000622 /* First control is on dword boundary */
623 return (LPCSTR)((((int)p) + 3) & ~3);
Alexandre Julliard0e607781993-11-03 19:23:37 +0000624}
Alexandre Julliard0e607781993-11-03 19:23:37 +0000625
626
627/***********************************************************************
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000628 * DIALOG_CreateIndirect
Alexandre Julliard0e607781993-11-03 19:23:37 +0000629 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000630HWND DIALOG_CreateIndirect( HINSTANCE hInst, LPCSTR dlgTemplate,
631 BOOL win32Template, HWND owner,
Alexandre Julliard9ea19e51997-01-01 17:29:55 +0000632 DLGPROC16 dlgProc, LPARAM param,
633 WINDOWPROCTYPE procType )
Alexandre Julliard0e607781993-11-03 19:23:37 +0000634{
Alexandre Julliardbf9130a1996-10-13 17:45:47 +0000635 HMENU16 hMenu = 0;
636 HFONT16 hFont = 0;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000637 HWND hwnd;
638 RECT rect;
Alexandre Julliard0e607781993-11-03 19:23:37 +0000639 WND * wndPtr;
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000640 DLG_TEMPLATE template;
Alexandre Julliard0e607781993-11-03 19:23:37 +0000641 DIALOGINFO * dlgInfo;
642 WORD xUnit = xBaseUnit;
643 WORD yUnit = yBaseUnit;
Alexandre Julliard0e607781993-11-03 19:23:37 +0000644
Alexandre Julliarde399fc31993-11-24 17:08:56 +0000645 /* Parse dialog template */
646
647 if (!dlgTemplate) return 0;
Alexandre Julliard9ea19e51997-01-01 17:29:55 +0000648 if (win32Template)
Alexandre Julliard3051b641996-07-05 17:14:13 +0000649 dlgTemplate = DIALOG_ParseTemplate32( dlgTemplate, &template );
650 else
651 dlgTemplate = DIALOG_ParseTemplate16( dlgTemplate, &template );
Alexandre Julliard0e607781993-11-03 19:23:37 +0000652
653 /* Load menu */
654
Alexandre Julliard491502b1997-11-01 19:08:16 +0000655 if (template.menuName)
656 {
657 if (!win32Template)
Alexandre Julliard77b99181997-09-14 17:17:23 +0000658 {
659 LPSTR str = SEGPTR_STRDUP( template.menuName );
660 hMenu = LoadMenu16( hInst, SEGPTR_GET(str) );
661 SEGPTR_FREE( str );
Alexandre Julliard491502b1997-11-01 19:08:16 +0000662 }
Alexandre Julliarda3960291999-02-26 11:11:13 +0000663 else hMenu = LoadMenuW( hInst, (LPCWSTR)template.menuName );
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000664 }
Alexandre Julliard0e607781993-11-03 19:23:37 +0000665
666 /* Create custom font if needed */
667
Alexandre Julliard329f0681996-04-14 13:21:20 +0000668 if (template.style & DS_SETFONT)
Alexandre Julliard0e607781993-11-03 19:23:37 +0000669 {
Richard Cohen0ded0fe1999-09-05 12:25:33 +0000670 /* The font height must be negative as it is a point size */
671 /* and must be converted to pixels first */
Alexandre Julliard3ed37e01994-11-07 18:20:42 +0000672 /* (see CreateFont() documentation in the Windows SDK). */
Richard Cohen0ded0fe1999-09-05 12:25:33 +0000673 HDC dc = GetDC(0);
674 int pixels = template.pointSize * GetDeviceCaps(dc , LOGPIXELSY)/72;
675 ReleaseDC(0, dc);
Alexandre Julliardf90efa91998-06-14 15:24:15 +0000676
Alexandre Julliard3db94ef1997-09-28 17:43:24 +0000677 if (win32Template)
Richard Cohen0ded0fe1999-09-05 12:25:33 +0000678 hFont = CreateFontW( -pixels, 0, 0, 0, template.weight,
679 template.italic, FALSE, FALSE,
680 DEFAULT_CHARSET, 0, 0,
681 PROOF_QUALITY, FF_DONTCARE,
682 (LPCWSTR)template.faceName );
Alexandre Julliard3db94ef1997-09-28 17:43:24 +0000683 else
Richard Cohen0ded0fe1999-09-05 12:25:33 +0000684 hFont = CreateFont16( -pixels, 0, 0, 0, FW_DONTCARE,
685 FALSE, FALSE, FALSE,
686 DEFAULT_CHARSET, 0, 0,
Alexandre Julliardf90efa91998-06-14 15:24:15 +0000687 PROOF_QUALITY, FF_DONTCARE,
688 template.faceName );
Slava Monich3a170a11999-06-06 09:03:08 +0000689 if (hFont)
690 {
691 SIZE charSize;
Slava Moniche6dd5d12000-07-08 18:27:24 +0000692 if (DIALOG_GetCharSize(hFont,&charSize))
693 {
694 xUnit = charSize.cx;
695 yUnit = charSize.cy;
696 }
Slava Monich3a170a11999-06-06 09:03:08 +0000697 }
Richard Cohen0ded0fe1999-09-05 12:25:33 +0000698 TRACE("units = %d,%d\n", xUnit, yUnit );
Alexandre Julliard0e607781993-11-03 19:23:37 +0000699 }
Alexandre Julliarde399fc31993-11-24 17:08:56 +0000700
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000701 /* Create dialog main window */
Alexandre Julliard0e607781993-11-03 19:23:37 +0000702
Alexandre Julliardcdd09231994-01-12 11:12:51 +0000703 rect.left = rect.top = 0;
Francis Beaudeteb13dd41999-09-03 15:14:27 +0000704 rect.right = MulDiv(template.cx, xUnit, 4);
705 rect.bottom = MulDiv(template.cy, yUnit, 8);
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000706 if (template.style & DS_MODALFRAME)
707 template.exStyle |= WS_EX_DLGMODALFRAME;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000708 AdjustWindowRectEx( &rect, template.style,
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000709 hMenu ? TRUE : FALSE , template.exStyle );
Alexandre Julliardff8331e1995-09-18 11:19:54 +0000710 rect.right -= rect.left;
711 rect.bottom -= rect.top;
Alexandre Julliardcdd09231994-01-12 11:12:51 +0000712
Alexandre Julliard1285c2f1996-05-06 16:06:24 +0000713 if ((INT16)template.x == CW_USEDEFAULT16)
Alexandre Julliardca22b331996-07-12 19:02:39 +0000714 {
Ulrich Weigandf03c9361999-07-10 13:08:50 +0000715 rect.left = rect.top = win32Template? CW_USEDEFAULT : CW_USEDEFAULT16;
Alexandre Julliardca22b331996-07-12 19:02:39 +0000716 }
Alexandre Julliardff8331e1995-09-18 11:19:54 +0000717 else
718 {
Dave Picklesfcc9d131998-10-10 15:52:46 +0000719 if (template.style & DS_CENTER)
720 {
Marcus Meissnerddca3151999-05-22 11:33:23 +0000721 rect.left = (GetSystemMetrics(SM_CXSCREEN) - rect.right) / 2;
722 rect.top = (GetSystemMetrics(SM_CYSCREEN) - rect.bottom) / 2;
Dave Picklesfcc9d131998-10-10 15:52:46 +0000723 }
724 else
725 {
Francis Beaudeteb13dd41999-09-03 15:14:27 +0000726 rect.left += MulDiv(template.x, xUnit, 4);
727 rect.top += MulDiv(template.y, yUnit, 8);
Dave Picklesfcc9d131998-10-10 15:52:46 +0000728 }
Alexandre Julliardda0cfb31996-12-01 17:17:47 +0000729 if ( !(template.style & WS_CHILD) )
730 {
731 INT16 dX, dY;
732
733 if( !(template.style & DS_ABSALIGN) )
Alexandre Julliarda3960291999-02-26 11:11:13 +0000734 ClientToScreen( owner, (POINT *)&rect );
Alexandre Julliardda0cfb31996-12-01 17:17:47 +0000735
736 /* try to fit it into the desktop */
737
Marcus Meissnerddca3151999-05-22 11:33:23 +0000738 if( (dX = rect.left + rect.right + GetSystemMetrics(SM_CXDLGFRAME)
739 - GetSystemMetrics(SM_CXSCREEN)) > 0 ) rect.left -= dX;
740 if( (dY = rect.top + rect.bottom + GetSystemMetrics(SM_CYDLGFRAME)
741 - GetSystemMetrics(SM_CYSCREEN)) > 0 ) rect.top -= dY;
Alexandre Julliardda0cfb31996-12-01 17:17:47 +0000742 if( rect.left < 0 ) rect.left = 0;
743 if( rect.top < 0 ) rect.top = 0;
744 }
Alexandre Julliardff8331e1995-09-18 11:19:54 +0000745 }
746
Ulrich Weigandf03c9361999-07-10 13:08:50 +0000747 if (!win32Template)
Alexandre Julliard3db94ef1997-09-28 17:43:24 +0000748 hwnd = CreateWindowEx16(template.exStyle, template.className,
749 template.caption, template.style & ~WS_VISIBLE,
750 rect.left, rect.top, rect.right, rect.bottom,
751 owner, hMenu, hInst, NULL );
752 else
Alexandre Julliarda3960291999-02-26 11:11:13 +0000753 hwnd = CreateWindowExW(template.exStyle, (LPCWSTR)template.className,
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000754 (LPCWSTR)template.caption,
755 template.style & ~WS_VISIBLE,
756 rect.left, rect.top, rect.right, rect.bottom,
757 owner, hMenu, hInst, NULL );
Alexandre Julliard3db94ef1997-09-28 17:43:24 +0000758
Alexandre Julliard0e607781993-11-03 19:23:37 +0000759 if (!hwnd)
760 {
Alexandre Julliarda3960291999-02-26 11:11:13 +0000761 if (hFont) DeleteObject( hFont );
762 if (hMenu) DestroyMenu( hMenu );
Alexandre Julliard0e607781993-11-03 19:23:37 +0000763 return 0;
764 }
Alexandre Julliard902da691995-11-05 14:39:02 +0000765 wndPtr = WIN_FindWndPtr( hwnd );
Alexandre Julliard3051b641996-07-05 17:14:13 +0000766 wndPtr->flags |= WIN_ISDIALOG;
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000767 wndPtr->helpContext = template.helpId;
Alexandre Julliard902da691995-11-05 14:39:02 +0000768
Alexandre Julliard0e607781993-11-03 19:23:37 +0000769 /* Initialise dialog extra data */
770
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000771 dlgInfo = (DIALOGINFO *)wndPtr->wExtra;
Marcus Meissner03479f81999-01-28 10:06:38 +0000772 WINPROC_SetProc( &dlgInfo->dlgProc, (WNDPROC16)dlgProc, procType, WIN_PROC_WINDOW );
Alexandre Julliard0e607781993-11-03 19:23:37 +0000773 dlgInfo->hUserFont = hFont;
774 dlgInfo->hMenu = hMenu;
775 dlgInfo->xBaseUnit = xUnit;
776 dlgInfo->yBaseUnit = yUnit;
Alexandre Julliarddf2673b1997-03-29 17:20:20 +0000777 dlgInfo->msgResult = 0;
Alexandre Julliard7e6ae4b1996-12-08 19:25:27 +0000778 dlgInfo->idResult = 0;
Alexandre Julliarddf2673b1997-03-29 17:20:20 +0000779 dlgInfo->flags = 0;
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000780 dlgInfo->hDialogHeap = 0;
781
Alexandre Julliardda0cfb31996-12-01 17:17:47 +0000782 if (dlgInfo->hUserFont)
Alexandre Julliarda3960291999-02-26 11:11:13 +0000783 SendMessageA( hwnd, WM_SETFONT, (WPARAM)dlgInfo->hUserFont, 0 );
Alexandre Julliardda0cfb31996-12-01 17:17:47 +0000784
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000785 /* Create controls */
786
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000787 if (DIALOG_CreateControls( wndPtr, dlgTemplate, &template,
788 hInst, win32Template ))
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000789 {
Adrian Thurston00442ba1999-10-23 16:48:05 +0000790 HWND hwndPreInitFocus;
791
792 /* Send initialisation messages and set focus */
Alexandre Julliarddf2673b1997-03-29 17:20:20 +0000793
Alexandre Julliarda3960291999-02-26 11:11:13 +0000794 dlgInfo->hwndFocus = GetNextDlgTabItem( hwnd, 0, FALSE );
Alexandre Julliard77b99181997-09-14 17:17:23 +0000795
Adrian Thurston00442ba1999-10-23 16:48:05 +0000796 hwndPreInitFocus = GetFocus();
Alexandre Julliarda3960291999-02-26 11:11:13 +0000797 if (SendMessageA( hwnd, WM_INITDIALOG, (WPARAM)dlgInfo->hwndFocus, param ))
Sheri Steevesa4b73d42000-06-15 01:00:42 +0000798 {
799 /* check where the focus is again, some controls status might have changed in
800 WM_INITDIALOG */
801 dlgInfo->hwndFocus = GetNextDlgTabItem( hwnd, 0, FALSE);
Alexandre Julliarda3960291999-02-26 11:11:13 +0000802 SetFocus( dlgInfo->hwndFocus );
Sheri Steevesa4b73d42000-06-15 01:00:42 +0000803 }
804 else
805 {
806 /* If the dlgproc has returned FALSE (indicating handling of keyboard focus)
807 but the focus has not changed, set the focus where we expect it. */
Gerard Patel2b37da62000-04-23 19:57:50 +0000808 if ( (wndPtr->dwStyle & WS_VISIBLE) && ( GetFocus() == hwndPreInitFocus ) )
Sheri Steevesa4b73d42000-06-15 01:00:42 +0000809 {
810 dlgInfo->hwndFocus = GetNextDlgTabItem( hwnd, 0, FALSE);
Gerard Patel2b37da62000-04-23 19:57:50 +0000811 SetFocus( dlgInfo->hwndFocus );
Sheri Steevesa4b73d42000-06-15 01:00:42 +0000812 }
813 }
Alexandre Julliard77b99181997-09-14 17:17:23 +0000814
815 if (template.style & WS_VISIBLE && !(wndPtr->dwStyle & WS_VISIBLE))
816 {
Alexandre Julliarda3960291999-02-26 11:11:13 +0000817 ShowWindow( hwnd, SW_SHOWNORMAL ); /* SW_SHOW doesn't always work */
Alexandre Julliard77b99181997-09-14 17:17:23 +0000818 }
Francois Boisvert6b1b41c1999-03-14 17:25:32 +0000819 WIN_ReleaseWndPtr(wndPtr);
Alexandre Julliard77b99181997-09-14 17:17:23 +0000820 return hwnd;
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000821 }
Francois Boisvert6b1b41c1999-03-14 17:25:32 +0000822 WIN_ReleaseWndPtr(wndPtr);
Alexandre Julliarda3960291999-02-26 11:11:13 +0000823 if( IsWindow(hwnd) ) DestroyWindow( hwnd );
Alexandre Julliarddf2673b1997-03-29 17:20:20 +0000824 return 0;
Alexandre Julliard0e607781993-11-03 19:23:37 +0000825}
826
827
828/***********************************************************************
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000829 * CreateDialog16 (USER.89)
830 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +0000831HWND16 WINAPI CreateDialog16( HINSTANCE16 hInst, SEGPTR dlgTemplate,
832 HWND16 owner, DLGPROC16 dlgProc )
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000833{
834 return CreateDialogParam16( hInst, dlgTemplate, owner, dlgProc, 0 );
835}
836
837
838/***********************************************************************
839 * CreateDialogParam16 (USER.241)
840 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +0000841HWND16 WINAPI CreateDialogParam16( HINSTANCE16 hInst, SEGPTR dlgTemplate,
842 HWND16 owner, DLGPROC16 dlgProc,
843 LPARAM param )
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000844{
845 HWND16 hwnd = 0;
Alexandre Julliard8cc3a5e1996-08-11 15:49:51 +0000846 HRSRC16 hRsrc;
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000847 HGLOBAL16 hmem;
848 LPCVOID data;
849
Alexandre Julliard359f497e1999-07-04 16:02:24 +0000850 TRACE("%04x,%08lx,%04x,%08lx,%ld\n",
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000851 hInst, (DWORD)dlgTemplate, owner, (DWORD)dlgProc, param );
852
Alexandre Julliardc7c217b1998-04-13 12:21:30 +0000853 if (!(hRsrc = FindResource16( hInst, dlgTemplate, RT_DIALOG16 ))) return 0;
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000854 if (!(hmem = LoadResource16( hInst, hRsrc ))) return 0;
855 if (!(data = LockResource16( hmem ))) hwnd = 0;
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000856 else hwnd = CreateDialogIndirectParam16( hInst, data, owner,
857 dlgProc, param );
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000858 FreeResource16( hmem );
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000859 return hwnd;
860}
861
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000862/***********************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +0000863 * CreateDialogParamA (USER32.73)
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000864 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000865HWND WINAPI CreateDialogParamA( HINSTANCE hInst, LPCSTR name,
866 HWND owner, DLGPROC dlgProc,
Alexandre Julliard670cdc41997-08-24 16:00:30 +0000867 LPARAM param )
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000868{
Ove Kaaven483c5481999-07-18 15:29:09 +0000869 HANDLE hrsrc = FindResourceA( hInst, name, RT_DIALOGA );
870 if (!hrsrc) return 0;
871 return CreateDialogIndirectParamA( hInst,
872 (LPVOID)LoadResource(hInst, hrsrc),
873 owner, dlgProc, param );
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000874}
875
876
877/***********************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +0000878 * CreateDialogParamW (USER32.74)
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000879 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000880HWND WINAPI CreateDialogParamW( HINSTANCE hInst, LPCWSTR name,
881 HWND owner, DLGPROC dlgProc,
Alexandre Julliard670cdc41997-08-24 16:00:30 +0000882 LPARAM param )
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000883{
Alexandre Julliarda3960291999-02-26 11:11:13 +0000884 HANDLE hrsrc = FindResourceW( hInst, name, RT_DIALOGW );
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000885 if (!hrsrc) return 0;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000886 return CreateDialogIndirectParamW( hInst,
887 (LPVOID)LoadResource(hInst, hrsrc),
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000888 owner, dlgProc, param );
889}
890
891
892/***********************************************************************
893 * CreateDialogIndirect16 (USER.219)
894 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +0000895HWND16 WINAPI CreateDialogIndirect16( HINSTANCE16 hInst, LPCVOID dlgTemplate,
896 HWND16 owner, DLGPROC16 dlgProc )
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000897{
898 return CreateDialogIndirectParam16( hInst, dlgTemplate, owner, dlgProc, 0);
899}
900
901
902/***********************************************************************
903 * CreateDialogIndirectParam16 (USER.242)
904 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +0000905HWND16 WINAPI CreateDialogIndirectParam16( HINSTANCE16 hInst,
906 LPCVOID dlgTemplate,
907 HWND16 owner, DLGPROC16 dlgProc,
908 LPARAM param )
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000909{
Alexandre Julliard9ea19e51997-01-01 17:29:55 +0000910 return DIALOG_CreateIndirect( hInst, dlgTemplate, FALSE, owner,
Alexandre Julliard3051b641996-07-05 17:14:13 +0000911 dlgProc, param, WIN_PROC_16 );
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000912}
913
914
915/***********************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +0000916 * CreateDialogIndirectParamA (USER32.69)
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000917 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000918HWND WINAPI CreateDialogIndirectParamA( HINSTANCE hInst,
Alexandre Julliard670cdc41997-08-24 16:00:30 +0000919 LPCVOID dlgTemplate,
Alexandre Julliarda3960291999-02-26 11:11:13 +0000920 HWND owner, DLGPROC dlgProc,
Alexandre Julliard670cdc41997-08-24 16:00:30 +0000921 LPARAM param )
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000922{
Alexandre Julliard9ea19e51997-01-01 17:29:55 +0000923 return DIALOG_CreateIndirect( hInst, dlgTemplate, TRUE, owner,
Alexandre Julliard3051b641996-07-05 17:14:13 +0000924 (DLGPROC16)dlgProc, param, WIN_PROC_32A );
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000925}
926
Juergen Schmied84b358d1998-10-11 15:38:35 +0000927/***********************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +0000928 * CreateDialogIndirectParamAorW (USER32.71)
Juergen Schmied84b358d1998-10-11 15:38:35 +0000929 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000930HWND WINAPI CreateDialogIndirectParamAorW( HINSTANCE hInst,
Juergen Schmied84b358d1998-10-11 15:38:35 +0000931 LPCVOID dlgTemplate,
Alexandre Julliarda3960291999-02-26 11:11:13 +0000932 HWND owner, DLGPROC dlgProc,
Juergen Schmied84b358d1998-10-11 15:38:35 +0000933 LPARAM param )
Alexandre Julliard359f497e1999-07-04 16:02:24 +0000934{ FIXME("assume WIN_PROC_32W\n");
Juergen Schmied84b358d1998-10-11 15:38:35 +0000935 return DIALOG_CreateIndirect( hInst, dlgTemplate, TRUE, owner,
936 (DLGPROC16)dlgProc, param, WIN_PROC_32W );
937}
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000938
939/***********************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +0000940 * CreateDialogIndirectParamW (USER32.72)
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000941 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000942HWND WINAPI CreateDialogIndirectParamW( HINSTANCE hInst,
Alexandre Julliard670cdc41997-08-24 16:00:30 +0000943 LPCVOID dlgTemplate,
Alexandre Julliarda3960291999-02-26 11:11:13 +0000944 HWND owner, DLGPROC dlgProc,
Alexandre Julliard670cdc41997-08-24 16:00:30 +0000945 LPARAM param )
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000946{
Alexandre Julliard9ea19e51997-01-01 17:29:55 +0000947 return DIALOG_CreateIndirect( hInst, dlgTemplate, TRUE, owner,
Alexandre Julliard3051b641996-07-05 17:14:13 +0000948 (DLGPROC16)dlgProc, param, WIN_PROC_32W );
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000949}
950
951
952/***********************************************************************
Alexandre Julliarde399fc31993-11-24 17:08:56 +0000953 * DIALOG_DoDialogBox
Alexandre Julliard0e607781993-11-03 19:23:37 +0000954 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000955INT DIALOG_DoDialogBox( HWND hwnd, HWND owner )
Alexandre Julliard0e607781993-11-03 19:23:37 +0000956{
Alexandre Julliard0e607781993-11-03 19:23:37 +0000957 WND * wndPtr;
958 DIALOGINFO * dlgInfo;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000959 MSG msg;
960 INT retval;
Alexandre Julliard0e607781993-11-03 19:23:37 +0000961
Alexandre Julliardaca05781994-10-17 18:12:41 +0000962 /* Owner must be a top-level window */
Alexandre Julliarde2991ea1995-07-29 13:09:43 +0000963 owner = WIN_GetTopParent( owner );
Alexandre Julliarde399fc31993-11-24 17:08:56 +0000964 if (!(wndPtr = WIN_FindWndPtr( hwnd ))) return -1;
Alexandre Julliard0e607781993-11-03 19:23:37 +0000965 dlgInfo = (DIALOGINFO *)wndPtr->wExtra;
Alexandre Julliarde399fc31993-11-24 17:08:56 +0000966
Gerard Patel902f9c61999-02-14 11:22:03 +0000967 if (!dlgInfo->flags & DF_END) /* was EndDialog called in WM_INITDIALOG ? */
Alexandre Julliard0e607781993-11-03 19:23:37 +0000968 {
Alexandre Julliarda3960291999-02-26 11:11:13 +0000969 EnableWindow( owner, FALSE );
970 ShowWindow( hwnd, SW_SHOW );
Ulrich Weigand2faf2cf1999-12-10 03:47:13 +0000971 while (MSG_InternalGetMessage(QMSG_WIN32A, &msg, hwnd, owner, MSGF_DIALOGBOX,
Francis Beaudet7ed1af31999-08-15 16:58:03 +0000972 PM_REMOVE, !(wndPtr->dwStyle & DS_NOIDLEMSG), NULL ))
Gerard Patel902f9c61999-02-14 11:22:03 +0000973 {
Alexandre Julliarda3960291999-02-26 11:11:13 +0000974 if (!IsDialogMessageA( hwnd, &msg))
Gerard Patel902f9c61999-02-14 11:22:03 +0000975 {
Alexandre Julliarda3960291999-02-26 11:11:13 +0000976 TranslateMessage( &msg );
977 DispatchMessageA( &msg );
Gerard Patel902f9c61999-02-14 11:22:03 +0000978 }
979 if (dlgInfo->flags & DF_END) break;
980 }
Alexandre Julliarda3960291999-02-26 11:11:13 +0000981 EnableWindow( owner, TRUE );
Alexandre Julliard0e607781993-11-03 19:23:37 +0000982 }
Gerard Patel902f9c61999-02-14 11:22:03 +0000983 retval = dlgInfo->idResult;
Francois Boisvert6b1b41c1999-03-14 17:25:32 +0000984 WIN_ReleaseWndPtr(wndPtr);
Alexandre Julliarda3960291999-02-26 11:11:13 +0000985 DestroyWindow( hwnd );
Alexandre Julliard0e607781993-11-03 19:23:37 +0000986 return retval;
987}
988
989
990/***********************************************************************
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000991 * DialogBox16 (USER.87)
Alexandre Julliarde399fc31993-11-24 17:08:56 +0000992 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +0000993INT16 WINAPI DialogBox16( HINSTANCE16 hInst, SEGPTR dlgTemplate,
994 HWND16 owner, DLGPROC16 dlgProc )
Alexandre Julliarde399fc31993-11-24 17:08:56 +0000995{
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000996 return DialogBoxParam16( hInst, dlgTemplate, owner, dlgProc, 0 );
Alexandre Julliarde399fc31993-11-24 17:08:56 +0000997}
998
999
1000/***********************************************************************
Alexandre Julliard1e9ac791996-06-06 18:38:27 +00001001 * DialogBoxParam16 (USER.239)
Alexandre Julliarde399fc31993-11-24 17:08:56 +00001002 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +00001003INT16 WINAPI DialogBoxParam16( HINSTANCE16 hInst, SEGPTR template,
1004 HWND16 owner, DLGPROC16 dlgProc, LPARAM param )
Alexandre Julliarde399fc31993-11-24 17:08:56 +00001005{
Alexandre Julliard1e9ac791996-06-06 18:38:27 +00001006 HWND16 hwnd = CreateDialogParam16( hInst, template, owner, dlgProc, param);
1007 if (hwnd) return (INT16)DIALOG_DoDialogBox( hwnd, owner );
1008 return -1;
1009}
1010
1011
1012/***********************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +00001013 * DialogBoxParamA (USER32.139)
Alexandre Julliard1e9ac791996-06-06 18:38:27 +00001014 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001015INT WINAPI DialogBoxParamA( HINSTANCE hInst, LPCSTR name,
1016 HWND owner, DLGPROC dlgProc, LPARAM param )
Alexandre Julliard1e9ac791996-06-06 18:38:27 +00001017{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001018 HWND hwnd = CreateDialogParamA( hInst, name, owner, dlgProc, param );
Alexandre Julliard3f2abfa1994-08-16 15:43:11 +00001019 if (hwnd) return DIALOG_DoDialogBox( hwnd, owner );
Alexandre Julliarde399fc31993-11-24 17:08:56 +00001020 return -1;
1021}
1022
1023
1024/***********************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +00001025 * DialogBoxParamW (USER32.140)
Alexandre Julliarde399fc31993-11-24 17:08:56 +00001026 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001027INT WINAPI DialogBoxParamW( HINSTANCE hInst, LPCWSTR name,
1028 HWND owner, DLGPROC dlgProc, LPARAM param )
Alexandre Julliarde399fc31993-11-24 17:08:56 +00001029{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001030 HWND hwnd = CreateDialogParamW( hInst, name, owner, dlgProc, param );
Alexandre Julliard1e9ac791996-06-06 18:38:27 +00001031 if (hwnd) return DIALOG_DoDialogBox( hwnd, owner );
1032 return -1;
Alexandre Julliarde399fc31993-11-24 17:08:56 +00001033}
1034
1035
1036/***********************************************************************
Alexandre Julliard1e9ac791996-06-06 18:38:27 +00001037 * DialogBoxIndirect16 (USER.218)
Alexandre Julliarde399fc31993-11-24 17:08:56 +00001038 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +00001039INT16 WINAPI DialogBoxIndirect16( HINSTANCE16 hInst, HANDLE16 dlgTemplate,
1040 HWND16 owner, DLGPROC16 dlgProc )
Alexandre Julliarde399fc31993-11-24 17:08:56 +00001041{
Alexandre Julliard1e9ac791996-06-06 18:38:27 +00001042 return DialogBoxIndirectParam16( hInst, dlgTemplate, owner, dlgProc, 0 );
1043}
Alexandre Julliarde399fc31993-11-24 17:08:56 +00001044
Alexandre Julliard1e9ac791996-06-06 18:38:27 +00001045
1046/***********************************************************************
1047 * DialogBoxIndirectParam16 (USER.240)
1048 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +00001049INT16 WINAPI DialogBoxIndirectParam16( HINSTANCE16 hInst, HANDLE16 dlgTemplate,
1050 HWND16 owner, DLGPROC16 dlgProc,
1051 LPARAM param )
Alexandre Julliard1e9ac791996-06-06 18:38:27 +00001052{
1053 HWND16 hwnd;
1054 LPCVOID ptr;
1055
1056 if (!(ptr = GlobalLock16( dlgTemplate ))) return -1;
1057 hwnd = CreateDialogIndirectParam16( hInst, ptr, owner, dlgProc, param );
Alexandre Julliard1285c2f1996-05-06 16:06:24 +00001058 GlobalUnlock16( dlgTemplate );
Alexandre Julliard1e9ac791996-06-06 18:38:27 +00001059 if (hwnd) return (INT16)DIALOG_DoDialogBox( hwnd, owner );
1060 return -1;
1061}
1062
1063
1064/***********************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +00001065 * DialogBoxIndirectParamA (USER32.136)
Alexandre Julliard1e9ac791996-06-06 18:38:27 +00001066 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001067INT WINAPI DialogBoxIndirectParamA(HINSTANCE hInstance, LPCVOID template,
1068 HWND owner, DLGPROC dlgProc,
Alexandre Julliard670cdc41997-08-24 16:00:30 +00001069 LPARAM param )
Alexandre Julliard1e9ac791996-06-06 18:38:27 +00001070{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001071 HWND hwnd = CreateDialogIndirectParamA( hInstance, template,
Alexandre Julliard1e9ac791996-06-06 18:38:27 +00001072 owner, dlgProc, param );
Alexandre Julliard3f2abfa1994-08-16 15:43:11 +00001073 if (hwnd) return DIALOG_DoDialogBox( hwnd, owner );
Alexandre Julliarde399fc31993-11-24 17:08:56 +00001074 return -1;
1075}
1076
Alexandre Julliard7cbe6571995-01-09 18:21:16 +00001077
Alexandre Julliard3ed37e01994-11-07 18:20:42 +00001078/***********************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +00001079 * DialogBoxIndirectParamW (USER32.138)
Alexandre Julliard0e607781993-11-03 19:23:37 +00001080 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001081INT WINAPI DialogBoxIndirectParamW(HINSTANCE hInstance, LPCVOID template,
1082 HWND owner, DLGPROC dlgProc,
Alexandre Julliard670cdc41997-08-24 16:00:30 +00001083 LPARAM param )
Alexandre Julliard1e9ac791996-06-06 18:38:27 +00001084{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001085 HWND hwnd = CreateDialogIndirectParamW( hInstance, template,
Alexandre Julliard1e9ac791996-06-06 18:38:27 +00001086 owner, dlgProc, param );
1087 if (hwnd) return DIALOG_DoDialogBox( hwnd, owner );
1088 return -1;
1089}
1090
Juergen Schmieda4d7ca02000-01-04 00:29:44 +00001091/***********************************************************************
1092 * DialogBoxIndirectParamAorW (USER32.138)
1093 */
1094INT WINAPI DialogBoxIndirectParamAorW(HINSTANCE hInstance, LPCVOID template,
1095 HWND owner, DLGPROC dlgProc,
1096 LPARAM param, DWORD x )
1097{
1098 HWND hwnd;
1099 FIXME("0x%08x %p 0x%08x %p 0x%08lx 0x%08lx\n",
1100 hInstance, template, owner, dlgProc, param, x);
1101 hwnd = CreateDialogIndirectParamW( hInstance, template,
1102 owner, dlgProc, param );
1103 if (hwnd) return DIALOG_DoDialogBox( hwnd, owner );
1104 return -1;
1105}
Alexandre Julliard1e9ac791996-06-06 18:38:27 +00001106
1107/***********************************************************************
Andreas Mohr01f84261999-03-19 16:49:30 +00001108 * EndDialog16 (USER.88)
Alexandre Julliard1e9ac791996-06-06 18:38:27 +00001109 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +00001110BOOL16 WINAPI EndDialog16( HWND16 hwnd, INT16 retval )
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001111{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001112 return EndDialog( hwnd, retval );
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001113}
1114
1115
1116/***********************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +00001117 * EndDialog (USER32.173)
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001118 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001119BOOL WINAPI EndDialog( HWND hwnd, INT retval )
Alexandre Julliard0e607781993-11-03 19:23:37 +00001120{
1121 WND * wndPtr = WIN_FindWndPtr( hwnd );
Andreas Mohrbeae14d2000-02-12 13:21:23 +00001122 DIALOGINFO * dlgInfo;
Abey George3336f481999-10-13 15:45:23 +00001123 HWND hOwner = 0;
Alexandre Julliarddf2673b1997-03-29 17:20:20 +00001124
Alexandre Julliard359f497e1999-07-04 16:02:24 +00001125 TRACE("%04x %d\n", hwnd, retval );
Alexandre Julliarddf2673b1997-03-29 17:20:20 +00001126
Andreas Mohrbeae14d2000-02-12 13:21:23 +00001127 if (!wndPtr)
1128 {
1129 ERR("got invalid window handle (%04x); buggy app !?\n", hwnd);
Andreas Mohr1c20b392000-02-20 19:17:35 +00001130 return FALSE;
Andreas Mohrbeae14d2000-02-12 13:21:23 +00001131 }
1132
1133 if ((dlgInfo = (DIALOGINFO *)wndPtr->wExtra))
Alexandre Julliarddf2673b1997-03-29 17:20:20 +00001134 {
1135 dlgInfo->idResult = retval;
1136 dlgInfo->flags |= DF_END;
1137 }
Andreas Mohr01f84261999-03-19 16:49:30 +00001138
Abey George3336f481999-10-13 15:45:23 +00001139 if(wndPtr->owner)
1140 hOwner = WIN_GetTopParent( wndPtr->owner->hwndSelf );
1141
1142 /* Enable the owner first */
1143 if (hOwner && !IsWindowEnabled(hOwner))
1144 EnableWindow( hOwner, TRUE );
1145
1146 /* Windows sets the focus to the dialog itself in EndDialog */
Abey George15c58c41999-08-07 14:10:04 +00001147
1148 if (IsChild(hwnd, GetFocus()))
1149 SetFocus(wndPtr->hwndSelf);
1150
Abey George3336f481999-10-13 15:45:23 +00001151 /* Don't have to send a ShowWindow(SW_HIDE), just do
1152 SetWindowPos with SWP_HIDEWINDOW as done in Windows */
Andreas Mohr01f84261999-03-19 16:49:30 +00001153
Abey George3336f481999-10-13 15:45:23 +00001154 SetWindowPos(hwnd, (HWND)0, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE
1155 | SWP_NOZORDER | SWP_NOACTIVATE | SWP_HIDEWINDOW);
Stephane Lussier18613bb1999-07-24 10:18:02 +00001156
Francois Boisvert6b1b41c1999-03-14 17:25:32 +00001157 WIN_ReleaseWndPtr(wndPtr);
Abey George3336f481999-10-13 15:45:23 +00001158
Alexandre Julliard0c126c71996-02-18 18:44:41 +00001159 return TRUE;
Alexandre Julliard0e607781993-11-03 19:23:37 +00001160}
1161
1162
1163/***********************************************************************
Norman Stevensa83d0651998-10-12 07:25:35 +00001164 * DIALOG_IsAccelerator
1165 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001166static BOOL DIALOG_IsAccelerator( HWND hwnd, HWND hwndDlg, WPARAM vKey )
Norman Stevensa83d0651998-10-12 07:25:35 +00001167{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001168 HWND hwndControl = hwnd;
1169 HWND hwndNext;
Norman Stevensa83d0651998-10-12 07:25:35 +00001170 WND *wndPtr;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001171 BOOL RetVal = FALSE;
1172 INT dlgCode;
Norman Stevensa83d0651998-10-12 07:25:35 +00001173
Norman Stevensa83d0651998-10-12 07:25:35 +00001174 do
1175 {
1176 wndPtr = WIN_FindWndPtr( hwndControl );
Francis Beaudetf91e6d01999-03-25 13:22:42 +00001177 if ( (wndPtr != NULL) &&
1178 ((wndPtr->dwStyle & (WS_VISIBLE | WS_DISABLED)) == WS_VISIBLE) )
Norman Stevensa83d0651998-10-12 07:25:35 +00001179 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001180 dlgCode = SendMessageA( hwndControl, WM_GETDLGCODE, 0, 0 );
Francis Beaudetf91e6d01999-03-25 13:22:42 +00001181 if ( (dlgCode & (DLGC_BUTTON | DLGC_STATIC)) &&
1182 (wndPtr->text!=NULL))
Norman Stevensa83d0651998-10-12 07:25:35 +00001183 {
1184 /* find the accelerator key */
Dmitry Timoshkov04da8b82000-07-10 12:09:31 +00001185 LPWSTR p = wndPtr->text - 2;
Norman Stevensa83d0651998-10-12 07:25:35 +00001186 do
1187 {
Dmitry Timoshkov04da8b82000-07-10 12:09:31 +00001188 p = strchrW( p + 2, '&' );
Norman Stevensa83d0651998-10-12 07:25:35 +00001189 }
1190 while (p != NULL && p[1] == '&');
1191
1192 /* and check if it's the one we're looking for */
Dmitry Timoshkov04da8b82000-07-10 12:09:31 +00001193 /* FIXME: convert vKey to unicode */
1194 if (p != NULL && toupperW( p[1] ) == (WCHAR)toupper( vKey ) )
Norman Stevensa83d0651998-10-12 07:25:35 +00001195 {
1196 if ((dlgCode & DLGC_STATIC) ||
1197 (wndPtr->dwStyle & 0x0f) == BS_GROUPBOX )
1198 {
1199 /* set focus to the control */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001200 SendMessageA( hwndDlg, WM_NEXTDLGCTL,
Norman Stevensa83d0651998-10-12 07:25:35 +00001201 hwndControl, 1);
1202 /* and bump it on to next */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001203 SendMessageA( hwndDlg, WM_NEXTDLGCTL, 0, 0);
Norman Stevensa83d0651998-10-12 07:25:35 +00001204 }
Dmitry Timoshkovb7bb42d1999-12-25 22:52:44 +00001205 else if (dlgCode & DLGC_BUTTON)
1206 {
Dmitry Timoshkov6fb62f52000-01-29 22:09:40 +00001207 /* send BM_CLICK message to the control */
1208 SendMessageA( hwndControl, BM_CLICK, 0, 0 );
Dmitry Timoshkovb7bb42d1999-12-25 22:52:44 +00001209 }
Dmitry Timoshkovf92a7771999-12-05 23:51:15 +00001210
Norman Stevensa83d0651998-10-12 07:25:35 +00001211 RetVal = TRUE;
Abey George15c58c41999-08-07 14:10:04 +00001212 WIN_ReleaseWndPtr(wndPtr);
Norman Stevensa83d0651998-10-12 07:25:35 +00001213 break;
1214 }
1215 }
Norman Stevens460881c1999-02-28 09:59:32 +00001216 hwndNext = GetWindow( hwndControl, GW_CHILD );
Norman Stevensa83d0651998-10-12 07:25:35 +00001217 }
Norman Stevens460881c1999-02-28 09:59:32 +00001218 else
1219 {
1220 hwndNext = 0;
1221 }
Francois Boisvert6b1b41c1999-03-14 17:25:32 +00001222 WIN_ReleaseWndPtr(wndPtr);
NF Stevense1f67b91998-11-08 16:44:41 +00001223 if (!hwndNext)
1224 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001225 hwndNext = GetWindow( hwndControl, GW_HWNDNEXT );
NF Stevense1f67b91998-11-08 16:44:41 +00001226 }
Marcus Meissner6f7797b1999-09-03 16:39:36 +00001227 while (!hwndNext && hwndControl)
NF Stevense1f67b91998-11-08 16:44:41 +00001228 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001229 hwndControl = GetParent( hwndControl );
NF Stevense1f67b91998-11-08 16:44:41 +00001230 if (hwndControl == hwndDlg)
1231 {
Abey George15c58c41999-08-07 14:10:04 +00001232 if(hwnd==hwndDlg){ /* prevent endless loop */
1233 hwndNext=hwnd;
1234 break;
1235 }
Alexandre Julliarda3960291999-02-26 11:11:13 +00001236 hwndNext = GetWindow( hwndDlg, GW_CHILD );
NF Stevense1f67b91998-11-08 16:44:41 +00001237 }
1238 else
1239 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001240 hwndNext = GetWindow( hwndControl, GW_HWNDNEXT );
NF Stevense1f67b91998-11-08 16:44:41 +00001241 }
1242 }
1243 hwndControl = hwndNext;
Norman Stevensa83d0651998-10-12 07:25:35 +00001244 }
Marcus Meissner6f7797b1999-09-03 16:39:36 +00001245 while (hwndControl && (hwndControl != hwnd));
Dmitry Timoshkovf92a7771999-12-05 23:51:15 +00001246
Norman Stevensa83d0651998-10-12 07:25:35 +00001247 return RetVal;
1248}
1249
Andrew Lewycky0ceb2552000-03-19 14:20:52 +00001250/***********************************************************************
1251 * DIALOG_FindMsgDestination
1252 *
1253 * The messages that IsDialogMessage send may not go to the dialog
1254 * calling IsDialogMessage if that dialog is a child, and it has the
1255 * DS_CONTROL style set.
1256 * We propagate up until we hit a that does not have DS_CONTROL, or
1257 * whose parent is not a dialog.
1258 *
1259 * This is undocumented behaviour.
1260 */
1261static HWND DIALOG_FindMsgDestination( HWND hwndDlg )
1262{
1263 while (GetWindowLongA(hwndDlg, GWL_STYLE) & DS_CONTROL)
1264 {
1265 WND *pParent;
1266 HWND hParent = GetParent(hwndDlg);
1267 if (!hParent) break;
1268
1269 pParent = WIN_FindWndPtr(hParent);
1270 if (!pParent) break;
1271
1272 if (!(pParent->flags & WIN_ISDIALOG))
1273 {
1274 WIN_ReleaseWndPtr(pParent);
1275 break;
1276 }
1277 WIN_ReleaseWndPtr(pParent);
1278
1279 hwndDlg = hParent;
1280 }
1281
1282 return hwndDlg;
1283}
Norman Stevensa83d0651998-10-12 07:25:35 +00001284
1285/***********************************************************************
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001286 * DIALOG_IsDialogMessage
Alexandre Julliard0e607781993-11-03 19:23:37 +00001287 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001288static BOOL DIALOG_IsDialogMessage( HWND hwnd, HWND hwndDlg,
1289 UINT message, WPARAM wParam,
1290 LPARAM lParam, BOOL *translate,
1291 BOOL *dispatch, INT dlgCode )
Alexandre Julliard0e607781993-11-03 19:23:37 +00001292{
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001293 *translate = *dispatch = FALSE;
Alexandre Julliard0e607781993-11-03 19:23:37 +00001294
Alexandre Julliard641ee761997-08-04 16:34:36 +00001295 if (message == WM_PAINT)
1296 {
1297 /* Apparently, we have to handle this one as well */
1298 *dispatch = TRUE;
1299 return TRUE;
1300 }
1301
Alexandre Julliardaca05781994-10-17 18:12:41 +00001302 /* Only the key messages get special processing */
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001303 if ((message != WM_KEYDOWN) &&
1304 (message != WM_SYSCHAR) &&
1305 (message != WM_CHAR))
Alexandre Julliard7cbe6571995-01-09 18:21:16 +00001306 return FALSE;
1307
Alexandre Julliard7cbe6571995-01-09 18:21:16 +00001308 if (dlgCode & DLGC_WANTMESSAGE)
Alexandre Julliard0e607781993-11-03 19:23:37 +00001309 {
Alexandre Julliard23946ad1997-06-16 17:43:53 +00001310 *translate = *dispatch = TRUE;
Alexandre Julliard7cbe6571995-01-09 18:21:16 +00001311 return TRUE;
Alexandre Julliard0e607781993-11-03 19:23:37 +00001312 }
Alexandre Julliardaca05781994-10-17 18:12:41 +00001313
Andrew Lewycky0ceb2552000-03-19 14:20:52 +00001314 hwndDlg = DIALOG_FindMsgDestination(hwndDlg);
1315
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001316 switch(message)
Alexandre Julliard0e607781993-11-03 19:23:37 +00001317 {
Alexandre Julliardaca05781994-10-17 18:12:41 +00001318 case WM_KEYDOWN:
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001319 switch(wParam)
Alexandre Julliardaca05781994-10-17 18:12:41 +00001320 {
1321 case VK_TAB:
1322 if (!(dlgCode & DLGC_WANTTAB))
1323 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001324 SendMessageA( hwndDlg, WM_NEXTDLGCTL,
1325 (GetKeyState(VK_SHIFT) & 0x8000), 0 );
Alexandre Julliardaca05781994-10-17 18:12:41 +00001326 return TRUE;
1327 }
1328 break;
1329
1330 case VK_RIGHT:
1331 case VK_DOWN:
Alexandre Julliardaca05781994-10-17 18:12:41 +00001332 case VK_LEFT:
1333 case VK_UP:
1334 if (!(dlgCode & DLGC_WANTARROWS))
1335 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001336 BOOL fPrevious = (wParam == VK_LEFT || wParam == VK_UP);
1337 HWND hwndNext =
1338 GetNextDlgGroupItem (hwndDlg, GetFocus(), fPrevious );
1339 SendMessageA( hwndDlg, WM_NEXTDLGCTL, hwndNext, 1 );
Alexandre Julliardaca05781994-10-17 18:12:41 +00001340 return TRUE;
1341 }
1342 break;
1343
1344 case VK_ESCAPE:
Alexandre Julliarda3960291999-02-26 11:11:13 +00001345 SendMessageA( hwndDlg, WM_COMMAND, IDCANCEL,
1346 (LPARAM)GetDlgItem( hwndDlg, IDCANCEL ) );
Norman Stevensa83d0651998-10-12 07:25:35 +00001347 return TRUE;
Alexandre Julliardaca05781994-10-17 18:12:41 +00001348
1349 case VK_RETURN:
1350 {
Alexandre Julliard2d93d001996-05-21 15:01:41 +00001351 DWORD dw = SendMessage16( hwndDlg, DM_GETDEFID, 0, 0 );
Alexandre Julliardaca05781994-10-17 18:12:41 +00001352 if (HIWORD(dw) == DC_HASDEFID)
Norman Stevensa83d0651998-10-12 07:25:35 +00001353 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001354 SendMessageA( hwndDlg, WM_COMMAND,
Alexandre Julliard2d93d001996-05-21 15:01:41 +00001355 MAKEWPARAM( LOWORD(dw), BN_CLICKED ),
Alexandre Julliarda3960291999-02-26 11:11:13 +00001356 (LPARAM)GetDlgItem(hwndDlg, LOWORD(dw)));
Norman Stevensa83d0651998-10-12 07:25:35 +00001357 }
Alexandre Julliardaf0bae51995-10-03 17:06:08 +00001358 else
Norman Stevensa83d0651998-10-12 07:25:35 +00001359 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001360 SendMessageA( hwndDlg, WM_COMMAND, IDOK,
1361 (LPARAM)GetDlgItem( hwndDlg, IDOK ) );
Norman Stevensa83d0651998-10-12 07:25:35 +00001362
1363 }
Alexandre Julliardaca05781994-10-17 18:12:41 +00001364 }
Norman Stevensa83d0651998-10-12 07:25:35 +00001365 return TRUE;
Alexandre Julliardaca05781994-10-17 18:12:41 +00001366 }
Norman Stevensa83d0651998-10-12 07:25:35 +00001367 *translate = TRUE;
1368 break; /* case WM_KEYDOWN */
Alexandre Julliardaca05781994-10-17 18:12:41 +00001369
Alexandre Julliardaca05781994-10-17 18:12:41 +00001370 case WM_CHAR:
Norman Stevensa83d0651998-10-12 07:25:35 +00001371 if (dlgCode & DLGC_WANTCHARS) break;
1372 /* drop through */
Alexandre Julliardaca05781994-10-17 18:12:41 +00001373
1374 case WM_SYSCHAR:
Norman Stevensa83d0651998-10-12 07:25:35 +00001375 if (DIALOG_IsAccelerator( hwnd, hwndDlg, wParam ))
1376 {
1377 /* don't translate or dispatch */
1378 return TRUE;
1379 }
Alexandre Julliardaca05781994-10-17 18:12:41 +00001380 break;
Alexandre Julliard0e607781993-11-03 19:23:37 +00001381 }
Alexandre Julliardaca05781994-10-17 18:12:41 +00001382
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001383 /* If we get here, the message has not been treated specially */
1384 /* and can be sent to its destination window. */
1385 *dispatch = TRUE;
Alexandre Julliard0e607781993-11-03 19:23:37 +00001386 return TRUE;
1387}
1388
1389
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001390/***********************************************************************
1391 * IsDialogMessage16 (USER.90)
1392 */
Ove Kaaven748acbb1998-11-01 15:27:12 +00001393BOOL16 WINAPI WIN16_IsDialogMessage16( HWND16 hwndDlg, SEGPTR msg16 )
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001394{
Ove Kaaven748acbb1998-11-01 15:27:12 +00001395 LPMSG16 msg = PTR_SEG_TO_LIN(msg16);
Alexandre Julliarda3960291999-02-26 11:11:13 +00001396 BOOL ret, translate, dispatch;
David Grantedb77971999-11-07 21:02:17 +00001397 INT dlgCode = 0;
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001398
1399 if ((hwndDlg != msg->hwnd) && !IsChild16( hwndDlg, msg->hwnd ))
1400 return FALSE;
1401
David Grantedb77971999-11-07 21:02:17 +00001402 if ((msg->message == WM_KEYDOWN) ||
1403 (msg->message == WM_SYSCHAR) ||
1404 (msg->message == WM_CHAR))
1405 {
1406 dlgCode = SendMessage16( msg->hwnd, WM_GETDLGCODE, 0, (LPARAM)msg16);
1407 }
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001408 ret = DIALOG_IsDialogMessage( msg->hwnd, hwndDlg, msg->message,
1409 msg->wParam, msg->lParam,
Norman Stevensa83d0651998-10-12 07:25:35 +00001410 &translate, &dispatch, dlgCode );
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001411 if (translate) TranslateMessage16( msg );
1412 if (dispatch) DispatchMessage16( msg );
1413 return ret;
1414}
1415
1416
Ove Kaaven748acbb1998-11-01 15:27:12 +00001417BOOL16 WINAPI IsDialogMessage16( HWND16 hwndDlg, LPMSG16 msg )
1418{
1419 LPMSG16 msg16 = SEGPTR_NEW(MSG16);
Alexandre Julliarda3960291999-02-26 11:11:13 +00001420 BOOL ret;
Ove Kaaven748acbb1998-11-01 15:27:12 +00001421
1422 *msg16 = *msg;
1423 ret = WIN16_IsDialogMessage16( hwndDlg, SEGPTR_GET(msg16) );
1424 SEGPTR_FREE(msg16);
1425 return ret;
1426}
1427
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001428/***********************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +00001429 * IsDialogMessageA (USER32.342)
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001430 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001431BOOL WINAPI IsDialogMessageA( HWND hwndDlg, LPMSG msg )
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001432{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001433 BOOL ret, translate, dispatch;
David Grantedb77971999-11-07 21:02:17 +00001434 INT dlgCode = 0;
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001435
Alexandre Julliarda3960291999-02-26 11:11:13 +00001436 if ((hwndDlg != msg->hwnd) && !IsChild( hwndDlg, msg->hwnd ))
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001437 return FALSE;
1438
David Grantedb77971999-11-07 21:02:17 +00001439 if ((msg->message == WM_KEYDOWN) ||
1440 (msg->message == WM_SYSCHAR) ||
1441 (msg->message == WM_CHAR))
1442 {
1443 dlgCode = SendMessageA( msg->hwnd, WM_GETDLGCODE, 0, (LPARAM)msg);
1444 }
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001445 ret = DIALOG_IsDialogMessage( msg->hwnd, hwndDlg, msg->message,
1446 msg->wParam, msg->lParam,
Norman Stevensa83d0651998-10-12 07:25:35 +00001447 &translate, &dispatch, dlgCode );
Alexandre Julliarda3960291999-02-26 11:11:13 +00001448 if (translate) TranslateMessage( msg );
1449 if (dispatch) DispatchMessageA( msg );
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001450 return ret;
1451}
1452
1453
1454/***********************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +00001455 * IsDialogMessageW (USER32.343)
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001456 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001457BOOL WINAPI IsDialogMessageW( HWND hwndDlg, LPMSG msg )
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001458{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001459 BOOL ret, translate, dispatch;
David Grantedb77971999-11-07 21:02:17 +00001460 INT dlgCode = 0;
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001461
Alexandre Julliarda3960291999-02-26 11:11:13 +00001462 if ((hwndDlg != msg->hwnd) && !IsChild( hwndDlg, msg->hwnd ))
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001463 return FALSE;
1464
David Grantedb77971999-11-07 21:02:17 +00001465 if ((msg->message == WM_KEYDOWN) ||
1466 (msg->message == WM_SYSCHAR) ||
1467 (msg->message == WM_CHAR))
1468 {
1469 dlgCode = SendMessageW( msg->hwnd, WM_GETDLGCODE, 0, (LPARAM)msg);
1470 }
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001471 ret = DIALOG_IsDialogMessage( msg->hwnd, hwndDlg, msg->message,
1472 msg->wParam, msg->lParam,
Norman Stevensa83d0651998-10-12 07:25:35 +00001473 &translate, &dispatch, dlgCode );
Alexandre Julliarda3960291999-02-26 11:11:13 +00001474 if (translate) TranslateMessage( msg );
1475 if (dispatch) DispatchMessageW( msg );
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001476 return ret;
1477}
1478
1479
Patrik Stridvall54fe8382000-04-06 20:21:16 +00001480/***********************************************************************
Alexandre Julliard01d63461997-01-20 19:43:45 +00001481 * GetDlgCtrlID16 (USER.277)
Alexandre Julliard0e607781993-11-03 19:23:37 +00001482 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +00001483INT16 WINAPI GetDlgCtrlID16( HWND16 hwnd )
Alexandre Julliard01d63461997-01-20 19:43:45 +00001484{
1485 WND *wndPtr = WIN_FindWndPtr(hwnd);
Francois Boisvert6b1b41c1999-03-14 17:25:32 +00001486 INT16 retvalue;
1487
1488 if (!wndPtr) return 0;
1489
1490 retvalue = wndPtr->wIDmenu;
1491 WIN_ReleaseWndPtr(wndPtr);
1492 return retvalue;
Alexandre Julliard01d63461997-01-20 19:43:45 +00001493}
1494
1495
Patrik Stridvall54fe8382000-04-06 20:21:16 +00001496/***********************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +00001497 * GetDlgCtrlID (USER32.234)
Alexandre Julliard01d63461997-01-20 19:43:45 +00001498 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001499INT WINAPI GetDlgCtrlID( HWND hwnd )
Alexandre Julliard0e607781993-11-03 19:23:37 +00001500{
Francois Boisvert6b1b41c1999-03-14 17:25:32 +00001501 INT retvalue;
Alexandre Julliard0e607781993-11-03 19:23:37 +00001502 WND *wndPtr = WIN_FindWndPtr(hwnd);
Francois Boisvert6b1b41c1999-03-14 17:25:32 +00001503 if (!wndPtr) return 0;
1504 retvalue = wndPtr->wIDmenu;
1505 WIN_ReleaseWndPtr(wndPtr);
1506 return retvalue;
Alexandre Julliard0e607781993-11-03 19:23:37 +00001507}
1508
1509
1510/***********************************************************************
Alexandre Julliard01d63461997-01-20 19:43:45 +00001511 * GetDlgItem16 (USER.91)
Alexandre Julliard0e607781993-11-03 19:23:37 +00001512 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +00001513HWND16 WINAPI GetDlgItem16( HWND16 hwndDlg, INT16 id )
Alexandre Julliard0e607781993-11-03 19:23:37 +00001514{
Alexandre Julliard59730ae1996-03-24 16:20:51 +00001515 WND *pWnd;
Alexandre Julliard0e607781993-11-03 19:23:37 +00001516
Alexandre Julliard59730ae1996-03-24 16:20:51 +00001517 if (!(pWnd = WIN_FindWndPtr( hwndDlg ))) return 0;
Francois Boisvert6b1b41c1999-03-14 17:25:32 +00001518 for (WIN_UpdateWndPtr(&pWnd,pWnd->child); pWnd; WIN_UpdateWndPtr(&pWnd,pWnd->next))
1519 if (pWnd->wIDmenu == (UINT16)id)
1520 {
1521 HWND16 retvalue = pWnd->hwndSelf;
1522 WIN_ReleaseWndPtr(pWnd);
1523 return retvalue;
1524 }
Alexandre Julliard01d63461997-01-20 19:43:45 +00001525 return 0;
1526}
1527
1528
1529/***********************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +00001530 * GetDlgItem (USER32.235)
Alexandre Julliard01d63461997-01-20 19:43:45 +00001531 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001532HWND WINAPI GetDlgItem( HWND hwndDlg, INT id )
Alexandre Julliard01d63461997-01-20 19:43:45 +00001533{
1534 WND *pWnd;
1535
1536 if (!(pWnd = WIN_FindWndPtr( hwndDlg ))) return 0;
Francois Boisvert6b1b41c1999-03-14 17:25:32 +00001537 for (WIN_UpdateWndPtr(&pWnd,pWnd->child); pWnd;WIN_UpdateWndPtr(&pWnd,pWnd->next))
1538 if (pWnd->wIDmenu == (UINT16)id)
1539 {
1540 HWND retvalue = pWnd->hwndSelf;
1541 WIN_ReleaseWndPtr(pWnd);
1542 return retvalue;
1543 }
Alexandre Julliard0e607781993-11-03 19:23:37 +00001544 return 0;
1545}
1546
1547
1548/*******************************************************************
Alexandre Julliard2d93d001996-05-21 15:01:41 +00001549 * SendDlgItemMessage16 (USER.101)
Alexandre Julliard0e607781993-11-03 19:23:37 +00001550 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +00001551LRESULT WINAPI SendDlgItemMessage16( HWND16 hwnd, INT16 id, UINT16 msg,
1552 WPARAM16 wParam, LPARAM lParam )
Alexandre Julliard0e607781993-11-03 19:23:37 +00001553{
Alexandre Julliard01d63461997-01-20 19:43:45 +00001554 HWND16 hwndCtrl = GetDlgItem16( hwnd, id );
Alexandre Julliard2d93d001996-05-21 15:01:41 +00001555 if (hwndCtrl) return SendMessage16( hwndCtrl, msg, wParam, lParam );
Alexandre Julliard0e607781993-11-03 19:23:37 +00001556 else return 0;
1557}
1558
1559
1560/*******************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +00001561 * SendDlgItemMessageA (USER32.452)
Alexandre Julliard0e607781993-11-03 19:23:37 +00001562 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001563LRESULT WINAPI SendDlgItemMessageA( HWND hwnd, INT id, UINT msg,
1564 WPARAM wParam, LPARAM lParam )
Alexandre Julliard0e607781993-11-03 19:23:37 +00001565{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001566 HWND hwndCtrl = GetDlgItem( hwnd, id );
1567 if (hwndCtrl) return SendMessageA( hwndCtrl, msg, wParam, lParam );
Alexandre Julliard2d93d001996-05-21 15:01:41 +00001568 else return 0;
Alexandre Julliard0e607781993-11-03 19:23:37 +00001569}
1570
1571
1572/*******************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +00001573 * SendDlgItemMessageW (USER32.453)
Alexandre Julliard0e607781993-11-03 19:23:37 +00001574 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001575LRESULT WINAPI SendDlgItemMessageW( HWND hwnd, INT id, UINT msg,
1576 WPARAM wParam, LPARAM lParam )
Alexandre Julliard2d93d001996-05-21 15:01:41 +00001577{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001578 HWND hwndCtrl = GetDlgItem( hwnd, id );
1579 if (hwndCtrl) return SendMessageW( hwndCtrl, msg, wParam, lParam );
Alexandre Julliard2d93d001996-05-21 15:01:41 +00001580 else return 0;
1581}
1582
1583
1584/*******************************************************************
1585 * SetDlgItemText16 (USER.92)
1586 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +00001587void WINAPI SetDlgItemText16( HWND16 hwnd, INT16 id, SEGPTR lpString )
Alexandre Julliard2d93d001996-05-21 15:01:41 +00001588{
1589 SendDlgItemMessage16( hwnd, id, WM_SETTEXT, 0, (LPARAM)lpString );
1590}
1591
1592
1593/*******************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +00001594 * SetDlgItemTextA (USER32.478)
Alexandre Julliard2d93d001996-05-21 15:01:41 +00001595 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001596BOOL WINAPI SetDlgItemTextA( HWND hwnd, INT id, LPCSTR lpString )
Alexandre Julliard2d93d001996-05-21 15:01:41 +00001597{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001598 return SendDlgItemMessageA( hwnd, id, WM_SETTEXT, 0, (LPARAM)lpString );
Alexandre Julliard2d93d001996-05-21 15:01:41 +00001599}
1600
1601
1602/*******************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +00001603 * SetDlgItemTextW (USER32.479)
Alexandre Julliard2d93d001996-05-21 15:01:41 +00001604 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001605BOOL WINAPI SetDlgItemTextW( HWND hwnd, INT id, LPCWSTR lpString )
Alexandre Julliard2d93d001996-05-21 15:01:41 +00001606{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001607 return SendDlgItemMessageW( hwnd, id, WM_SETTEXT, 0, (LPARAM)lpString );
Alexandre Julliard2d93d001996-05-21 15:01:41 +00001608}
1609
1610
1611/***********************************************************************
1612 * GetDlgItemText16 (USER.93)
1613 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +00001614INT16 WINAPI GetDlgItemText16( HWND16 hwnd, INT16 id, SEGPTR str, UINT16 len )
Alexandre Julliard2d93d001996-05-21 15:01:41 +00001615{
1616 return (INT16)SendDlgItemMessage16( hwnd, id, WM_GETTEXT,
1617 len, (LPARAM)str );
1618}
1619
1620
1621/***********************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +00001622 * GetDlgItemTextA (USER32.237)
Alexandre Julliard2d93d001996-05-21 15:01:41 +00001623 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001624INT WINAPI GetDlgItemTextA( HWND hwnd, INT id, LPSTR str, UINT len )
Alexandre Julliard2d93d001996-05-21 15:01:41 +00001625{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001626 return (INT)SendDlgItemMessageA( hwnd, id, WM_GETTEXT,
Alexandre Julliard2d93d001996-05-21 15:01:41 +00001627 len, (LPARAM)str );
1628}
1629
1630
1631/***********************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +00001632 * GetDlgItemTextW (USER32.238)
Alexandre Julliard2d93d001996-05-21 15:01:41 +00001633 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001634INT WINAPI GetDlgItemTextW( HWND hwnd, INT id, LPWSTR str, UINT len )
Alexandre Julliard2d93d001996-05-21 15:01:41 +00001635{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001636 return (INT)SendDlgItemMessageW( hwnd, id, WM_GETTEXT,
Alexandre Julliard2d93d001996-05-21 15:01:41 +00001637 len, (LPARAM)str );
1638}
1639
1640
1641/*******************************************************************
1642 * SetDlgItemInt16 (USER.94)
1643 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +00001644void WINAPI SetDlgItemInt16( HWND16 hwnd, INT16 id, UINT16 value, BOOL16 fSigned )
Alexandre Julliard0e607781993-11-03 19:23:37 +00001645{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001646 SetDlgItemInt( hwnd, (UINT)(UINT16)id, value, fSigned );
Alexandre Julliard0e607781993-11-03 19:23:37 +00001647}
1648
1649
Alexandre Julliard2d93d001996-05-21 15:01:41 +00001650/*******************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +00001651 * SetDlgItemInt (USER32.477)
Alexandre Julliard2d93d001996-05-21 15:01:41 +00001652 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001653BOOL WINAPI SetDlgItemInt( HWND hwnd, INT id, UINT value,
1654 BOOL fSigned )
Alexandre Julliard2d93d001996-05-21 15:01:41 +00001655{
1656 char str[20];
1657
Alexandre Julliarda3960291999-02-26 11:11:13 +00001658 if (fSigned) sprintf( str, "%d", (INT)value );
Alexandre Julliard2d93d001996-05-21 15:01:41 +00001659 else sprintf( str, "%u", value );
Alexandre Julliarda3960291999-02-26 11:11:13 +00001660 SendDlgItemMessageA( hwnd, id, WM_SETTEXT, 0, (LPARAM)str );
Eric Pouechb9544f11999-02-14 14:09:42 +00001661 return TRUE;
Alexandre Julliard2d93d001996-05-21 15:01:41 +00001662}
1663
1664
Alexandre Julliard0e607781993-11-03 19:23:37 +00001665/***********************************************************************
Alexandre Julliard01d63461997-01-20 19:43:45 +00001666 * GetDlgItemInt16 (USER.95)
Alexandre Julliard0e607781993-11-03 19:23:37 +00001667 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +00001668UINT16 WINAPI GetDlgItemInt16( HWND16 hwnd, INT16 id, BOOL16 *translated,
1669 BOOL16 fSigned )
Alexandre Julliard0e607781993-11-03 19:23:37 +00001670{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001671 UINT result;
1672 BOOL ok;
Alexandre Julliard01d63461997-01-20 19:43:45 +00001673
Alexandre Julliard0e607781993-11-03 19:23:37 +00001674 if (translated) *translated = FALSE;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001675 result = GetDlgItemInt( hwnd, (UINT)(UINT16)id, &ok, fSigned );
Alexandre Julliard01d63461997-01-20 19:43:45 +00001676 if (!ok) return 0;
1677 if (fSigned)
Alexandre Julliard0e607781993-11-03 19:23:37 +00001678 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001679 if (((INT)result < -32767) || ((INT)result > 32767)) return 0;
Alexandre Julliard0e607781993-11-03 19:23:37 +00001680 }
Alexandre Julliard01d63461997-01-20 19:43:45 +00001681 else
1682 {
1683 if (result > 65535) return 0;
1684 }
1685 if (translated) *translated = TRUE;
1686 return (UINT16)result;
Alexandre Julliard0e607781993-11-03 19:23:37 +00001687}
1688
1689
1690/***********************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +00001691 * GetDlgItemInt (USER32.236)
Alexandre Julliard0e607781993-11-03 19:23:37 +00001692 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001693UINT WINAPI GetDlgItemInt( HWND hwnd, INT id, BOOL *translated,
1694 BOOL fSigned )
Alexandre Julliard01d63461997-01-20 19:43:45 +00001695{
1696 char str[30];
1697 char * endptr;
1698 long result = 0;
1699
1700 if (translated) *translated = FALSE;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001701 if (!SendDlgItemMessageA(hwnd, id, WM_GETTEXT, sizeof(str), (LPARAM)str))
Alexandre Julliard01d63461997-01-20 19:43:45 +00001702 return 0;
1703 if (fSigned)
1704 {
1705 result = strtol( str, &endptr, 10 );
1706 if (!endptr || (endptr == str)) /* Conversion was unsuccessful */
1707 return 0;
1708 if (((result == LONG_MIN) || (result == LONG_MAX)) && (errno==ERANGE))
1709 return 0;
1710 }
1711 else
1712 {
1713 result = strtoul( str, &endptr, 10 );
1714 if (!endptr || (endptr == str)) /* Conversion was unsuccessful */
1715 return 0;
1716 if ((result == ULONG_MAX) && (errno == ERANGE)) return 0;
1717 }
1718 if (translated) *translated = TRUE;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001719 return (UINT)result;
Alexandre Julliard01d63461997-01-20 19:43:45 +00001720}
1721
1722
1723/***********************************************************************
1724 * CheckDlgButton16 (USER.97)
1725 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +00001726BOOL16 WINAPI CheckDlgButton16( HWND16 hwnd, INT16 id, UINT16 check )
Alexandre Julliard0e607781993-11-03 19:23:37 +00001727{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001728 SendDlgItemMessageA( hwnd, id, BM_SETCHECK, check, 0 );
Alexandre Julliard7e56f681996-01-31 19:02:28 +00001729 return TRUE;
Alexandre Julliard0e607781993-11-03 19:23:37 +00001730}
1731
1732
1733/***********************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +00001734 * CheckDlgButton (USER32.45)
Alexandre Julliard0e607781993-11-03 19:23:37 +00001735 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001736BOOL WINAPI CheckDlgButton( HWND hwnd, INT id, UINT check )
Alexandre Julliard0e607781993-11-03 19:23:37 +00001737{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001738 SendDlgItemMessageA( hwnd, id, BM_SETCHECK, check, 0 );
Alexandre Julliard01d63461997-01-20 19:43:45 +00001739 return TRUE;
Alexandre Julliard0e607781993-11-03 19:23:37 +00001740}
1741
1742
1743/***********************************************************************
Alexandre Julliard01d63461997-01-20 19:43:45 +00001744 * IsDlgButtonChecked16 (USER.98)
Alexandre Julliard0e607781993-11-03 19:23:37 +00001745 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +00001746UINT16 WINAPI IsDlgButtonChecked16( HWND16 hwnd, UINT16 id )
Alexandre Julliard01d63461997-01-20 19:43:45 +00001747{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001748 return (UINT16)SendDlgItemMessageA( hwnd, id, BM_GETCHECK, 0, 0 );
Alexandre Julliard01d63461997-01-20 19:43:45 +00001749}
1750
1751
1752/***********************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +00001753 * IsDlgButtonChecked (USER32.344)
Alexandre Julliard01d63461997-01-20 19:43:45 +00001754 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001755UINT WINAPI IsDlgButtonChecked( HWND hwnd, UINT id )
Alexandre Julliard01d63461997-01-20 19:43:45 +00001756{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001757 return (UINT)SendDlgItemMessageA( hwnd, id, BM_GETCHECK, 0, 0 );
Alexandre Julliard01d63461997-01-20 19:43:45 +00001758}
1759
1760
1761/***********************************************************************
1762 * CheckRadioButton16 (USER.96)
1763 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +00001764BOOL16 WINAPI CheckRadioButton16( HWND16 hwndDlg, UINT16 firstID,
1765 UINT16 lastID, UINT16 checkID )
Alexandre Julliard01d63461997-01-20 19:43:45 +00001766{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001767 return CheckRadioButton( hwndDlg, firstID, lastID, checkID );
Alexandre Julliard01d63461997-01-20 19:43:45 +00001768}
1769
1770
1771/***********************************************************************
Luc Tourangeau8e238d01999-05-29 14:19:42 +00001772 * CheckRB
1773 *
1774 * Callback function used to check/uncheck radio buttons that fall
1775 * within a specific range of IDs.
1776 */
1777static BOOL CALLBACK CheckRB(HWND hwndChild, LPARAM lParam)
1778{
1779 LONG lChildID = GetWindowLongA(hwndChild, GWL_ID);
1780 RADIOGROUP *lpRadioGroup = (RADIOGROUP *) lParam;
1781
1782 if ((lChildID >= lpRadioGroup->firstID) &&
1783 (lChildID <= lpRadioGroup->lastID))
1784 {
1785 if (lChildID == lpRadioGroup->checkID)
1786 {
1787 SendMessageA(hwndChild, BM_SETCHECK, BST_CHECKED, 0);
1788 }
1789 else
1790 {
1791 SendMessageA(hwndChild, BM_SETCHECK, BST_UNCHECKED, 0);
1792 }
1793 }
1794
1795 return TRUE;
1796}
1797
1798
1799/***********************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +00001800 * CheckRadioButton (USER32.48)
Alexandre Julliard01d63461997-01-20 19:43:45 +00001801 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001802BOOL WINAPI CheckRadioButton( HWND hwndDlg, UINT firstID,
Luc Tourangeau8e238d01999-05-29 14:19:42 +00001803 UINT lastID, UINT checkID )
Alexandre Julliard0e607781993-11-03 19:23:37 +00001804{
Luc Tourangeau8e238d01999-05-29 14:19:42 +00001805 RADIOGROUP radioGroup;
Francois Boisvert3a3cd9f1999-03-28 12:42:52 +00001806
Luc Tourangeau8e238d01999-05-29 14:19:42 +00001807 /* perform bounds checking for a radio button group */
1808 radioGroup.firstID = min(min(firstID, lastID), checkID);
1809 radioGroup.lastID = max(max(firstID, lastID), checkID);
1810 radioGroup.checkID = checkID;
1811
1812 return EnumChildWindows(hwndDlg, (WNDENUMPROC)CheckRB,
1813 (LPARAM)&radioGroup);
Alexandre Julliard0e607781993-11-03 19:23:37 +00001814}
1815
1816
1817/***********************************************************************
Alexandre Julliardc7c217b1998-04-13 12:21:30 +00001818 * GetDialogBaseUnits (USER.243) (USER32.233)
Alexandre Julliard0e607781993-11-03 19:23:37 +00001819 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +00001820DWORD WINAPI GetDialogBaseUnits(void)
Alexandre Julliard0e607781993-11-03 19:23:37 +00001821{
1822 return MAKELONG( xBaseUnit, yBaseUnit );
1823}
1824
1825
1826/***********************************************************************
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +00001827 * MapDialogRect16 (USER.103)
Alexandre Julliard0e607781993-11-03 19:23:37 +00001828 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +00001829void WINAPI MapDialogRect16( HWND16 hwnd, LPRECT16 rect )
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +00001830{
1831 DIALOGINFO * dlgInfo;
1832 WND * wndPtr = WIN_FindWndPtr( hwnd );
1833 if (!wndPtr) return;
1834 dlgInfo = (DIALOGINFO *)wndPtr->wExtra;
Francis Beaudeteb13dd41999-09-03 15:14:27 +00001835 rect->left = MulDiv(rect->left, dlgInfo->xBaseUnit, 4);
1836 rect->right = MulDiv(rect->right, dlgInfo->xBaseUnit, 4);
1837 rect->top = MulDiv(rect->top, dlgInfo->yBaseUnit, 8);
1838 rect->bottom = MulDiv(rect->bottom, dlgInfo->yBaseUnit, 8);
Francois Boisvert6b1b41c1999-03-14 17:25:32 +00001839 WIN_ReleaseWndPtr(wndPtr);
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +00001840}
1841
1842
1843/***********************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +00001844 * MapDialogRect (USER32.382)
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +00001845 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001846BOOL WINAPI MapDialogRect( HWND hwnd, LPRECT rect )
Alexandre Julliard0e607781993-11-03 19:23:37 +00001847{
1848 DIALOGINFO * dlgInfo;
1849 WND * wndPtr = WIN_FindWndPtr( hwnd );
Eric Pouechb9544f11999-02-14 14:09:42 +00001850 if (!wndPtr) return FALSE;
Alexandre Julliard0e607781993-11-03 19:23:37 +00001851 dlgInfo = (DIALOGINFO *)wndPtr->wExtra;
Francis Beaudeteb13dd41999-09-03 15:14:27 +00001852 rect->left = MulDiv(rect->left, dlgInfo->xBaseUnit, 4);
1853 rect->right = MulDiv(rect->right, dlgInfo->xBaseUnit, 4);
1854 rect->top = MulDiv(rect->top, dlgInfo->yBaseUnit, 8);
1855 rect->bottom = MulDiv(rect->bottom, dlgInfo->yBaseUnit, 8);
Francois Boisvert6b1b41c1999-03-14 17:25:32 +00001856 WIN_ReleaseWndPtr(wndPtr);
Eric Pouechb9544f11999-02-14 14:09:42 +00001857 return TRUE;
Alexandre Julliard0e607781993-11-03 19:23:37 +00001858}
1859
1860
1861/***********************************************************************
Alexandre Julliardbf9130a1996-10-13 17:45:47 +00001862 * GetNextDlgGroupItem16 (USER.227)
Alexandre Julliard0e607781993-11-03 19:23:37 +00001863 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +00001864HWND16 WINAPI GetNextDlgGroupItem16( HWND16 hwndDlg, HWND16 hwndCtrl,
1865 BOOL16 fPrevious )
Alexandre Julliard0e607781993-11-03 19:23:37 +00001866{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001867 return (HWND16)GetNextDlgGroupItem( hwndDlg, hwndCtrl, fPrevious );
Alexandre Julliard0e607781993-11-03 19:23:37 +00001868}
1869
1870
1871/***********************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +00001872 * GetNextDlgGroupItem (USER32.275)
Alexandre Julliard0e607781993-11-03 19:23:37 +00001873 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001874HWND WINAPI GetNextDlgGroupItem( HWND hwndDlg, HWND hwndCtrl,
1875 BOOL fPrevious )
Alexandre Julliard0e607781993-11-03 19:23:37 +00001876{
Francois Boisvert6b1b41c1999-03-14 17:25:32 +00001877 WND *pWnd = NULL,
1878 *pWndLast = NULL,
1879 *pWndCtrl = NULL,
1880 *pWndDlg = NULL;
1881 HWND retvalue;
Alexandre Julliard0e607781993-11-03 19:23:37 +00001882
Alexandre Julliarde6b82e71999-12-12 20:17:59 +00001883 if(hwndCtrl)
1884 {
1885 /* if the hwndCtrl is the child of the control in the hwndDlg then the hwndDlg has to be the parent of the hwndCtrl */
1886 if(GetParent(hwndCtrl) != hwndDlg && GetParent(GetParent(hwndCtrl)) == hwndDlg)
1887 hwndDlg = GetParent(hwndCtrl);
1888 }
1889
Alexandre Julliard59730ae1996-03-24 16:20:51 +00001890 if (!(pWndDlg = WIN_FindWndPtr( hwndDlg ))) return 0;
Alexandre Julliardbf9130a1996-10-13 17:45:47 +00001891 if (hwndCtrl)
1892 {
Francois Boisvert6b1b41c1999-03-14 17:25:32 +00001893 if (!(pWndCtrl = WIN_FindWndPtr( hwndCtrl )))
1894 {
1895 retvalue = 0;
1896 goto END;
1897 }
Alexandre Julliardbf9130a1996-10-13 17:45:47 +00001898 /* Make sure hwndCtrl is a top-level child */
1899 while ((pWndCtrl->dwStyle & WS_CHILD) && (pWndCtrl->parent != pWndDlg))
Francois Boisvert6b1b41c1999-03-14 17:25:32 +00001900 WIN_UpdateWndPtr(&pWndCtrl,pWndCtrl->parent);
1901 if (pWndCtrl->parent != pWndDlg)
1902 {
1903 retvalue = 0;
1904 goto END;
1905 }
Alexandre Julliardbf9130a1996-10-13 17:45:47 +00001906 }
1907 else
1908 {
1909 /* No ctrl specified -> start from the beginning */
Francois Boisvert6b1b41c1999-03-14 17:25:32 +00001910 if (!(pWndCtrl = WIN_LockWndPtr(pWndDlg->child)))
1911 {
1912 retvalue = 0;
1913 goto END;
1914 }
1915 if (fPrevious)
1916 while (pWndCtrl->next) WIN_UpdateWndPtr(&pWndCtrl,pWndCtrl->next);
Alexandre Julliardbf9130a1996-10-13 17:45:47 +00001917 }
1918
Francois Boisvert6b1b41c1999-03-14 17:25:32 +00001919 pWndLast = WIN_LockWndPtr(pWndCtrl);
1920 pWnd = WIN_LockWndPtr(pWndCtrl->next);
1921
Alexandre Julliardbf9130a1996-10-13 17:45:47 +00001922 while (1)
1923 {
1924 if (!pWnd || (pWnd->dwStyle & WS_GROUP))
1925 {
1926 /* Wrap-around to the beginning of the group */
Ulrich Weigand9c3b18f1999-05-17 14:54:09 +00001927 WND *pWndTemp;
1928
1929 WIN_UpdateWndPtr( &pWnd, pWndDlg->child );
1930 for ( pWndTemp = WIN_LockWndPtr( pWnd );
1931 pWndTemp;
1932 WIN_UpdateWndPtr( &pWndTemp, pWndTemp->next) )
Alexandre Julliardbf9130a1996-10-13 17:45:47 +00001933 {
Ulrich Weigand9c3b18f1999-05-17 14:54:09 +00001934 if (pWndTemp->dwStyle & WS_GROUP) WIN_UpdateWndPtr( &pWnd, pWndTemp );
1935 if (pWndTemp == pWndCtrl) break;
Alexandre Julliardbf9130a1996-10-13 17:45:47 +00001936 }
Ulrich Weigand9c3b18f1999-05-17 14:54:09 +00001937 WIN_ReleaseWndPtr( pWndTemp );
Alexandre Julliardbf9130a1996-10-13 17:45:47 +00001938 }
1939 if (pWnd == pWndCtrl) break;
1940 if ((pWnd->dwStyle & WS_VISIBLE) && !(pWnd->dwStyle & WS_DISABLED))
1941 {
Francois Boisvert6b1b41c1999-03-14 17:25:32 +00001942 WIN_UpdateWndPtr(&pWndLast,pWnd);
Alexandre Julliardbf9130a1996-10-13 17:45:47 +00001943 if (!fPrevious) break;
1944 }
Francois Boisvert6b1b41c1999-03-14 17:25:32 +00001945 WIN_UpdateWndPtr(&pWnd,pWnd->next);
Alexandre Julliardbf9130a1996-10-13 17:45:47 +00001946 }
Francois Boisvert6b1b41c1999-03-14 17:25:32 +00001947 retvalue = pWndLast->hwndSelf;
1948
1949 WIN_ReleaseWndPtr(pWndLast);
1950 WIN_ReleaseWndPtr(pWnd);
1951END:
1952 WIN_ReleaseWndPtr(pWndCtrl);
1953 WIN_ReleaseWndPtr(pWndDlg);
1954
1955 return retvalue;
Alexandre Julliardbf9130a1996-10-13 17:45:47 +00001956}
1957
1958
1959/***********************************************************************
1960 * GetNextDlgTabItem16 (USER.228)
1961 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +00001962HWND16 WINAPI GetNextDlgTabItem16( HWND16 hwndDlg, HWND16 hwndCtrl,
1963 BOOL16 fPrevious )
Alexandre Julliardbf9130a1996-10-13 17:45:47 +00001964{
Alexandre Julliarda3960291999-02-26 11:11:13 +00001965 return (HWND16)GetNextDlgTabItem( hwndDlg, hwndCtrl, fPrevious );
Alexandre Julliardbf9130a1996-10-13 17:45:47 +00001966}
1967
Ulrich Czekalla1720c981999-10-31 21:35:35 +00001968/***********************************************************************
1969 * DIALOG_GetNextTabItem
1970 *
1971 * Helper for GetNextDlgTabItem
1972 */
1973static HWND DIALOG_GetNextTabItem( HWND hwndMain, HWND hwndDlg, HWND hwndCtrl, BOOL fPrevious )
1974{
1975 LONG dsStyle;
1976 LONG exStyle;
1977 UINT wndSearch = fPrevious ? GW_HWNDPREV : GW_HWNDNEXT;
1978 HWND retWnd = 0;
1979 HWND hChildFirst = 0;
1980
1981 if(!hwndCtrl)
1982 {
1983 hChildFirst = GetWindow(hwndDlg,GW_CHILD);
1984 if(fPrevious) hChildFirst = GetWindow(hChildFirst,GW_HWNDLAST);
1985 }
1986 else
1987 {
1988 HWND hParent = GetParent(hwndCtrl);
1989 BOOL bValid = FALSE;
1990 while( hParent)
1991 {
1992 if(hParent == hwndMain)
1993 {
1994 bValid = TRUE;
1995 break;
1996 }
1997 hParent = GetParent(hParent);
1998 }
1999 if(bValid)
2000 {
2001 hChildFirst = GetWindow(hwndCtrl,wndSearch);
2002 if(!hChildFirst)
2003 {
2004 if(GetParent(hwndCtrl) != hwndMain)
2005 hChildFirst = GetWindow(GetParent(hwndCtrl),wndSearch);
2006 else
2007 {
2008 if(fPrevious)
2009 hChildFirst = GetWindow(hwndCtrl,GW_HWNDLAST);
2010 else
2011 hChildFirst = GetWindow(hwndCtrl,GW_HWNDFIRST);
2012 }
2013 }
2014 }
2015 }
2016 while(hChildFirst)
2017 {
2018 BOOL bCtrl = FALSE;
2019 while(hChildFirst)
2020 {
2021 dsStyle = GetWindowLongA(hChildFirst,GWL_STYLE);
2022 exStyle = GetWindowLongA(hChildFirst,GWL_EXSTYLE);
Alexandre Julliarde6b82e71999-12-12 20:17:59 +00002023 if( (dsStyle & DS_CONTROL || exStyle & WS_EX_CONTROLPARENT) && (dsStyle & WS_VISIBLE) && !(dsStyle & WS_DISABLED))
Ulrich Czekalla1720c981999-10-31 21:35:35 +00002024 {
2025 bCtrl=TRUE;
2026 break;
2027 }
2028 else if( (dsStyle & WS_TABSTOP) && (dsStyle & WS_VISIBLE) && !(dsStyle & WS_DISABLED))
2029 break;
2030 hChildFirst = GetWindow(hChildFirst,wndSearch);
2031 }
2032 if(hChildFirst)
2033 {
2034 if(bCtrl)
2035 retWnd = DIALOG_GetNextTabItem(hwndMain,hChildFirst,(HWND)NULL,fPrevious );
2036 else
2037 retWnd = hChildFirst;
2038 }
2039 if(retWnd) break;
2040 hChildFirst = GetWindow(hChildFirst,wndSearch);
2041 }
2042 if(!retWnd && hwndCtrl)
2043 {
2044 HWND hParent = GetParent(hwndCtrl);
2045 while(hParent)
2046 {
2047 if(hParent == hwndMain) break;
2048 retWnd = DIALOG_GetNextTabItem(hwndMain,GetParent(hParent),hParent,fPrevious );
2049 if(retWnd) break;
2050 hParent = GetParent(hParent);
2051 }
2052 if(!retWnd)
2053 retWnd = DIALOG_GetNextTabItem(hwndMain,hwndMain,(HWND)NULL,fPrevious );
2054 }
2055 return retWnd;
2056}
Alexandre Julliardbf9130a1996-10-13 17:45:47 +00002057
2058/***********************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +00002059 * GetNextDlgTabItem (USER32.276)
Alexandre Julliardbf9130a1996-10-13 17:45:47 +00002060 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00002061HWND WINAPI GetNextDlgTabItem( HWND hwndDlg, HWND hwndCtrl,
2062 BOOL fPrevious )
Alexandre Julliardbf9130a1996-10-13 17:45:47 +00002063{
Ulrich Czekalla1720c981999-10-31 21:35:35 +00002064 return DIALOG_GetNextTabItem(hwndDlg,hwndDlg,hwndCtrl,fPrevious);
Alexandre Julliard0e607781993-11-03 19:23:37 +00002065}
Alexandre Julliard75d86e11996-11-17 18:59:11 +00002066
Alexandre Julliard75d86e11996-11-17 18:59:11 +00002067/**********************************************************************
2068 * DIALOG_DlgDirSelect
2069 *
2070 * Helper function for DlgDirSelect*
2071 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00002072static BOOL DIALOG_DlgDirSelect( HWND hwnd, LPSTR str, INT len,
2073 INT id, BOOL win32, BOOL unicode,
2074 BOOL combo )
Alexandre Julliard75d86e11996-11-17 18:59:11 +00002075{
2076 char *buffer, *ptr;
Alexandre Julliarda3960291999-02-26 11:11:13 +00002077 INT item, size;
2078 BOOL ret;
2079 HWND listbox = GetDlgItem( hwnd, id );
Alexandre Julliard75d86e11996-11-17 18:59:11 +00002080
Alexandre Julliard359f497e1999-07-04 16:02:24 +00002081 TRACE("%04x '%s' %d\n", hwnd, str, id );
Alexandre Julliard75d86e11996-11-17 18:59:11 +00002082 if (!listbox) return FALSE;
2083 if (win32)
2084 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00002085 item = SendMessageA(listbox, combo ? CB_GETCURSEL
2086 : LB_GETCURSEL, 0, 0 );
Alexandre Julliard75d86e11996-11-17 18:59:11 +00002087 if (item == LB_ERR) return FALSE;
Alexandre Julliarda3960291999-02-26 11:11:13 +00002088 size = SendMessageA(listbox, combo ? CB_GETLBTEXTLEN
2089 : LB_GETTEXTLEN, 0, 0 );
Alexandre Julliard75d86e11996-11-17 18:59:11 +00002090 if (size == LB_ERR) return FALSE;
2091 }
2092 else
2093 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00002094 item = SendMessageA(listbox, combo ? CB_GETCURSEL16
Alexandre Julliard75d86e11996-11-17 18:59:11 +00002095 : LB_GETCURSEL16, 0, 0 );
2096 if (item == LB_ERR) return FALSE;
Alexandre Julliarda3960291999-02-26 11:11:13 +00002097 size = SendMessageA(listbox, combo ? CB_GETLBTEXTLEN16
Alexandre Julliard75d86e11996-11-17 18:59:11 +00002098 : LB_GETTEXTLEN16, 0, 0 );
2099 if (size == LB_ERR) return FALSE;
2100 }
2101
2102 if (!(buffer = SEGPTR_ALLOC( size+1 ))) return FALSE;
2103
2104 if (win32)
Alexandre Julliarda3960291999-02-26 11:11:13 +00002105 SendMessageA( listbox, combo ? CB_GETLBTEXT : LB_GETTEXT,
Alexandre Julliard75d86e11996-11-17 18:59:11 +00002106 item, (LPARAM)buffer );
2107 else
2108 SendMessage16( listbox, combo ? CB_GETLBTEXT16 : LB_GETTEXT16,
2109 item, (LPARAM)SEGPTR_GET(buffer) );
2110
2111 if ((ret = (buffer[0] == '['))) /* drive or directory */
2112 {
2113 if (buffer[1] == '-') /* drive */
2114 {
2115 buffer[3] = ':';
2116 buffer[4] = 0;
2117 ptr = buffer + 2;
2118 }
2119 else
2120 {
2121 buffer[strlen(buffer)-1] = '\\';
2122 ptr = buffer + 1;
2123 }
2124 }
2125 else ptr = buffer;
2126
2127 if (unicode) lstrcpynAtoW( (LPWSTR)str, ptr, len );
Alexandre Julliarda3960291999-02-26 11:11:13 +00002128 else lstrcpynA( str, ptr, len );
Alexandre Julliard75d86e11996-11-17 18:59:11 +00002129 SEGPTR_FREE( buffer );
Alexandre Julliard359f497e1999-07-04 16:02:24 +00002130 TRACE("Returning %d '%s'\n", ret, str );
Alexandre Julliard75d86e11996-11-17 18:59:11 +00002131 return ret;
2132}
2133
2134
2135/**********************************************************************
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00002136 * DIALOG_DlgDirList
2137 *
2138 * Helper function for DlgDirList*
2139 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00002140static INT DIALOG_DlgDirList( HWND hDlg, LPSTR spec, INT idLBox,
2141 INT idStatic, UINT attrib, BOOL combo )
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00002142{
2143 int drive;
Alexandre Julliarda3960291999-02-26 11:11:13 +00002144 HWND hwnd;
Alexandre Julliard84c70f51997-05-09 08:40:27 +00002145 LPSTR orig_spec = spec;
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00002146
2147#define SENDMSG(msg,wparam,lparam) \
Alexandre Julliarda3960291999-02-26 11:11:13 +00002148 ((attrib & DDL_POSTMSGS) ? PostMessageA( hwnd, msg, wparam, lparam ) \
2149 : SendMessageA( hwnd, msg, wparam, lparam ))
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00002150
Alexandre Julliard359f497e1999-07-04 16:02:24 +00002151 TRACE("%04x '%s' %d %d %04x\n",
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00002152 hDlg, spec ? spec : "NULL", idLBox, idStatic, attrib );
2153
2154 if (spec && spec[0] && (spec[1] == ':'))
2155 {
2156 drive = toupper( spec[0] ) - 'A';
2157 spec += 2;
2158 if (!DRIVE_SetCurrentDrive( drive )) return FALSE;
2159 }
2160 else drive = DRIVE_GetCurrentDrive();
2161
Alexandre Julliard84c70f51997-05-09 08:40:27 +00002162 /* If the path exists and is a directory, chdir to it */
2163 if (!spec || !spec[0] || DRIVE_Chdir( drive, spec )) spec = "*.*";
2164 else
2165 {
2166 char *p, *p2;
2167 p = spec;
2168 if ((p2 = strrchr( p, '\\' ))) p = p2;
2169 if ((p2 = strrchr( p, '/' ))) p = p2;
2170 if (p != spec)
2171 {
2172 char sep = *p;
2173 *p = 0;
2174 if (!DRIVE_Chdir( drive, spec ))
2175 {
2176 *p = sep; /* Restore the original spec */
2177 return FALSE;
2178 }
2179 spec = p + 1;
2180 }
2181 }
2182
Alexandre Julliard359f497e1999-07-04 16:02:24 +00002183 TRACE("path=%c:\\%s mask=%s\n",
Alexandre Julliard84c70f51997-05-09 08:40:27 +00002184 'A' + drive, DRIVE_GetDosCwd(drive), spec );
2185
Alexandre Julliarda3960291999-02-26 11:11:13 +00002186 if (idLBox && ((hwnd = GetDlgItem( hDlg, idLBox )) != 0))
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00002187 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00002188 SENDMSG( combo ? CB_RESETCONTENT : LB_RESETCONTENT, 0, 0 );
Alexandre Julliard84c70f51997-05-09 08:40:27 +00002189 if (attrib & DDL_DIRECTORY)
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00002190 {
Alexandre Julliard84c70f51997-05-09 08:40:27 +00002191 if (!(attrib & DDL_EXCLUSIVE))
2192 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00002193 if (SENDMSG( combo ? CB_DIR : LB_DIR,
Alexandre Julliard84c70f51997-05-09 08:40:27 +00002194 attrib & ~(DDL_DIRECTORY | DDL_DRIVES),
2195 (LPARAM)spec ) == LB_ERR)
2196 return FALSE;
2197 }
Alexandre Julliarda3960291999-02-26 11:11:13 +00002198 if (SENDMSG( combo ? CB_DIR : LB_DIR,
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00002199 (attrib & (DDL_DIRECTORY | DDL_DRIVES)) | DDL_EXCLUSIVE,
2200 (LPARAM)"*.*" ) == LB_ERR)
2201 return FALSE;
2202 }
2203 else
2204 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00002205 if (SENDMSG( combo ? CB_DIR : LB_DIR, attrib,
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00002206 (LPARAM)spec ) == LB_ERR)
2207 return FALSE;
2208 }
2209 }
2210
Alexandre Julliarda3960291999-02-26 11:11:13 +00002211 if (idStatic && ((hwnd = GetDlgItem( hDlg, idStatic )) != 0))
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00002212 {
2213 char temp[512];
2214 int drive = DRIVE_GetCurrentDrive();
2215 strcpy( temp, "A:\\" );
2216 temp[0] += drive;
Alexandre Julliarda3960291999-02-26 11:11:13 +00002217 lstrcpynA( temp + 3, DRIVE_GetDosCwd(drive), sizeof(temp)-3 );
2218 CharLowerA( temp );
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00002219 /* Can't use PostMessage() here, because the string is on the stack */
Alexandre Julliarda3960291999-02-26 11:11:13 +00002220 SetDlgItemTextA( hDlg, idStatic, temp );
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00002221 }
Alexandre Julliard84c70f51997-05-09 08:40:27 +00002222
2223 if (orig_spec && (spec != orig_spec))
2224 {
2225 /* Update the original file spec */
2226 char *p = spec;
2227 while ((*orig_spec++ = *p++));
2228 }
2229
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00002230 return TRUE;
2231#undef SENDMSG
2232}
2233
2234
2235/**********************************************************************
Alexandre Julliard84c70f51997-05-09 08:40:27 +00002236 * DIALOG_DlgDirListW
2237 *
Patrik Stridvall2d6457c2000-03-28 20:22:59 +00002238 * Helper function for DlgDirList*W
Alexandre Julliard84c70f51997-05-09 08:40:27 +00002239 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00002240static INT DIALOG_DlgDirListW( HWND hDlg, LPWSTR spec, INT idLBox,
2241 INT idStatic, UINT attrib, BOOL combo )
Alexandre Julliard84c70f51997-05-09 08:40:27 +00002242{
2243 if (spec)
2244 {
2245 LPSTR specA = HEAP_strdupWtoA( GetProcessHeap(), 0, spec );
Alexandre Julliarda3960291999-02-26 11:11:13 +00002246 INT ret = DIALOG_DlgDirList( hDlg, specA, idLBox, idStatic,
Alexandre Julliard84c70f51997-05-09 08:40:27 +00002247 attrib, combo );
2248 lstrcpyAtoW( spec, specA );
2249 HeapFree( GetProcessHeap(), 0, specA );
2250 return ret;
2251 }
2252 return DIALOG_DlgDirList( hDlg, NULL, idLBox, idStatic, attrib, combo );
2253}
2254
2255
2256/**********************************************************************
Alexandre Julliard75d86e11996-11-17 18:59:11 +00002257 * DlgDirSelect (USER.99)
2258 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00002259BOOL16 WINAPI DlgDirSelect16( HWND16 hwnd, LPSTR str, INT16 id )
Alexandre Julliard75d86e11996-11-17 18:59:11 +00002260{
2261 return DlgDirSelectEx16( hwnd, str, 128, id );
2262}
2263
2264
2265/**********************************************************************
2266 * DlgDirSelectComboBox (USER.194)
2267 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00002268BOOL16 WINAPI DlgDirSelectComboBox16( HWND16 hwnd, LPSTR str, INT16 id )
Alexandre Julliard75d86e11996-11-17 18:59:11 +00002269{
2270 return DlgDirSelectComboBoxEx16( hwnd, str, 128, id );
2271}
2272
2273
2274/**********************************************************************
2275 * DlgDirSelectEx16 (USER.422)
2276 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +00002277BOOL16 WINAPI DlgDirSelectEx16( HWND16 hwnd, LPSTR str, INT16 len, INT16 id )
Alexandre Julliard75d86e11996-11-17 18:59:11 +00002278{
2279 return DIALOG_DlgDirSelect( hwnd, str, len, id, FALSE, FALSE, FALSE );
2280}
2281
2282
2283/**********************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +00002284 * DlgDirSelectExA (USER32.149)
Alexandre Julliard75d86e11996-11-17 18:59:11 +00002285 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00002286BOOL WINAPI DlgDirSelectExA( HWND hwnd, LPSTR str, INT len, INT id )
Alexandre Julliard75d86e11996-11-17 18:59:11 +00002287{
2288 return DIALOG_DlgDirSelect( hwnd, str, len, id, TRUE, FALSE, FALSE );
2289}
2290
2291
2292/**********************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +00002293 * DlgDirSelectExW (USER32.150)
Alexandre Julliard75d86e11996-11-17 18:59:11 +00002294 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00002295BOOL WINAPI DlgDirSelectExW( HWND hwnd, LPWSTR str, INT len, INT id )
Alexandre Julliard75d86e11996-11-17 18:59:11 +00002296{
2297 return DIALOG_DlgDirSelect( hwnd, (LPSTR)str, len, id, TRUE, TRUE, FALSE );
2298}
2299
2300
2301/**********************************************************************
2302 * DlgDirSelectComboBoxEx16 (USER.423)
2303 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +00002304BOOL16 WINAPI DlgDirSelectComboBoxEx16( HWND16 hwnd, LPSTR str, INT16 len,
2305 INT16 id )
Alexandre Julliard75d86e11996-11-17 18:59:11 +00002306{
2307 return DIALOG_DlgDirSelect( hwnd, str, len, id, FALSE, FALSE, TRUE );
2308}
2309
2310
2311/**********************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +00002312 * DlgDirSelectComboBoxExA (USER32.147)
Alexandre Julliard75d86e11996-11-17 18:59:11 +00002313 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00002314BOOL WINAPI DlgDirSelectComboBoxExA( HWND hwnd, LPSTR str, INT len,
2315 INT id )
Alexandre Julliard75d86e11996-11-17 18:59:11 +00002316{
2317 return DIALOG_DlgDirSelect( hwnd, str, len, id, TRUE, FALSE, TRUE );
2318}
2319
2320
2321/**********************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +00002322 * DlgDirSelectComboBoxExW (USER32.148)
Alexandre Julliard75d86e11996-11-17 18:59:11 +00002323 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00002324BOOL WINAPI DlgDirSelectComboBoxExW( HWND hwnd, LPWSTR str, INT len,
2325 INT id)
Alexandre Julliard75d86e11996-11-17 18:59:11 +00002326{
2327 return DIALOG_DlgDirSelect( hwnd, (LPSTR)str, len, id, TRUE, TRUE, TRUE );
2328}
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00002329
2330
2331/**********************************************************************
2332 * DlgDirList16 (USER.100)
2333 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +00002334INT16 WINAPI DlgDirList16( HWND16 hDlg, LPSTR spec, INT16 idLBox,
2335 INT16 idStatic, UINT16 attrib )
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00002336{
2337 return DIALOG_DlgDirList( hDlg, spec, idLBox, idStatic, attrib, FALSE );
2338}
2339
2340
2341/**********************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +00002342 * DlgDirListA (USER32.143)
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00002343 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00002344INT WINAPI DlgDirListA( HWND hDlg, LPSTR spec, INT idLBox,
2345 INT idStatic, UINT attrib )
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00002346{
2347 return DIALOG_DlgDirList( hDlg, spec, idLBox, idStatic, attrib, FALSE );
2348}
2349
2350
2351/**********************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +00002352 * DlgDirListW (USER32.146)
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00002353 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00002354INT WINAPI DlgDirListW( HWND hDlg, LPWSTR spec, INT idLBox,
2355 INT idStatic, UINT attrib )
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00002356{
Alexandre Julliard84c70f51997-05-09 08:40:27 +00002357 return DIALOG_DlgDirListW( hDlg, spec, idLBox, idStatic, attrib, FALSE );
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00002358}
2359
2360
2361/**********************************************************************
2362 * DlgDirListComboBox16 (USER.195)
2363 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +00002364INT16 WINAPI DlgDirListComboBox16( HWND16 hDlg, LPSTR spec, INT16 idCBox,
2365 INT16 idStatic, UINT16 attrib )
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00002366{
2367 return DIALOG_DlgDirList( hDlg, spec, idCBox, idStatic, attrib, TRUE );
2368}
2369
2370
2371/**********************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +00002372 * DlgDirListComboBoxA (USER32.144)
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00002373 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00002374INT WINAPI DlgDirListComboBoxA( HWND hDlg, LPSTR spec, INT idCBox,
2375 INT idStatic, UINT attrib )
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00002376{
2377 return DIALOG_DlgDirList( hDlg, spec, idCBox, idStatic, attrib, TRUE );
2378}
2379
2380
2381/**********************************************************************
Patrik Stridvall2d6457c2000-03-28 20:22:59 +00002382 * DlgDirListComboBoxW (USER32.145)
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00002383 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00002384INT WINAPI DlgDirListComboBoxW( HWND hDlg, LPWSTR spec, INT idCBox,
2385 INT idStatic, UINT attrib )
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00002386{
Alexandre Julliard84c70f51997-05-09 08:40:27 +00002387 return DIALOG_DlgDirListW( hDlg, spec, idCBox, idStatic, attrib, TRUE );
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00002388}