4 * Copyright 1993, 1994, 1996 Alexandre Julliard
13 #include "wine/winuser16.h"
14 #include "wine/winbase16.h"
23 #include "sysmetrics.h"
27 /* Dialog control information */
64 /* Dialog base units */
65 static WORD xBaseUnit
= 0, yBaseUnit
= 0;
68 /***********************************************************************
71 * Initialisation of the dialog manager.
73 BOOL
DIALOG_Init(void)
78 /* Calculate the dialog base units */
80 if (!(hdc
= CreateDC16( "DISPLAY", NULL
, NULL
, NULL
))) return FALSE
;
81 GetTextMetrics16( hdc
, &tm
);
83 xBaseUnit
= tm
.tmAveCharWidth
;
84 yBaseUnit
= tm
.tmHeight
;
86 /* Dialog units are based on a proportional system font */
87 /* so we adjust them a bit for a fixed font. */
88 if (!(tm
.tmPitchAndFamily
& TMPF_FIXED_PITCH
))
89 xBaseUnit
= xBaseUnit
* 5 / 4;
91 TRACE(dialog
, "base units = %d,%d\n",
92 xBaseUnit
, yBaseUnit
);
97 /***********************************************************************
100 * Return the class and text of the control pointed to by ptr,
101 * fill the header structure and return a pointer to the next control.
103 static LPCSTR
DIALOG_GetControl16( LPCSTR p
, DLG_CONTROL_INFO
*info
)
105 static char buffer
[10];
108 info
->x
= GET_WORD(p
); p
+= sizeof(WORD
);
109 info
->y
= GET_WORD(p
); p
+= sizeof(WORD
);
110 info
->cx
= GET_WORD(p
); p
+= sizeof(WORD
);
111 info
->cy
= GET_WORD(p
); p
+= sizeof(WORD
);
112 info
->id
= GET_WORD(p
); p
+= sizeof(WORD
);
113 info
->style
= GET_DWORD(p
); p
+= sizeof(DWORD
);
120 case 0x80: strcpy( buffer
, "BUTTON" ); break;
121 case 0x81: strcpy( buffer
, "EDIT" ); break;
122 case 0x82: strcpy( buffer
, "STATIC" ); break;
123 case 0x83: strcpy( buffer
, "LISTBOX" ); break;
124 case 0x84: strcpy( buffer
, "SCROLLBAR" ); break;
125 case 0x85: strcpy( buffer
, "COMBOBOX" ); break;
126 default: buffer
[0] = '\0'; break;
128 info
->className
= buffer
;
137 int_id
= ((BYTE
)*p
== 0xff);
140 /* Integer id, not documented (?). Only works for SS_ICON controls */
141 info
->windowName
= (LPCSTR
)(UINT
)GET_WORD(p
+1);
146 info
->windowName
= p
;
150 info
->data
= (LPVOID
)(*p
? p
+ 1 : NULL
); /* FIXME: should be a segptr */
154 TRACE(dialog
," %s %04x %d, %d, %d, %d, %d, %08lx, %08lx\n",
155 info
->className
, LOWORD(info
->windowName
),
156 info
->id
, info
->x
, info
->y
, info
->cx
, info
->cy
,
157 info
->style
, (DWORD
)info
->data
);
159 TRACE(dialog
," %s '%s' %d, %d, %d, %d, %d, %08lx, %08lx\n",
160 info
->className
, info
->windowName
,
161 info
->id
, info
->x
, info
->y
, info
->cx
, info
->cy
,
162 info
->style
, (DWORD
)info
->data
);
168 /***********************************************************************
169 * DIALOG_GetControl32
171 * Return the class and text of the control pointed to by ptr,
172 * fill the header structure and return a pointer to the next control.
174 static const WORD
*DIALOG_GetControl32( const WORD
*p
, DLG_CONTROL_INFO
*info
,
179 info
->helpId
= GET_DWORD(p
); p
+= 2;
180 info
->exStyle
= GET_DWORD(p
); p
+= 2;
181 info
->style
= GET_DWORD(p
); p
+= 2;
186 info
->style
= GET_DWORD(p
); p
+= 2;
187 info
->exStyle
= GET_DWORD(p
); p
+= 2;
189 info
->x
= GET_WORD(p
); p
++;
190 info
->y
= GET_WORD(p
); p
++;
191 info
->cx
= GET_WORD(p
); p
++;
192 info
->cy
= GET_WORD(p
); p
++;
196 /* id is a DWORD for DIALOGEX */
197 info
->id
= GET_DWORD(p
);
202 info
->id
= GET_WORD(p
);
206 if (GET_WORD(p
) == 0xffff)
208 static const WCHAR class_names
[6][10] =
210 { 'B','u','t','t','o','n', }, /* 0x80 */
211 { 'E','d','i','t', }, /* 0x81 */
212 { 'S','t','a','t','i','c', }, /* 0x82 */
213 { 'L','i','s','t','B','o','x', }, /* 0x83 */
214 { 'S','c','r','o','l','l','B','a','r', }, /* 0x84 */
215 { 'C','o','m','b','o','B','o','x', } /* 0x85 */
217 WORD id
= GET_WORD(p
+1);
218 if ((id
>= 0x80) && (id
<= 0x85))
219 info
->className
= (LPCSTR
)class_names
[id
- 0x80];
222 info
->className
= NULL
;
223 ERR( dialog
, "Unknown built-in class id %04x\n", id
);
229 info
->className
= (LPCSTR
)p
;
230 p
+= lstrlenW( (LPCWSTR
)p
) + 1;
233 if (GET_WORD(p
) == 0xffff) /* Is it an integer id? */
235 info
->windowName
= (LPCSTR
)(UINT
)GET_WORD(p
+ 1);
240 info
->windowName
= (LPCSTR
)p
;
241 p
+= lstrlenW( (LPCWSTR
)p
) + 1;
244 TRACE(dialog
," %s %s %d, %d, %d, %d, %d, %08lx, %08lx, %08lx\n",
245 debugstr_w( (LPCWSTR
)info
->className
),
246 debugres_w( (LPCWSTR
)info
->windowName
),
247 info
->id
, info
->x
, info
->y
, info
->cx
, info
->cy
,
248 info
->style
, info
->exStyle
, info
->helpId
);
252 if (TRACE_ON(dialog
))
254 WORD i
, count
= GET_WORD(p
) / sizeof(WORD
);
255 TRACE(dialog
, " BEGIN\n");
257 for (i
= 0; i
< count
; i
++) DUMP( "%04x,", GET_WORD(p
+i
+1) );
259 TRACE(dialog
, " END\n" );
261 info
->data
= (LPVOID
)(p
+ 1);
262 p
+= GET_WORD(p
) / sizeof(WORD
);
264 else info
->data
= NULL
;
267 /* Next control is on dword boundary */
268 return (const WORD
*)((((int)p
) + 3) & ~3);
272 /***********************************************************************
273 * DIALOG_CreateControls
275 * Create the control windows for a dialog.
277 static BOOL
DIALOG_CreateControls( WND
*pWnd
, LPCSTR
template,
278 const DLG_TEMPLATE
*dlgTemplate
,
279 HINSTANCE hInst
, BOOL win32
)
281 DIALOGINFO
*dlgInfo
= (DIALOGINFO
*)pWnd
->wExtra
;
282 DLG_CONTROL_INFO info
;
283 HWND hwndCtrl
, hwndDefButton
= 0;
284 INT items
= dlgTemplate
->nbItems
;
286 TRACE(dialog
, " BEGIN\n" );
291 HINSTANCE16 instance
;
292 template = DIALOG_GetControl16( template, &info
);
293 if (HIWORD(info
.className
) && !strcmp( info
.className
, "EDIT") &&
294 ((pWnd
->dwStyle
& DS_LOCALEDIT
) != DS_LOCALEDIT
))
296 if (!dlgInfo
->hDialogHeap
)
298 dlgInfo
->hDialogHeap
= GlobalAlloc16(GMEM_FIXED
, 0x10000);
299 if (!dlgInfo
->hDialogHeap
)
301 ERR(dialog
, "Insufficient memory to create heap for edit control\n" );
304 LocalInit16(dlgInfo
->hDialogHeap
, 0, 0xffff);
306 instance
= dlgInfo
->hDialogHeap
;
308 else instance
= (HINSTANCE16
)hInst
;
310 hwndCtrl
= CreateWindowEx16( info
.exStyle
| WS_EX_NOPARENTNOTIFY
,
311 info
.className
, info
.windowName
,
312 info
.style
| WS_CHILD
,
313 info
.x
* dlgInfo
->xBaseUnit
/ 4,
314 info
.y
* dlgInfo
->yBaseUnit
/ 8,
315 info
.cx
* dlgInfo
->xBaseUnit
/ 4,
316 info
.cy
* dlgInfo
->yBaseUnit
/ 8,
317 pWnd
->hwndSelf
, (HMENU16
)info
.id
,
318 instance
, info
.data
);
322 template = (LPCSTR
)DIALOG_GetControl32( (WORD
*)template, &info
,
323 dlgTemplate
->dialogEx
);
324 hwndCtrl
= CreateWindowExW( info
.exStyle
| WS_EX_NOPARENTNOTIFY
,
325 (LPCWSTR
)info
.className
,
326 (LPCWSTR
)info
.windowName
,
327 info
.style
| WS_CHILD
,
328 info
.x
* dlgInfo
->xBaseUnit
/ 4,
329 info
.y
* dlgInfo
->yBaseUnit
/ 8,
330 info
.cx
* dlgInfo
->xBaseUnit
/ 4,
331 info
.cy
* dlgInfo
->yBaseUnit
/ 8,
332 pWnd
->hwndSelf
, (HMENU
)info
.id
,
335 if (!hwndCtrl
) return FALSE
;
337 /* Send initialisation messages to the control */
338 if (dlgInfo
->hUserFont
) SendMessageA( hwndCtrl
, WM_SETFONT
,
339 (WPARAM
)dlgInfo
->hUserFont
, 0 );
340 if (SendMessageA(hwndCtrl
, WM_GETDLGCODE
, 0, 0) & DLGC_DEFPUSHBUTTON
)
342 /* If there's already a default push-button, set it back */
343 /* to normal and use this one instead. */
345 SendMessageA( hwndDefButton
, BM_SETSTYLE
,
346 BS_PUSHBUTTON
,FALSE
);
347 hwndDefButton
= hwndCtrl
;
348 dlgInfo
->idResult
= GetWindowWord( hwndCtrl
, GWW_ID
);
351 TRACE(dialog
, " END\n" );
356 /***********************************************************************
357 * DIALOG_ParseTemplate16
359 * Fill a DLG_TEMPLATE structure from the dialog template, and return
360 * a pointer to the first control.
362 static LPCSTR
DIALOG_ParseTemplate16( LPCSTR p
, DLG_TEMPLATE
* result
)
364 result
->style
= GET_DWORD(p
); p
+= sizeof(DWORD
);
366 result
->nbItems
= *p
++;
367 result
->x
= GET_WORD(p
); p
+= sizeof(WORD
);
368 result
->y
= GET_WORD(p
); p
+= sizeof(WORD
);
369 result
->cx
= GET_WORD(p
); p
+= sizeof(WORD
);
370 result
->cy
= GET_WORD(p
); p
+= sizeof(WORD
);
371 TRACE(dialog
, "DIALOG %d, %d, %d, %d\n",
372 result
->x
, result
->y
, result
->cx
, result
->cy
);
373 TRACE(dialog
, " STYLE %08lx\n", result
->style
);
375 /* Get the menu name */
380 result
->menuName
= 0;
384 result
->menuName
= (LPCSTR
)(UINT
)GET_WORD( p
+ 1 );
386 TRACE(dialog
, " MENU %04x\n", LOWORD(result
->menuName
) );
389 result
->menuName
= p
;
390 TRACE(dialog
, " MENU '%s'\n", p
);
395 /* Get the class name */
399 result
->className
= p
;
400 TRACE(dialog
, " CLASS '%s'\n", result
->className
);
402 else result
->className
= DIALOG_CLASS_ATOM
;
405 /* Get the window caption */
409 TRACE(dialog
, " CAPTION '%s'\n", result
->caption
);
411 /* Get the font name */
413 if (result
->style
& DS_SETFONT
)
415 result
->pointSize
= GET_WORD(p
);
417 result
->faceName
= p
;
419 TRACE(dialog
, " FONT %d,'%s'\n",
420 result
->pointSize
, result
->faceName
);
426 /***********************************************************************
427 * DIALOG_ParseTemplate32
429 * Fill a DLG_TEMPLATE structure from the dialog template, and return
430 * a pointer to the first control.
432 static LPCSTR
DIALOG_ParseTemplate32( LPCSTR
template, DLG_TEMPLATE
* result
)
434 const WORD
*p
= (const WORD
*)template;
436 result
->style
= GET_DWORD(p
); p
+= 2;
437 if (result
->style
== 0xffff0001) /* DIALOGEX resource */
439 result
->dialogEx
= TRUE
;
440 result
->helpId
= GET_DWORD(p
); p
+= 2;
441 result
->exStyle
= GET_DWORD(p
); p
+= 2;
442 result
->style
= GET_DWORD(p
); p
+= 2;
446 result
->dialogEx
= FALSE
;
448 result
->exStyle
= GET_DWORD(p
); p
+= 2;
450 result
->nbItems
= GET_WORD(p
); p
++;
451 result
->x
= GET_WORD(p
); p
++;
452 result
->y
= GET_WORD(p
); p
++;
453 result
->cx
= GET_WORD(p
); p
++;
454 result
->cy
= GET_WORD(p
); p
++;
455 TRACE( dialog
, "DIALOG%s %d, %d, %d, %d, %ld\n",
456 result
->dialogEx
? "EX" : "", result
->x
, result
->y
,
457 result
->cx
, result
->cy
, result
->helpId
);
458 TRACE( dialog
, " STYLE 0x%08lx\n", result
->style
);
459 TRACE( dialog
, " EXSTYLE 0x%08lx\n", result
->exStyle
);
461 /* Get the menu name */
466 result
->menuName
= NULL
;
470 result
->menuName
= (LPCSTR
)(UINT
)GET_WORD( p
+ 1 );
472 TRACE(dialog
, " MENU %04x\n", LOWORD(result
->menuName
) );
475 result
->menuName
= (LPCSTR
)p
;
476 TRACE(dialog
, " MENU %s\n", debugstr_w( (LPCWSTR
)p
));
477 p
+= lstrlenW( (LPCWSTR
)p
) + 1;
481 /* Get the class name */
486 result
->className
= DIALOG_CLASS_ATOM
;
490 result
->className
= (LPCSTR
)(UINT
)GET_WORD( p
+ 1 );
492 TRACE(dialog
, " CLASS %04x\n", LOWORD(result
->className
) );
495 result
->className
= (LPCSTR
)p
;
496 TRACE(dialog
, " CLASS %s\n", debugstr_w( (LPCWSTR
)p
));
497 p
+= lstrlenW( (LPCWSTR
)p
) + 1;
501 /* Get the window caption */
503 result
->caption
= (LPCSTR
)p
;
504 p
+= lstrlenW( (LPCWSTR
)p
) + 1;
505 TRACE(dialog
, " CAPTION %s\n", debugstr_w( (LPCWSTR
)result
->caption
) );
507 /* Get the font name */
509 if (result
->style
& DS_SETFONT
)
511 result
->pointSize
= GET_WORD(p
);
513 if (result
->dialogEx
)
515 result
->weight
= GET_WORD(p
); p
++;
516 result
->italic
= LOBYTE(GET_WORD(p
)); p
++;
520 result
->weight
= FW_DONTCARE
;
521 result
->italic
= FALSE
;
523 result
->faceName
= (LPCSTR
)p
;
524 p
+= lstrlenW( (LPCWSTR
)p
) + 1;
525 TRACE(dialog
, " FONT %d, %s, %d, %s\n",
526 result
->pointSize
, debugstr_w( (LPCWSTR
)result
->faceName
),
527 result
->weight
, result
->italic
? "TRUE" : "FALSE" );
530 /* First control is on dword boundary */
531 return (LPCSTR
)((((int)p
) + 3) & ~3);
535 /***********************************************************************
536 * DIALOG_CreateIndirect
538 HWND
DIALOG_CreateIndirect( HINSTANCE hInst
, LPCSTR dlgTemplate
,
539 BOOL win32Template
, HWND owner
,
540 DLGPROC16 dlgProc
, LPARAM param
,
541 WINDOWPROCTYPE procType
)
548 DLG_TEMPLATE
template;
549 DIALOGINFO
* dlgInfo
;
550 WORD xUnit
= xBaseUnit
;
551 WORD yUnit
= yBaseUnit
;
553 /* Parse dialog template */
555 if (!dlgTemplate
) return 0;
557 dlgTemplate
= DIALOG_ParseTemplate32( dlgTemplate
, &template );
559 dlgTemplate
= DIALOG_ParseTemplate16( dlgTemplate
, &template );
563 if (template.menuName
)
567 LPSTR str
= SEGPTR_STRDUP( template.menuName
);
568 hMenu
= LoadMenu16( hInst
, SEGPTR_GET(str
) );
571 else hMenu
= LoadMenuW( hInst
, (LPCWSTR
)template.menuName
);
574 /* Create custom font if needed */
576 if (template.style
& DS_SETFONT
)
578 /* The font height must be negative as it is a point size */
579 /* (see CreateFont() documentation in the Windows SDK). */
582 hFont
= CreateFontW( -template.pointSize
, 0, 0, 0,
583 template.weight
, template.italic
, FALSE
,
584 FALSE
, DEFAULT_CHARSET
, 0, 0, PROOF_QUALITY
,
585 FF_DONTCARE
, (LPCWSTR
)template.faceName
);
587 hFont
= CreateFont16( -template.pointSize
, 0, 0, 0, FW_DONTCARE
,
588 FALSE
, FALSE
, FALSE
, DEFAULT_CHARSET
, 0, 0,
589 PROOF_QUALITY
, FF_DONTCARE
,
597 oldFont
= SelectObject( hdc
, hFont
);
598 GetTextMetrics16( hdc
, &tm
);
599 SelectObject( hdc
, oldFont
);
601 xUnit
= tm
.tmAveCharWidth
;
603 if (!(tm
.tmPitchAndFamily
& TMPF_FIXED_PITCH
))
604 xBaseUnit
= xBaseUnit
* 5 / 4; /* See DIALOG_Init() */
608 /* Create dialog main window */
610 rect
.left
= rect
.top
= 0;
611 rect
.right
= template.cx
* xUnit
/ 4;
612 rect
.bottom
= template.cy
* yUnit
/ 8;
613 if (template.style
& DS_MODALFRAME
)
614 template.exStyle
|= WS_EX_DLGMODALFRAME
;
615 AdjustWindowRectEx( &rect
, template.style
,
616 hMenu
? TRUE
: FALSE
, template.exStyle
);
617 rect
.right
-= rect
.left
;
618 rect
.bottom
-= rect
.top
;
620 if ((INT16
)template.x
== CW_USEDEFAULT16
)
622 rect
.left
= rect
.top
= (procType
== WIN_PROC_16
) ? CW_USEDEFAULT16
627 if (template.style
& DS_CENTER
)
629 rect
.left
= (SYSMETRICS_CXSCREEN
- rect
.right
) / 2;
630 rect
.top
= (SYSMETRICS_CYSCREEN
- rect
.bottom
) / 2;
634 rect
.left
+= template.x
* xUnit
/ 4;
635 rect
.top
+= template.y
* yUnit
/ 8;
637 if ( !(template.style
& WS_CHILD
) )
641 if( !(template.style
& DS_ABSALIGN
) )
642 ClientToScreen( owner
, (POINT
*)&rect
);
644 /* try to fit it into the desktop */
646 if( (dX
= rect
.left
+ rect
.right
+ SYSMETRICS_CXDLGFRAME
647 - SYSMETRICS_CXSCREEN
) > 0 ) rect
.left
-= dX
;
648 if( (dY
= rect
.top
+ rect
.bottom
+ SYSMETRICS_CYDLGFRAME
649 - SYSMETRICS_CYSCREEN
) > 0 ) rect
.top
-= dY
;
650 if( rect
.left
< 0 ) rect
.left
= 0;
651 if( rect
.top
< 0 ) rect
.top
= 0;
655 if (procType
== WIN_PROC_16
)
656 hwnd
= CreateWindowEx16(template.exStyle
, template.className
,
657 template.caption
, template.style
& ~WS_VISIBLE
,
658 rect
.left
, rect
.top
, rect
.right
, rect
.bottom
,
659 owner
, hMenu
, hInst
, NULL
);
661 hwnd
= CreateWindowExW(template.exStyle
, (LPCWSTR
)template.className
,
662 (LPCWSTR
)template.caption
,
663 template.style
& ~WS_VISIBLE
,
664 rect
.left
, rect
.top
, rect
.right
, rect
.bottom
,
665 owner
, hMenu
, hInst
, NULL
);
669 if (hFont
) DeleteObject( hFont
);
670 if (hMenu
) DestroyMenu( hMenu
);
673 wndPtr
= WIN_FindWndPtr( hwnd
);
674 wndPtr
->flags
|= WIN_ISDIALOG
;
675 wndPtr
->helpContext
= template.helpId
;
677 /* Initialise dialog extra data */
679 dlgInfo
= (DIALOGINFO
*)wndPtr
->wExtra
;
680 WINPROC_SetProc( &dlgInfo
->dlgProc
, (WNDPROC16
)dlgProc
, procType
, WIN_PROC_WINDOW
);
681 dlgInfo
->hUserFont
= hFont
;
682 dlgInfo
->hMenu
= hMenu
;
683 dlgInfo
->xBaseUnit
= xUnit
;
684 dlgInfo
->yBaseUnit
= yUnit
;
685 dlgInfo
->msgResult
= 0;
686 dlgInfo
->idResult
= 0;
688 dlgInfo
->hDialogHeap
= 0;
690 if (dlgInfo
->hUserFont
)
691 SendMessageA( hwnd
, WM_SETFONT
, (WPARAM
)dlgInfo
->hUserFont
, 0 );
693 /* Create controls */
695 if (DIALOG_CreateControls( wndPtr
, dlgTemplate
, &template,
696 hInst
, win32Template
))
698 /* Send initialisation messages and set focus */
700 dlgInfo
->hwndFocus
= GetNextDlgTabItem( hwnd
, 0, FALSE
);
702 if (SendMessageA( hwnd
, WM_INITDIALOG
, (WPARAM
)dlgInfo
->hwndFocus
, param
))
703 SetFocus( dlgInfo
->hwndFocus
);
705 if (template.style
& WS_VISIBLE
&& !(wndPtr
->dwStyle
& WS_VISIBLE
))
707 ShowWindow( hwnd
, SW_SHOWNORMAL
); /* SW_SHOW doesn't always work */
708 UpdateWindow( hwnd
);
713 if( IsWindow(hwnd
) ) DestroyWindow( hwnd
);
718 /***********************************************************************
719 * CreateDialog16 (USER.89)
721 HWND16 WINAPI
CreateDialog16( HINSTANCE16 hInst
, SEGPTR dlgTemplate
,
722 HWND16 owner
, DLGPROC16 dlgProc
)
724 return CreateDialogParam16( hInst
, dlgTemplate
, owner
, dlgProc
, 0 );
728 /***********************************************************************
729 * CreateDialogParam16 (USER.241)
731 HWND16 WINAPI
CreateDialogParam16( HINSTANCE16 hInst
, SEGPTR dlgTemplate
,
732 HWND16 owner
, DLGPROC16 dlgProc
,
740 TRACE(dialog
, "%04x,%08lx,%04x,%08lx,%ld\n",
741 hInst
, (DWORD
)dlgTemplate
, owner
, (DWORD
)dlgProc
, param
);
743 if (!(hRsrc
= FindResource16( hInst
, dlgTemplate
, RT_DIALOG16
))) return 0;
744 if (!(hmem
= LoadResource16( hInst
, hRsrc
))) return 0;
745 if (!(data
= LockResource16( hmem
))) hwnd
= 0;
746 else hwnd
= CreateDialogIndirectParam16( hInst
, data
, owner
,
748 FreeResource16( hmem
);
752 /***********************************************************************
753 * CreateDialogParam32A (USER32.73)
755 HWND WINAPI
CreateDialogParamA( HINSTANCE hInst
, LPCSTR name
,
756 HWND owner
, DLGPROC dlgProc
,
761 LPWSTR str
= HEAP_strdupAtoW( GetProcessHeap(), 0, name
);
762 HWND hwnd
= CreateDialogParamW( hInst
, str
, owner
, dlgProc
, param
);
763 HeapFree( GetProcessHeap(), 0, str
);
766 return CreateDialogParamW( hInst
, (LPCWSTR
)name
, owner
, dlgProc
, param
);
770 /***********************************************************************
771 * CreateDialogParam32W (USER32.74)
773 HWND WINAPI
CreateDialogParamW( HINSTANCE hInst
, LPCWSTR name
,
774 HWND owner
, DLGPROC dlgProc
,
777 HANDLE hrsrc
= FindResourceW( hInst
, name
, RT_DIALOGW
);
778 if (!hrsrc
) return 0;
779 return CreateDialogIndirectParamW( hInst
,
780 (LPVOID
)LoadResource(hInst
, hrsrc
),
781 owner
, dlgProc
, param
);
785 /***********************************************************************
786 * CreateDialogIndirect16 (USER.219)
788 HWND16 WINAPI
CreateDialogIndirect16( HINSTANCE16 hInst
, LPCVOID dlgTemplate
,
789 HWND16 owner
, DLGPROC16 dlgProc
)
791 return CreateDialogIndirectParam16( hInst
, dlgTemplate
, owner
, dlgProc
, 0);
795 /***********************************************************************
796 * CreateDialogIndirectParam16 (USER.242)
798 HWND16 WINAPI
CreateDialogIndirectParam16( HINSTANCE16 hInst
,
800 HWND16 owner
, DLGPROC16 dlgProc
,
803 return DIALOG_CreateIndirect( hInst
, dlgTemplate
, FALSE
, owner
,
804 dlgProc
, param
, WIN_PROC_16
);
808 /***********************************************************************
809 * CreateDialogIndirectParam32A (USER32.69)
811 HWND WINAPI
CreateDialogIndirectParamA( HINSTANCE hInst
,
813 HWND owner
, DLGPROC dlgProc
,
816 return DIALOG_CreateIndirect( hInst
, dlgTemplate
, TRUE
, owner
,
817 (DLGPROC16
)dlgProc
, param
, WIN_PROC_32A
);
820 /***********************************************************************
821 * CreateDialogIndirectParam32AorW (USER32.71)
823 HWND WINAPI
CreateDialogIndirectParamAorW( HINSTANCE hInst
,
825 HWND owner
, DLGPROC dlgProc
,
827 { FIXME(dialog
,"assume WIN_PROC_32W\n");
828 return DIALOG_CreateIndirect( hInst
, dlgTemplate
, TRUE
, owner
,
829 (DLGPROC16
)dlgProc
, param
, WIN_PROC_32W
);
832 /***********************************************************************
833 * CreateDialogIndirectParam32W (USER32.72)
835 HWND WINAPI
CreateDialogIndirectParamW( HINSTANCE hInst
,
837 HWND owner
, DLGPROC dlgProc
,
840 return DIALOG_CreateIndirect( hInst
, dlgTemplate
, TRUE
, owner
,
841 (DLGPROC16
)dlgProc
, param
, WIN_PROC_32W
);
845 /***********************************************************************
848 INT
DIALOG_DoDialogBox( HWND hwnd
, HWND owner
)
851 DIALOGINFO
* dlgInfo
;
855 /* Owner must be a top-level window */
856 owner
= WIN_GetTopParent( owner
);
857 if (!(wndPtr
= WIN_FindWndPtr( hwnd
))) return -1;
858 dlgInfo
= (DIALOGINFO
*)wndPtr
->wExtra
;
860 if (!dlgInfo
->flags
& DF_END
) /* was EndDialog called in WM_INITDIALOG ? */
862 EnableWindow( owner
, FALSE
);
863 ShowWindow( hwnd
, SW_SHOW
);
864 while (MSG_InternalGetMessage(&msg
, hwnd
, owner
, MSGF_DIALOGBOX
,
865 PM_REMOVE
, !(wndPtr
->dwStyle
& DS_NOIDLEMSG
) ))
867 if (!IsDialogMessageA( hwnd
, &msg
))
869 TranslateMessage( &msg
);
870 DispatchMessageA( &msg
);
872 if (dlgInfo
->flags
& DF_END
) break;
874 EnableWindow( owner
, TRUE
);
876 retval
= dlgInfo
->idResult
;
877 DestroyWindow( hwnd
);
882 /***********************************************************************
883 * DialogBox16 (USER.87)
885 INT16 WINAPI
DialogBox16( HINSTANCE16 hInst
, SEGPTR dlgTemplate
,
886 HWND16 owner
, DLGPROC16 dlgProc
)
888 return DialogBoxParam16( hInst
, dlgTemplate
, owner
, dlgProc
, 0 );
892 /***********************************************************************
893 * DialogBoxParam16 (USER.239)
895 INT16 WINAPI
DialogBoxParam16( HINSTANCE16 hInst
, SEGPTR
template,
896 HWND16 owner
, DLGPROC16 dlgProc
, LPARAM param
)
898 HWND16 hwnd
= CreateDialogParam16( hInst
, template, owner
, dlgProc
, param
);
899 if (hwnd
) return (INT16
)DIALOG_DoDialogBox( hwnd
, owner
);
904 /***********************************************************************
905 * DialogBoxParam32A (USER32.139)
907 INT WINAPI
DialogBoxParamA( HINSTANCE hInst
, LPCSTR name
,
908 HWND owner
, DLGPROC dlgProc
, LPARAM param
)
910 HWND hwnd
= CreateDialogParamA( hInst
, name
, owner
, dlgProc
, param
);
911 if (hwnd
) return DIALOG_DoDialogBox( hwnd
, owner
);
916 /***********************************************************************
917 * DialogBoxParam32W (USER32.140)
919 INT WINAPI
DialogBoxParamW( HINSTANCE hInst
, LPCWSTR name
,
920 HWND owner
, DLGPROC dlgProc
, LPARAM param
)
922 HWND hwnd
= CreateDialogParamW( hInst
, name
, owner
, dlgProc
, param
);
923 if (hwnd
) return DIALOG_DoDialogBox( hwnd
, owner
);
928 /***********************************************************************
929 * DialogBoxIndirect16 (USER.218)
931 INT16 WINAPI
DialogBoxIndirect16( HINSTANCE16 hInst
, HANDLE16 dlgTemplate
,
932 HWND16 owner
, DLGPROC16 dlgProc
)
934 return DialogBoxIndirectParam16( hInst
, dlgTemplate
, owner
, dlgProc
, 0 );
938 /***********************************************************************
939 * DialogBoxIndirectParam16 (USER.240)
941 INT16 WINAPI
DialogBoxIndirectParam16( HINSTANCE16 hInst
, HANDLE16 dlgTemplate
,
942 HWND16 owner
, DLGPROC16 dlgProc
,
948 if (!(ptr
= GlobalLock16( dlgTemplate
))) return -1;
949 hwnd
= CreateDialogIndirectParam16( hInst
, ptr
, owner
, dlgProc
, param
);
950 GlobalUnlock16( dlgTemplate
);
951 if (hwnd
) return (INT16
)DIALOG_DoDialogBox( hwnd
, owner
);
956 /***********************************************************************
957 * DialogBoxIndirectParam32A (USER32.136)
959 INT WINAPI
DialogBoxIndirectParamA(HINSTANCE hInstance
, LPCVOID
template,
960 HWND owner
, DLGPROC dlgProc
,
963 HWND hwnd
= CreateDialogIndirectParamA( hInstance
, template,
964 owner
, dlgProc
, param
);
965 if (hwnd
) return DIALOG_DoDialogBox( hwnd
, owner
);
970 /***********************************************************************
971 * DialogBoxIndirectParam32W (USER32.138)
973 INT WINAPI
DialogBoxIndirectParamW(HINSTANCE hInstance
, LPCVOID
template,
974 HWND owner
, DLGPROC dlgProc
,
977 HWND hwnd
= CreateDialogIndirectParamW( hInstance
, template,
978 owner
, dlgProc
, param
);
979 if (hwnd
) return DIALOG_DoDialogBox( hwnd
, owner
);
984 /***********************************************************************
985 * EndDialog16 (USER32.173)
987 BOOL16 WINAPI
EndDialog16( HWND16 hwnd
, INT16 retval
)
989 return EndDialog( hwnd
, retval
);
993 /***********************************************************************
994 * EndDialog32 (USER.88)
996 BOOL WINAPI
EndDialog( HWND hwnd
, INT retval
)
998 WND
* wndPtr
= WIN_FindWndPtr( hwnd
);
999 DIALOGINFO
* dlgInfo
= (DIALOGINFO
*)wndPtr
->wExtra
;
1001 TRACE(dialog
, "%04x %d\n", hwnd
, retval
);
1005 dlgInfo
->idResult
= retval
;
1006 dlgInfo
->flags
|= DF_END
;
1012 /***********************************************************************
1013 * DIALOG_IsAccelerator
1015 static BOOL
DIALOG_IsAccelerator( HWND hwnd
, HWND hwndDlg
, WPARAM vKey
)
1017 HWND hwndControl
= hwnd
;
1020 BOOL RetVal
= FALSE
;
1023 if (vKey
== VK_SPACE
)
1025 dlgCode
= SendMessageA( hwndControl
, WM_GETDLGCODE
, 0, 0 );
1026 if (dlgCode
& DLGC_BUTTON
)
1028 SendMessageA( hwndControl
, WM_LBUTTONDOWN
, 0, 0);
1029 SendMessageA( hwndControl
, WM_LBUTTONUP
, 0, 0);
1037 wndPtr
= WIN_FindWndPtr( hwndControl
);
1038 if (wndPtr
!= NULL
&& wndPtr
->text
!= NULL
&&
1039 (wndPtr
->dwStyle
& (WS_VISIBLE
| WS_DISABLED
)) == WS_VISIBLE
)
1041 dlgCode
= SendMessageA( hwndControl
, WM_GETDLGCODE
, 0, 0 );
1042 if (dlgCode
& (DLGC_BUTTON
| DLGC_STATIC
))
1044 /* find the accelerator key */
1045 LPSTR p
= wndPtr
->text
- 2;
1048 p
= strchr( p
+ 2, '&' );
1050 while (p
!= NULL
&& p
[1] == '&');
1052 /* and check if it's the one we're looking for */
1053 if (p
!= NULL
&& toupper( p
[1] ) == toupper( vKey
) )
1055 if ((dlgCode
& DLGC_STATIC
) ||
1056 (wndPtr
->dwStyle
& 0x0f) == BS_GROUPBOX
)
1058 /* set focus to the control */
1059 SendMessageA( hwndDlg
, WM_NEXTDLGCTL
,
1061 /* and bump it on to next */
1062 SendMessageA( hwndDlg
, WM_NEXTDLGCTL
, 0, 0);
1065 (DLGC_DEFPUSHBUTTON
| DLGC_UNDEFPUSHBUTTON
))
1067 /* send command message as from the control */
1068 SendMessageA( hwndDlg
, WM_COMMAND
,
1069 MAKEWPARAM( LOWORD(wndPtr
->wIDmenu
),
1071 (LPARAM
)hwndControl
);
1075 /* click the control */
1076 SendMessageA( hwndControl
, WM_LBUTTONDOWN
, 0, 0);
1077 SendMessageA( hwndControl
, WM_LBUTTONUP
, 0, 0);
1084 hwndNext
= GetWindow( hwndControl
, GW_CHILD
);
1087 hwndNext
= GetWindow( hwndControl
, GW_HWNDNEXT
);
1091 hwndControl
= GetParent( hwndControl
);
1092 if (hwndControl
== hwndDlg
)
1094 hwndNext
= GetWindow( hwndDlg
, GW_CHILD
);
1098 hwndNext
= GetWindow( hwndControl
, GW_HWNDNEXT
);
1101 hwndControl
= hwndNext
;
1103 while (hwndControl
!= hwnd
);
1109 /***********************************************************************
1110 * DIALOG_IsDialogMessage
1112 static BOOL
DIALOG_IsDialogMessage( HWND hwnd
, HWND hwndDlg
,
1113 UINT message
, WPARAM wParam
,
1114 LPARAM lParam
, BOOL
*translate
,
1115 BOOL
*dispatch
, INT dlgCode
)
1117 *translate
= *dispatch
= FALSE
;
1119 if (message
== WM_PAINT
)
1121 /* Apparently, we have to handle this one as well */
1126 /* Only the key messages get special processing */
1127 if ((message
!= WM_KEYDOWN
) &&
1128 (message
!= WM_SYSCHAR
) &&
1129 (message
!= WM_CHAR
))
1132 if (dlgCode
& DLGC_WANTMESSAGE
)
1134 *translate
= *dispatch
= TRUE
;
1144 if (!(dlgCode
& DLGC_WANTTAB
))
1146 SendMessageA( hwndDlg
, WM_NEXTDLGCTL
,
1147 (GetKeyState(VK_SHIFT
) & 0x8000), 0 );
1156 if (!(dlgCode
& DLGC_WANTARROWS
))
1158 BOOL fPrevious
= (wParam
== VK_LEFT
|| wParam
== VK_UP
);
1160 GetNextDlgGroupItem (hwndDlg
, GetFocus(), fPrevious
);
1161 SendMessageA( hwndDlg
, WM_NEXTDLGCTL
, hwndNext
, 1 );
1167 SendMessageA( hwndDlg
, WM_COMMAND
, IDCANCEL
,
1168 (LPARAM
)GetDlgItem( hwndDlg
, IDCANCEL
) );
1173 DWORD dw
= SendMessage16( hwndDlg
, DM_GETDEFID
, 0, 0 );
1174 if (HIWORD(dw
) == DC_HASDEFID
)
1176 SendMessageA( hwndDlg
, WM_COMMAND
,
1177 MAKEWPARAM( LOWORD(dw
), BN_CLICKED
),
1178 (LPARAM
)GetDlgItem(hwndDlg
, LOWORD(dw
)));
1182 SendMessageA( hwndDlg
, WM_COMMAND
, IDOK
,
1183 (LPARAM
)GetDlgItem( hwndDlg
, IDOK
) );
1190 break; /* case WM_KEYDOWN */
1193 if (dlgCode
& DLGC_WANTCHARS
) break;
1197 if (DIALOG_IsAccelerator( hwnd
, hwndDlg
, wParam
))
1199 /* don't translate or dispatch */
1205 /* If we get here, the message has not been treated specially */
1206 /* and can be sent to its destination window. */
1212 /***********************************************************************
1213 * IsDialogMessage16 (USER.90)
1215 BOOL16 WINAPI
WIN16_IsDialogMessage16( HWND16 hwndDlg
, SEGPTR msg16
)
1217 LPMSG16 msg
= PTR_SEG_TO_LIN(msg16
);
1218 BOOL ret
, translate
, dispatch
;
1221 if ((hwndDlg
!= msg
->hwnd
) && !IsChild16( hwndDlg
, msg
->hwnd
))
1224 dlgCode
= SendMessage16( msg
->hwnd
, WM_GETDLGCODE
, 0, (LPARAM
)msg16
);
1225 ret
= DIALOG_IsDialogMessage( msg
->hwnd
, hwndDlg
, msg
->message
,
1226 msg
->wParam
, msg
->lParam
,
1227 &translate
, &dispatch
, dlgCode
);
1228 if (translate
) TranslateMessage16( msg
);
1229 if (dispatch
) DispatchMessage16( msg
);
1234 BOOL16 WINAPI
IsDialogMessage16( HWND16 hwndDlg
, LPMSG16 msg
)
1236 LPMSG16 msg16
= SEGPTR_NEW(MSG16
);
1240 ret
= WIN16_IsDialogMessage16( hwndDlg
, SEGPTR_GET(msg16
) );
1245 /***********************************************************************
1246 * IsDialogMessage32A (USER32.342)
1248 BOOL WINAPI
IsDialogMessageA( HWND hwndDlg
, LPMSG msg
)
1250 BOOL ret
, translate
, dispatch
;
1253 if ((hwndDlg
!= msg
->hwnd
) && !IsChild( hwndDlg
, msg
->hwnd
))
1256 dlgCode
= SendMessageA( msg
->hwnd
, WM_GETDLGCODE
, 0, (LPARAM
)msg
);
1257 ret
= DIALOG_IsDialogMessage( msg
->hwnd
, hwndDlg
, msg
->message
,
1258 msg
->wParam
, msg
->lParam
,
1259 &translate
, &dispatch
, dlgCode
);
1260 if (translate
) TranslateMessage( msg
);
1261 if (dispatch
) DispatchMessageA( msg
);
1266 /***********************************************************************
1267 * IsDialogMessage32W (USER32.343)
1269 BOOL WINAPI
IsDialogMessageW( HWND hwndDlg
, LPMSG msg
)
1271 BOOL ret
, translate
, dispatch
;
1274 if ((hwndDlg
!= msg
->hwnd
) && !IsChild( hwndDlg
, msg
->hwnd
))
1277 dlgCode
= SendMessageW( msg
->hwnd
, WM_GETDLGCODE
, 0, (LPARAM
)msg
);
1278 ret
= DIALOG_IsDialogMessage( msg
->hwnd
, hwndDlg
, msg
->message
,
1279 msg
->wParam
, msg
->lParam
,
1280 &translate
, &dispatch
, dlgCode
);
1281 if (translate
) TranslateMessage( msg
);
1282 if (dispatch
) DispatchMessageW( msg
);
1287 /****************************************************************
1288 * GetDlgCtrlID16 (USER.277)
1290 INT16 WINAPI
GetDlgCtrlID16( HWND16 hwnd
)
1292 WND
*wndPtr
= WIN_FindWndPtr(hwnd
);
1293 if (wndPtr
) return wndPtr
->wIDmenu
;
1298 /****************************************************************
1299 * GetDlgCtrlID32 (USER32.234)
1301 INT WINAPI
GetDlgCtrlID( HWND hwnd
)
1303 WND
*wndPtr
= WIN_FindWndPtr(hwnd
);
1304 if (wndPtr
) return wndPtr
->wIDmenu
;
1309 /***********************************************************************
1310 * GetDlgItem16 (USER.91)
1312 HWND16 WINAPI
GetDlgItem16( HWND16 hwndDlg
, INT16 id
)
1316 if (!(pWnd
= WIN_FindWndPtr( hwndDlg
))) return 0;
1317 for (pWnd
= pWnd
->child
; pWnd
; pWnd
= pWnd
->next
)
1318 if (pWnd
->wIDmenu
== (UINT16
)id
) return pWnd
->hwndSelf
;
1323 /***********************************************************************
1324 * GetDlgItem32 (USER32.235)
1326 HWND WINAPI
GetDlgItem( HWND hwndDlg
, INT id
)
1330 if (!(pWnd
= WIN_FindWndPtr( hwndDlg
))) return 0;
1331 for (pWnd
= pWnd
->child
; pWnd
; pWnd
= pWnd
->next
)
1332 if (pWnd
->wIDmenu
== (UINT16
)id
) return pWnd
->hwndSelf
;
1337 /*******************************************************************
1338 * SendDlgItemMessage16 (USER.101)
1340 LRESULT WINAPI
SendDlgItemMessage16( HWND16 hwnd
, INT16 id
, UINT16 msg
,
1341 WPARAM16 wParam
, LPARAM lParam
)
1343 HWND16 hwndCtrl
= GetDlgItem16( hwnd
, id
);
1344 if (hwndCtrl
) return SendMessage16( hwndCtrl
, msg
, wParam
, lParam
);
1349 /*******************************************************************
1350 * SendDlgItemMessage32A (USER32.452)
1352 LRESULT WINAPI
SendDlgItemMessageA( HWND hwnd
, INT id
, UINT msg
,
1353 WPARAM wParam
, LPARAM lParam
)
1355 HWND hwndCtrl
= GetDlgItem( hwnd
, id
);
1356 if (hwndCtrl
) return SendMessageA( hwndCtrl
, msg
, wParam
, lParam
);
1361 /*******************************************************************
1362 * SendDlgItemMessage32W (USER32.453)
1364 LRESULT WINAPI
SendDlgItemMessageW( HWND hwnd
, INT id
, UINT msg
,
1365 WPARAM wParam
, LPARAM lParam
)
1367 HWND hwndCtrl
= GetDlgItem( hwnd
, id
);
1368 if (hwndCtrl
) return SendMessageW( hwndCtrl
, msg
, wParam
, lParam
);
1373 /*******************************************************************
1374 * SetDlgItemText16 (USER.92)
1376 void WINAPI
SetDlgItemText16( HWND16 hwnd
, INT16 id
, SEGPTR lpString
)
1378 SendDlgItemMessage16( hwnd
, id
, WM_SETTEXT
, 0, (LPARAM
)lpString
);
1382 /*******************************************************************
1383 * SetDlgItemText32A (USER32.478)
1385 BOOL WINAPI
SetDlgItemTextA( HWND hwnd
, INT id
, LPCSTR lpString
)
1387 return SendDlgItemMessageA( hwnd
, id
, WM_SETTEXT
, 0, (LPARAM
)lpString
);
1391 /*******************************************************************
1392 * SetDlgItemText32W (USER32.479)
1394 BOOL WINAPI
SetDlgItemTextW( HWND hwnd
, INT id
, LPCWSTR lpString
)
1396 return SendDlgItemMessageW( hwnd
, id
, WM_SETTEXT
, 0, (LPARAM
)lpString
);
1400 /***********************************************************************
1401 * GetDlgItemText16 (USER.93)
1403 INT16 WINAPI
GetDlgItemText16( HWND16 hwnd
, INT16 id
, SEGPTR str
, UINT16 len
)
1405 return (INT16
)SendDlgItemMessage16( hwnd
, id
, WM_GETTEXT
,
1410 /***********************************************************************
1411 * GetDlgItemText32A (USER32.237)
1413 INT WINAPI
GetDlgItemTextA( HWND hwnd
, INT id
, LPSTR str
, UINT len
)
1415 return (INT
)SendDlgItemMessageA( hwnd
, id
, WM_GETTEXT
,
1420 /***********************************************************************
1421 * GetDlgItemText32W (USER32.238)
1423 INT WINAPI
GetDlgItemTextW( HWND hwnd
, INT id
, LPWSTR str
, UINT len
)
1425 return (INT
)SendDlgItemMessageW( hwnd
, id
, WM_GETTEXT
,
1430 /*******************************************************************
1431 * SetDlgItemInt16 (USER.94)
1433 void WINAPI
SetDlgItemInt16( HWND16 hwnd
, INT16 id
, UINT16 value
, BOOL16 fSigned
)
1435 SetDlgItemInt( hwnd
, (UINT
)(UINT16
)id
, value
, fSigned
);
1439 /*******************************************************************
1440 * SetDlgItemInt32 (USER32.477)
1442 BOOL WINAPI
SetDlgItemInt( HWND hwnd
, INT id
, UINT value
,
1447 if (fSigned
) sprintf( str
, "%d", (INT
)value
);
1448 else sprintf( str
, "%u", value
);
1449 SendDlgItemMessageA( hwnd
, id
, WM_SETTEXT
, 0, (LPARAM
)str
);
1454 /***********************************************************************
1455 * GetDlgItemInt16 (USER.95)
1457 UINT16 WINAPI
GetDlgItemInt16( HWND16 hwnd
, INT16 id
, BOOL16
*translated
,
1463 if (translated
) *translated
= FALSE
;
1464 result
= GetDlgItemInt( hwnd
, (UINT
)(UINT16
)id
, &ok
, fSigned
);
1468 if (((INT
)result
< -32767) || ((INT
)result
> 32767)) return 0;
1472 if (result
> 65535) return 0;
1474 if (translated
) *translated
= TRUE
;
1475 return (UINT16
)result
;
1479 /***********************************************************************
1480 * GetDlgItemInt32 (USER32.236)
1482 UINT WINAPI
GetDlgItemInt( HWND hwnd
, INT id
, BOOL
*translated
,
1489 if (translated
) *translated
= FALSE
;
1490 if (!SendDlgItemMessageA(hwnd
, id
, WM_GETTEXT
, sizeof(str
), (LPARAM
)str
))
1494 result
= strtol( str
, &endptr
, 10 );
1495 if (!endptr
|| (endptr
== str
)) /* Conversion was unsuccessful */
1497 if (((result
== LONG_MIN
) || (result
== LONG_MAX
)) && (errno
==ERANGE
))
1502 result
= strtoul( str
, &endptr
, 10 );
1503 if (!endptr
|| (endptr
== str
)) /* Conversion was unsuccessful */
1505 if ((result
== ULONG_MAX
) && (errno
== ERANGE
)) return 0;
1507 if (translated
) *translated
= TRUE
;
1508 return (UINT
)result
;
1512 /***********************************************************************
1513 * CheckDlgButton16 (USER.97)
1515 BOOL16 WINAPI
CheckDlgButton16( HWND16 hwnd
, INT16 id
, UINT16 check
)
1517 SendDlgItemMessageA( hwnd
, id
, BM_SETCHECK
, check
, 0 );
1522 /***********************************************************************
1523 * CheckDlgButton32 (USER32.45)
1525 BOOL WINAPI
CheckDlgButton( HWND hwnd
, INT id
, UINT check
)
1527 SendDlgItemMessageA( hwnd
, id
, BM_SETCHECK
, check
, 0 );
1532 /***********************************************************************
1533 * IsDlgButtonChecked16 (USER.98)
1535 UINT16 WINAPI
IsDlgButtonChecked16( HWND16 hwnd
, UINT16 id
)
1537 return (UINT16
)SendDlgItemMessageA( hwnd
, id
, BM_GETCHECK
, 0, 0 );
1541 /***********************************************************************
1542 * IsDlgButtonChecked32 (USER32.344)
1544 UINT WINAPI
IsDlgButtonChecked( HWND hwnd
, UINT id
)
1546 return (UINT
)SendDlgItemMessageA( hwnd
, id
, BM_GETCHECK
, 0, 0 );
1550 /***********************************************************************
1551 * CheckRadioButton16 (USER.96)
1553 BOOL16 WINAPI
CheckRadioButton16( HWND16 hwndDlg
, UINT16 firstID
,
1554 UINT16 lastID
, UINT16 checkID
)
1556 return CheckRadioButton( hwndDlg
, firstID
, lastID
, checkID
);
1560 /***********************************************************************
1561 * CheckRadioButton32 (USER32.48)
1563 BOOL WINAPI
CheckRadioButton( HWND hwndDlg
, UINT firstID
,
1564 UINT lastID
, UINT checkID
)
1566 WND
*pWnd
= WIN_FindWndPtr( hwndDlg
);
1567 if (!pWnd
) return FALSE
;
1569 for (pWnd
= pWnd
->child
; pWnd
; pWnd
= pWnd
->next
)
1570 if ((pWnd
->wIDmenu
== firstID
) || (pWnd
->wIDmenu
== lastID
)) break;
1571 if (!pWnd
) return FALSE
;
1573 if (pWnd
->wIDmenu
== lastID
)
1574 lastID
= firstID
; /* Buttons are in reverse order */
1577 SendMessageA( pWnd
->hwndSelf
, BM_SETCHECK
,
1578 (pWnd
->wIDmenu
== checkID
), 0 );
1579 if (pWnd
->wIDmenu
== lastID
) break;
1586 /***********************************************************************
1587 * GetDialogBaseUnits (USER.243) (USER32.233)
1589 DWORD WINAPI
GetDialogBaseUnits(void)
1591 return MAKELONG( xBaseUnit
, yBaseUnit
);
1595 /***********************************************************************
1596 * MapDialogRect16 (USER.103)
1598 void WINAPI
MapDialogRect16( HWND16 hwnd
, LPRECT16 rect
)
1600 DIALOGINFO
* dlgInfo
;
1601 WND
* wndPtr
= WIN_FindWndPtr( hwnd
);
1602 if (!wndPtr
) return;
1603 dlgInfo
= (DIALOGINFO
*)wndPtr
->wExtra
;
1604 rect
->left
= (rect
->left
* dlgInfo
->xBaseUnit
) / 4;
1605 rect
->right
= (rect
->right
* dlgInfo
->xBaseUnit
) / 4;
1606 rect
->top
= (rect
->top
* dlgInfo
->yBaseUnit
) / 8;
1607 rect
->bottom
= (rect
->bottom
* dlgInfo
->yBaseUnit
) / 8;
1611 /***********************************************************************
1612 * MapDialogRect32 (USER32.382)
1614 BOOL WINAPI
MapDialogRect( HWND hwnd
, LPRECT rect
)
1616 DIALOGINFO
* dlgInfo
;
1617 WND
* wndPtr
= WIN_FindWndPtr( hwnd
);
1618 if (!wndPtr
) return FALSE
;
1619 dlgInfo
= (DIALOGINFO
*)wndPtr
->wExtra
;
1620 rect
->left
= (rect
->left
* dlgInfo
->xBaseUnit
) / 4;
1621 rect
->right
= (rect
->right
* dlgInfo
->xBaseUnit
) / 4;
1622 rect
->top
= (rect
->top
* dlgInfo
->yBaseUnit
) / 8;
1623 rect
->bottom
= (rect
->bottom
* dlgInfo
->yBaseUnit
) / 8;
1628 /***********************************************************************
1629 * GetNextDlgGroupItem16 (USER.227)
1631 HWND16 WINAPI
GetNextDlgGroupItem16( HWND16 hwndDlg
, HWND16 hwndCtrl
,
1634 return (HWND16
)GetNextDlgGroupItem( hwndDlg
, hwndCtrl
, fPrevious
);
1638 /***********************************************************************
1639 * GetNextDlgGroupItem32 (USER32.275)
1641 HWND WINAPI
GetNextDlgGroupItem( HWND hwndDlg
, HWND hwndCtrl
,
1644 WND
*pWnd
, *pWndLast
, *pWndCtrl
, *pWndDlg
;
1646 if (!(pWndDlg
= WIN_FindWndPtr( hwndDlg
))) return 0;
1649 if (!(pWndCtrl
= WIN_FindWndPtr( hwndCtrl
))) return 0;
1650 /* Make sure hwndCtrl is a top-level child */
1651 while ((pWndCtrl
->dwStyle
& WS_CHILD
) && (pWndCtrl
->parent
!= pWndDlg
))
1652 pWndCtrl
= pWndCtrl
->parent
;
1653 if (pWndCtrl
->parent
!= pWndDlg
) return 0;
1657 /* No ctrl specified -> start from the beginning */
1658 if (!(pWndCtrl
= pWndDlg
->child
)) return 0;
1659 if (fPrevious
) while (pWndCtrl
->next
) pWndCtrl
= pWndCtrl
->next
;
1662 pWndLast
= pWndCtrl
;
1663 pWnd
= pWndCtrl
->next
;
1666 if (!pWnd
|| (pWnd
->dwStyle
& WS_GROUP
))
1668 /* Wrap-around to the beginning of the group */
1669 WND
*pWndStart
= pWndDlg
->child
;
1670 for (pWnd
= pWndStart
; pWnd
; pWnd
= pWnd
->next
)
1672 if (pWnd
->dwStyle
& WS_GROUP
) pWndStart
= pWnd
;
1673 if (pWnd
== pWndCtrl
) break;
1677 if (pWnd
== pWndCtrl
) break;
1678 if ((pWnd
->dwStyle
& WS_VISIBLE
) && !(pWnd
->dwStyle
& WS_DISABLED
))
1681 if (!fPrevious
) break;
1685 return pWndLast
->hwndSelf
;
1689 /***********************************************************************
1690 * GetNextDlgTabItem16 (USER.228)
1692 HWND16 WINAPI
GetNextDlgTabItem16( HWND16 hwndDlg
, HWND16 hwndCtrl
,
1695 return (HWND16
)GetNextDlgTabItem( hwndDlg
, hwndCtrl
, fPrevious
);
1699 /***********************************************************************
1700 * GetNextDlgTabItem32 (USER32.276)
1702 HWND WINAPI
GetNextDlgTabItem( HWND hwndDlg
, HWND hwndCtrl
,
1705 WND
*pWnd
, *pWndLast
, *pWndCtrl
, *pWndDlg
;
1707 if (!(pWndDlg
= WIN_FindWndPtr( hwndDlg
))) return 0;
1710 if (!(pWndCtrl
= WIN_FindWndPtr( hwndCtrl
))) return 0;
1711 /* Make sure hwndCtrl is a top-level child */
1712 while ((pWndCtrl
->dwStyle
& WS_CHILD
) && (pWndCtrl
->parent
!= pWndDlg
))
1713 pWndCtrl
= pWndCtrl
->parent
;
1714 if (pWndCtrl
->parent
!= pWndDlg
) return 0;
1718 /* No ctrl specified -> start from the beginning */
1719 if (!(pWndCtrl
= pWndDlg
->child
)) return 0;
1720 if (!fPrevious
) while (pWndCtrl
->next
) pWndCtrl
= pWndCtrl
->next
;
1723 pWndLast
= pWndCtrl
;
1724 pWnd
= pWndCtrl
->next
;
1727 if (!pWnd
) pWnd
= pWndDlg
->child
;
1728 if (pWnd
== pWndCtrl
) break;
1729 if ((pWnd
->dwStyle
& WS_TABSTOP
) && (pWnd
->dwStyle
& WS_VISIBLE
) &&
1730 !(pWnd
->dwStyle
& WS_DISABLED
))
1733 if (!fPrevious
) break;
1737 return pWndLast
->hwndSelf
;
1741 /**********************************************************************
1742 * DIALOG_DlgDirSelect
1744 * Helper function for DlgDirSelect*
1746 static BOOL
DIALOG_DlgDirSelect( HWND hwnd
, LPSTR str
, INT len
,
1747 INT id
, BOOL win32
, BOOL unicode
,
1753 HWND listbox
= GetDlgItem( hwnd
, id
);
1755 TRACE(dialog
, "%04x '%s' %d\n", hwnd
, str
, id
);
1756 if (!listbox
) return FALSE
;
1759 item
= SendMessageA(listbox
, combo
? CB_GETCURSEL
1760 : LB_GETCURSEL
, 0, 0 );
1761 if (item
== LB_ERR
) return FALSE
;
1762 size
= SendMessageA(listbox
, combo
? CB_GETLBTEXTLEN
1763 : LB_GETTEXTLEN
, 0, 0 );
1764 if (size
== LB_ERR
) return FALSE
;
1768 item
= SendMessageA(listbox
, combo
? CB_GETCURSEL16
1769 : LB_GETCURSEL16
, 0, 0 );
1770 if (item
== LB_ERR
) return FALSE
;
1771 size
= SendMessageA(listbox
, combo
? CB_GETLBTEXTLEN16
1772 : LB_GETTEXTLEN16
, 0, 0 );
1773 if (size
== LB_ERR
) return FALSE
;
1776 if (!(buffer
= SEGPTR_ALLOC( size
+1 ))) return FALSE
;
1779 SendMessageA( listbox
, combo
? CB_GETLBTEXT
: LB_GETTEXT
,
1780 item
, (LPARAM
)buffer
);
1782 SendMessage16( listbox
, combo
? CB_GETLBTEXT16
: LB_GETTEXT16
,
1783 item
, (LPARAM
)SEGPTR_GET(buffer
) );
1785 if ((ret
= (buffer
[0] == '['))) /* drive or directory */
1787 if (buffer
[1] == '-') /* drive */
1795 buffer
[strlen(buffer
)-1] = '\\';
1801 if (unicode
) lstrcpynAtoW( (LPWSTR
)str
, ptr
, len
);
1802 else lstrcpynA( str
, ptr
, len
);
1803 SEGPTR_FREE( buffer
);
1804 TRACE(dialog
, "Returning %d '%s'\n", ret
, str
);
1809 /**********************************************************************
1812 * Helper function for DlgDirList*
1814 static INT
DIALOG_DlgDirList( HWND hDlg
, LPSTR spec
, INT idLBox
,
1815 INT idStatic
, UINT attrib
, BOOL combo
)
1819 LPSTR orig_spec
= spec
;
1821 #define SENDMSG(msg,wparam,lparam) \
1822 ((attrib & DDL_POSTMSGS) ? PostMessageA( hwnd, msg, wparam, lparam ) \
1823 : SendMessageA( hwnd, msg, wparam, lparam ))
1825 TRACE(dialog
, "%04x '%s' %d %d %04x\n",
1826 hDlg
, spec
? spec
: "NULL", idLBox
, idStatic
, attrib
);
1828 if (spec
&& spec
[0] && (spec
[1] == ':'))
1830 drive
= toupper( spec
[0] ) - 'A';
1832 if (!DRIVE_SetCurrentDrive( drive
)) return FALSE
;
1834 else drive
= DRIVE_GetCurrentDrive();
1836 /* If the path exists and is a directory, chdir to it */
1837 if (!spec
|| !spec
[0] || DRIVE_Chdir( drive
, spec
)) spec
= "*.*";
1842 if ((p2
= strrchr( p
, '\\' ))) p
= p2
;
1843 if ((p2
= strrchr( p
, '/' ))) p
= p2
;
1848 if (!DRIVE_Chdir( drive
, spec
))
1850 *p
= sep
; /* Restore the original spec */
1857 TRACE(dialog
, "path=%c:\\%s mask=%s\n",
1858 'A' + drive
, DRIVE_GetDosCwd(drive
), spec
);
1860 if (idLBox
&& ((hwnd
= GetDlgItem( hDlg
, idLBox
)) != 0))
1862 SENDMSG( combo
? CB_RESETCONTENT
: LB_RESETCONTENT
, 0, 0 );
1863 if (attrib
& DDL_DIRECTORY
)
1865 if (!(attrib
& DDL_EXCLUSIVE
))
1867 if (SENDMSG( combo
? CB_DIR
: LB_DIR
,
1868 attrib
& ~(DDL_DIRECTORY
| DDL_DRIVES
),
1869 (LPARAM
)spec
) == LB_ERR
)
1872 if (SENDMSG( combo
? CB_DIR
: LB_DIR
,
1873 (attrib
& (DDL_DIRECTORY
| DDL_DRIVES
)) | DDL_EXCLUSIVE
,
1874 (LPARAM
)"*.*" ) == LB_ERR
)
1879 if (SENDMSG( combo
? CB_DIR
: LB_DIR
, attrib
,
1880 (LPARAM
)spec
) == LB_ERR
)
1885 if (idStatic
&& ((hwnd
= GetDlgItem( hDlg
, idStatic
)) != 0))
1888 int drive
= DRIVE_GetCurrentDrive();
1889 strcpy( temp
, "A:\\" );
1891 lstrcpynA( temp
+ 3, DRIVE_GetDosCwd(drive
), sizeof(temp
)-3 );
1893 /* Can't use PostMessage() here, because the string is on the stack */
1894 SetDlgItemTextA( hDlg
, idStatic
, temp
);
1897 if (orig_spec
&& (spec
!= orig_spec
))
1899 /* Update the original file spec */
1901 while ((*orig_spec
++ = *p
++));
1909 /**********************************************************************
1910 * DIALOG_DlgDirListW
1912 * Helper function for DlgDirList*32W
1914 static INT
DIALOG_DlgDirListW( HWND hDlg
, LPWSTR spec
, INT idLBox
,
1915 INT idStatic
, UINT attrib
, BOOL combo
)
1919 LPSTR specA
= HEAP_strdupWtoA( GetProcessHeap(), 0, spec
);
1920 INT ret
= DIALOG_DlgDirList( hDlg
, specA
, idLBox
, idStatic
,
1922 lstrcpyAtoW( spec
, specA
);
1923 HeapFree( GetProcessHeap(), 0, specA
);
1926 return DIALOG_DlgDirList( hDlg
, NULL
, idLBox
, idStatic
, attrib
, combo
);
1930 /**********************************************************************
1931 * DlgDirSelect (USER.99)
1933 BOOL16 WINAPI
DlgDirSelect16( HWND16 hwnd
, LPSTR str
, INT16 id
)
1935 return DlgDirSelectEx16( hwnd
, str
, 128, id
);
1939 /**********************************************************************
1940 * DlgDirSelectComboBox (USER.194)
1942 BOOL16 WINAPI
DlgDirSelectComboBox16( HWND16 hwnd
, LPSTR str
, INT16 id
)
1944 return DlgDirSelectComboBoxEx16( hwnd
, str
, 128, id
);
1948 /**********************************************************************
1949 * DlgDirSelectEx16 (USER.422)
1951 BOOL16 WINAPI
DlgDirSelectEx16( HWND16 hwnd
, LPSTR str
, INT16 len
, INT16 id
)
1953 return DIALOG_DlgDirSelect( hwnd
, str
, len
, id
, FALSE
, FALSE
, FALSE
);
1957 /**********************************************************************
1958 * DlgDirSelectEx32A (USER32.149)
1960 BOOL WINAPI
DlgDirSelectExA( HWND hwnd
, LPSTR str
, INT len
, INT id
)
1962 return DIALOG_DlgDirSelect( hwnd
, str
, len
, id
, TRUE
, FALSE
, FALSE
);
1966 /**********************************************************************
1967 * DlgDirSelectEx32W (USER32.150)
1969 BOOL WINAPI
DlgDirSelectExW( HWND hwnd
, LPWSTR str
, INT len
, INT id
)
1971 return DIALOG_DlgDirSelect( hwnd
, (LPSTR
)str
, len
, id
, TRUE
, TRUE
, FALSE
);
1975 /**********************************************************************
1976 * DlgDirSelectComboBoxEx16 (USER.423)
1978 BOOL16 WINAPI
DlgDirSelectComboBoxEx16( HWND16 hwnd
, LPSTR str
, INT16 len
,
1981 return DIALOG_DlgDirSelect( hwnd
, str
, len
, id
, FALSE
, FALSE
, TRUE
);
1985 /**********************************************************************
1986 * DlgDirSelectComboBoxEx32A (USER32.147)
1988 BOOL WINAPI
DlgDirSelectComboBoxExA( HWND hwnd
, LPSTR str
, INT len
,
1991 return DIALOG_DlgDirSelect( hwnd
, str
, len
, id
, TRUE
, FALSE
, TRUE
);
1995 /**********************************************************************
1996 * DlgDirSelectComboBoxEx32W (USER32.148)
1998 BOOL WINAPI
DlgDirSelectComboBoxExW( HWND hwnd
, LPWSTR str
, INT len
,
2001 return DIALOG_DlgDirSelect( hwnd
, (LPSTR
)str
, len
, id
, TRUE
, TRUE
, TRUE
);
2005 /**********************************************************************
2006 * DlgDirList16 (USER.100)
2008 INT16 WINAPI
DlgDirList16( HWND16 hDlg
, LPSTR spec
, INT16 idLBox
,
2009 INT16 idStatic
, UINT16 attrib
)
2011 return DIALOG_DlgDirList( hDlg
, spec
, idLBox
, idStatic
, attrib
, FALSE
);
2015 /**********************************************************************
2016 * DlgDirList32A (USER32.143)
2018 INT WINAPI
DlgDirListA( HWND hDlg
, LPSTR spec
, INT idLBox
,
2019 INT idStatic
, UINT attrib
)
2021 return DIALOG_DlgDirList( hDlg
, spec
, idLBox
, idStatic
, attrib
, FALSE
);
2025 /**********************************************************************
2026 * DlgDirList32W (USER32.146)
2028 INT WINAPI
DlgDirListW( HWND hDlg
, LPWSTR spec
, INT idLBox
,
2029 INT idStatic
, UINT attrib
)
2031 return DIALOG_DlgDirListW( hDlg
, spec
, idLBox
, idStatic
, attrib
, FALSE
);
2035 /**********************************************************************
2036 * DlgDirListComboBox16 (USER.195)
2038 INT16 WINAPI
DlgDirListComboBox16( HWND16 hDlg
, LPSTR spec
, INT16 idCBox
,
2039 INT16 idStatic
, UINT16 attrib
)
2041 return DIALOG_DlgDirList( hDlg
, spec
, idCBox
, idStatic
, attrib
, TRUE
);
2045 /**********************************************************************
2046 * DlgDirListComboBox32A (USER32.144)
2048 INT WINAPI
DlgDirListComboBoxA( HWND hDlg
, LPSTR spec
, INT idCBox
,
2049 INT idStatic
, UINT attrib
)
2051 return DIALOG_DlgDirList( hDlg
, spec
, idCBox
, idStatic
, attrib
, TRUE
);
2055 /**********************************************************************
2056 * DlgDirListComboBox32W (USER32.145)
2058 INT WINAPI
DlgDirListComboBoxW( HWND hDlg
, LPWSTR spec
, INT idCBox
,
2059 INT idStatic
, UINT attrib
)
2061 return DIALOG_DlgDirListW( hDlg
, spec
, idCBox
, idStatic
, attrib
, TRUE
);