1 /* Unit test suite for the dialog functions.
3 * Copyright 2004 Bill Medland
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 * This test suite currently works by building a quite complex hierarchy of
22 * objects in a variety of styles and then performs a limited number of tests
23 * for the previous and next dialog group or tab items.
25 * The test specifically does not test all possibilities at this time since
26 * there are several cases where the Windows behaviour is rather strange and
27 * significant work would be required to get the Wine code to duplicate the
28 * strangeness, especially since most are in situations that would not
36 #define WINVER 0x0600 /* For NONCLIENTMETRICS with padding */
38 #include "wine/test.h"
45 static HWND hwnd
[MAXHWNDS
];
46 static unsigned int numwnds
=1; /* 0 is reserved for null */
49 static HINSTANCE g_hinst
; /* This application's HINSTANCE */
50 static HWND g_hwndMain
, g_hwndButton1
, g_hwndButton2
, g_hwndButtonCancel
;
51 static HWND g_hwndTestDlg
, g_hwndTestDlgBut1
, g_hwndTestDlgBut2
, g_hwndTestDlgEdit
;
52 static HWND g_hwndInitialFocusT1
, g_hwndInitialFocusT2
, g_hwndInitialFocusGroupBox
;
54 static LONG g_styleInitialFocusT1
, g_styleInitialFocusT2
;
55 static BOOL g_bInitialFocusInitDlgResult
, g_bReceivedCommand
;
57 static int g_terminated
;
66 static const h_entry hierarchy
[] = {
67 /* 0 is reserved for the null window */
68 { 1, 0, WS_OVERLAPPEDWINDOW
| WS_CLIPSIBLINGS
, WS_EX_WINDOWEDGE
},
69 { 20, 1, WS_CHILD
| WS_VISIBLE
| WS_GROUP
, 0},
70 { 2, 1, WS_CHILD
| WS_VISIBLE
, WS_EX_CONTROLPARENT
},
71 { 60, 2, WS_CHILD
| WS_VISIBLE
| WS_TABSTOP
, 0},
72 /* What happens with groups when the parent is disabled */
73 { 8, 2, WS_CHILD
| WS_VISIBLE
| WS_DISABLED
| WS_TABSTOP
, WS_EX_CONTROLPARENT
},
74 { 85, 8, WS_CHILD
| WS_VISIBLE
| WS_TABSTOP
| WS_GROUP
, 0},
75 { 9, 8, WS_CHILD
, WS_EX_CONTROLPARENT
},
76 { 86, 9, WS_CHILD
| WS_VISIBLE
, 0},
77 { 87, 9, WS_CHILD
| WS_VISIBLE
, 0},
78 { 31, 8, WS_CHILD
| WS_VISIBLE
| WS_GROUP
, 0},
79 { 10, 2, WS_CHILD
| WS_VISIBLE
, WS_EX_CONTROLPARENT
},
80 { 88, 10, WS_CHILD
| WS_VISIBLE
| WS_GROUP
, 0},
81 { 11, 10, WS_CHILD
, WS_EX_CONTROLPARENT
},
82 { 89, 11, WS_CHILD
| WS_VISIBLE
, 0},
83 { 32, 11, WS_CHILD
| WS_VISIBLE
| WS_GROUP
, 0},
84 { 90, 11, WS_CHILD
| WS_VISIBLE
, 0},
85 { 33, 10, WS_CHILD
| WS_VISIBLE
| WS_GROUP
, 0},
86 { 21, 2, WS_CHILD
| WS_VISIBLE
| WS_GROUP
, 0},
87 { 61, 2, WS_CHILD
| WS_VISIBLE
| WS_TABSTOP
, 0},
88 { 3, 1, WS_CHILD
| WS_VISIBLE
| DS_CONTROL
, 0},
89 { 22, 3, WS_CHILD
| WS_VISIBLE
| WS_GROUP
, 0},
90 { 62, 3, WS_CHILD
| WS_VISIBLE
| WS_TABSTOP
, 0},
91 { 7, 3, WS_CHILD
| WS_VISIBLE
, WS_EX_CONTROLPARENT
},
92 { 4, 7, WS_CHILD
| WS_VISIBLE
| DS_CONTROL
, 0},
93 { 83, 4, WS_CHILD
| WS_VISIBLE
, 0},
94 { 5, 4, WS_CHILD
| WS_VISIBLE
| DS_CONTROL
, 0},
95 /* A couple of controls around the main dialog */
96 { 29, 5, WS_CHILD
| WS_VISIBLE
| WS_GROUP
, 0},
97 { 81, 5, WS_CHILD
| WS_VISIBLE
, 0},
98 /* The main dialog with lots of controls */
99 { 6, 5, WS_CHILD
| WS_VISIBLE
, WS_EX_CONTROLPARENT
},
100 /* At the start of a dialog */
101 /* Disabled controls are skipped */
102 { 63, 6, WS_CHILD
| WS_VISIBLE
| WS_DISABLED
| WS_TABSTOP
, 0},
103 /* Invisible controls are skipped */
104 { 64, 6, WS_CHILD
| WS_TABSTOP
, 0},
105 /* Invisible disabled controls are skipped */
106 { 65, 6, WS_CHILD
| WS_DISABLED
| WS_TABSTOP
, 0},
107 /* Non-tabstop controls are skipped for tabs but not for groups */
108 { 66, 6, WS_CHILD
| WS_VISIBLE
, 0},
109 /* End of first group, with no tabstops in it */
110 { 23, 6, WS_CHILD
| WS_VISIBLE
| WS_GROUP
, 0},
111 /* At last a tabstop */
112 { 67, 6, WS_CHILD
| WS_VISIBLE
| WS_TABSTOP
, 0},
113 /* A group that is totally disabled or invisible */
114 { 24, 6, WS_CHILD
| WS_DISABLED
| WS_GROUP
, 0},
115 { 68, 6, WS_CHILD
| WS_VISIBLE
| WS_DISABLED
| WS_TABSTOP
, 0},
116 { 69, 6, WS_CHILD
| WS_TABSTOP
, 0},
117 /* A valid group in the middle of the dialog (not the first nor last group*/
118 { 25, 6, WS_CHILD
| WS_VISIBLE
| WS_GROUP
, 0},
119 /* A non-tabstop item will be skipped for tabs */
120 { 70, 6, WS_CHILD
| WS_VISIBLE
, 0},
121 /* A disabled item will be skipped for tabs and groups */
122 { 71, 6, WS_CHILD
| WS_VISIBLE
| WS_DISABLED
| WS_TABSTOP
, 0},
123 /* A valid item will be found for tabs and groups */
124 { 72, 6, WS_CHILD
| WS_VISIBLE
| WS_TABSTOP
, 0},
125 /* A disabled item to skip when looking for the next group item */
126 { 73, 6, WS_CHILD
| WS_VISIBLE
| WS_DISABLED
| WS_TABSTOP
, 0},
127 /* The next group begins with an enabled visible label */
128 { 26, 6, WS_CHILD
| WS_VISIBLE
| WS_GROUP
, 0},
129 { 74, 6, WS_CHILD
| WS_VISIBLE
| WS_TABSTOP
, 0},
130 { 75, 6, WS_CHILD
| WS_VISIBLE
| WS_TABSTOP
, 0},
131 /* That group is terminated by a disabled label */
132 { 27, 6, WS_CHILD
| WS_VISIBLE
| WS_DISABLED
| WS_GROUP
, 0},
133 { 76, 6, WS_CHILD
| WS_VISIBLE
| WS_TABSTOP
, 0},
134 { 77, 6, WS_CHILD
| WS_VISIBLE
| WS_TABSTOP
, 0},
135 /* That group is terminated by an invisible label */
136 { 28, 6, WS_CHILD
| WS_GROUP
, 0},
137 /* The end of the dialog with item for loop and recursion testing */
138 { 78, 6, WS_CHILD
| WS_VISIBLE
| WS_TABSTOP
, 0},
139 /* No tabstop so skipped for prev tab, but found for prev group */
140 { 79, 6, WS_CHILD
| WS_VISIBLE
, 0},
141 { 80, 6, WS_CHILD
| WS_VISIBLE
| WS_DISABLED
| WS_TABSTOP
, 0},
142 /* A couple of controls after the main dialog */
143 { 82, 5, WS_CHILD
| WS_VISIBLE
, 0},
144 { 30, 5, WS_CHILD
| WS_VISIBLE
| WS_GROUP
, 0},
145 /* And around them */
146 { 84, 4, WS_CHILD
| WS_VISIBLE
| WS_TABSTOP
, 0},
150 static BOOL
CreateWindows (HINSTANCE hinst
)
152 const h_entry
*p
= hierarchy
;
156 DWORD style
, exstyle
;
159 /* Basically assert that the hierarchy is valid and track the
160 * maximum control number
162 if (p
->id
>= numwnds
)
164 if (p
->id
>= sizeof(hwnd
)/sizeof(hwnd
[0]))
166 trace ("Control %ld is out of range\n", p
->id
);
174 trace ("Control %ld is out of range\n", p
->id
);
177 if (hwnd
[p
->id
] != 0)
179 trace ("Control %ld is used more than once\n", p
->id
);
183 /* Create the control */
184 sprintf (ctrlname
, "ctrl%4.4ld", p
->id
);
185 hwnd
[p
->id
] = CreateWindowEx (p
->exstyle
, TEXT(p
->parent
? "static" : "GetNextDlgItemWindowClass"), TEXT(ctrlname
), p
->style
, 10, 10, 10, 10, hwnd
[p
->parent
], p
->parent
? (HMENU
) (2000 + p
->id
) : 0, hinst
, 0);
188 trace ("Failed to create control %ld\n", p
->id
);
192 /* Check that the styles are as we specified (except the main one
193 * which is quite frequently messed up). If this keeps breaking then
194 * we could mask out the bits that don't concern us.
198 style
= GetWindowLong (hwnd
[p
->id
], GWL_STYLE
);
199 exstyle
= GetWindowLong (hwnd
[p
->id
], GWL_EXSTYLE
);
200 if (style
!= p
->style
|| exstyle
!= p
->exstyle
)
202 trace ("Style mismatch at %ld: %8.8x %8.8x cf %8.8x %8.8x\n", p
->id
, style
, exstyle
, p
->style
, p
->exstyle
);
211 /* Form the lParam of a WM_KEYDOWN message */
212 static DWORD
KeyDownData (int repeat
, int scancode
, int extended
, int wasdown
)
214 return ((repeat
& 0x0000FFFF) | ((scancode
& 0x00FF) << 16) |
215 (extended
? 0x01000000 : 0) | (wasdown
? 0x40000000 : 0));
218 /* Form a WM_KEYDOWN VK_TAB message to the specified window */
219 static void FormTabMsg (MSG
*pMsg
, HWND hwnd
)
222 pMsg
->message
= WM_KEYDOWN
;
223 pMsg
->wParam
= VK_TAB
;
224 pMsg
->lParam
= KeyDownData (1, 0x0F, 0, 0);
225 /* pMsg->time is not set. It shouldn't be needed */
226 /* pMsg->pt is ignored */
229 /* Form a WM_KEYDOWN VK_RETURN message to the specified window */
230 static void FormEnterMsg (MSG
*pMsg
, HWND hwnd
)
233 pMsg
->message
= WM_KEYDOWN
;
234 pMsg
->wParam
= VK_RETURN
;
235 pMsg
->lParam
= KeyDownData (1, 0x1C, 0, 0);
236 /* pMsg->time is not set. It shouldn't be needed */
237 /* pMsg->pt is ignored */
240 /***********************************************************************
247 int isok
; /* or is it todo */
256 static int id (HWND h
)
259 for (i
= 0; i
< numwnds
; i
++)
267 * Tests 1-8 test the hCtl argument of null or the dialog itself.
269 * 1. Prev Group of null is null
270 * 2. Prev Tab of null is null
271 * 3. Prev Group of hDlg in hDlg is null
272 * 4. Prev Tab of hDlg in hDlg is null
273 * 5. Next Group of null is first visible enabled child
274 * Check it skips invisible, disabled and both.
275 * 6. Next Tab of null is first visible enabled tabstop
276 * Check it skips invisible, disabled, nontabstop, and in combination.
277 * 7. Next Group of hDlg in hDlg is as of null
278 * 8. Next Tab of hDlg in hDlg is as of null
280 * Tests 9-14 test descent
282 * 9. DS_CONTROL does not result in descending the hierarchy for Tab Next
283 * 10. DS_CONTROL does not result in descending the hierarchy for Group Next
284 * 11. WS_EX_CONTROLPARENT results in descending the hierarchy for Tab Next
285 * 12. WS_EX_CONTROLPARENT results in descending the hierarchy for Group Next
286 * 13. WS_EX_CONTROLPARENT results in descending the hierarchy for Tab Prev
287 * 14. WS_EX_CONTROLPARENT results in descending the hierarchy for Group Prev
289 * Tests 15-24 are the basic Prev/Next Group tests
291 * 15. Next Group of a visible enabled non-group control is the next visible
292 * enabled non-group control, if there is one before the next group
293 * 16. Next Group of a visible enabled non-group control wraps around to the
294 * beginning of the group on finding a control that starts another group.
295 * Note that the group is in the middle of the dialog.
296 * 17. As 16 except note that the next group is started with a disabled
298 * 18. As 16 except note that the next group is started with an invisible
300 * 19. Next Group wraps around the controls of the dialog
301 * 20. Next Group is the same even if the initial control is disabled.
302 * 21. Next Group is the same even if the initial control is invisible.
303 * 22. Next Group is the same even if the initial control has the group style
304 * 23. Next Group returns the initial control if there is no visible enabled
305 * control in the group. (Initial control disabled and not group style).
306 * 24. Prev version of test 16.
307 * Prev Group of a visible enabled non-group control wraps around to the
308 * beginning of the group on finding a control that starts the group.
309 * Note that the group is in the middle of the dialog.
311 * In tests 25 to 28 the control is sitting under dialogs which do not have
312 * the WS_EX_CONTROLPARENT style and so cannot be reached from the top of
315 * 25. Next Group of an inaccessible control is as if it were accessible
316 * 26. Prev Group of an inaccessible control begins searching at the highest
317 * level ancestor that did not permit recursion down the hierarchy
318 * 27. Next Tab of an inaccessible control is as if it were accessible
319 * 28. Prev Tab of an inaccessible control begins searching at the highest
320 * level ancestor that did not permit recursion down the hierarchy.
322 * Tests 29- are the basic Tab tests
324 * 29. Next Tab of a control is the next visible enabled control with the
325 * Tabstop style (N.B. skips disabled, invisible and non-tabstop)
326 * 30. Prev Tab of a control is the previous visible enabled control with the
327 * Tabstop style (N.B. skips disabled, invisible and non-tabstop)
328 * 31. Next Tab test with at least two layers of descent and finding the
329 * result not at the first control.
330 * 32. Next Tab test with at least two layers of descent with the descent and
331 * control at the start of each level.
332 * 33. Prev Tab test with at least two layers of descent and finding the
333 * result not at the last control.
334 * 34. Prev Tab test with at least two layers of descent with the descent and
335 * control at the end of each level.
337 * 35. Passing NULL may result in the first child being the one returned.
339 * 36. Passing NULL may result in the first child being the one returned.
343 static void test_GetNextDlgItem(void)
345 static test_record test
[] =
347 /* isok test dlg ctl tab prev res */
349 { 1, 1, 6, 0, 0, 1, 0},
350 { 1, 2, 6, 0, 1, 1, 0},
351 { 1, 3, 6, 6, 0, 1, 0},
352 { 1, 4, 6, 6, 1, 1, 0},
353 { 1, 5, 6, 0, 0, 0, 66},
354 { 1, 6, 6, 0, 1, 0, 67},
355 { 1, 7, 6, 6, 0, 0, 66},
356 { 1, 8, 6, 6, 1, 0, 67},
358 { 1, 9, 4, 83, 1, 0, 84},
359 { 1, 10, 4, 83, 0, 0, 5},
360 { 1, 11, 5, 81, 1, 0, 67},
361 { 1, 12, 5, 81, 0, 0, 66},
362 { 1, 13, 5, 82, 1, 1, 78},
364 { 1, 14, 5, 82, 0, 1, 79},
365 { 1, 15, 6, 70, 0, 0, 72},
366 { 1, 16, 6, 72, 0, 0, 25},
367 { 1, 17, 6, 75, 0, 0, 26},
368 { 1, 18, 6, 77, 0, 0, 76},
369 { 1, 19, 6, 79, 0, 0, 66},
370 { 1, 20, 6, 71, 0, 0, 72},
371 { 1, 21, 6, 64, 0, 0, 66},
373 { 1, 22, 6, 25, 0, 0, 70},
374 { 1, 23, 6, 68, 0, 0, 68},
375 { 1, 24, 6, 25, 0, 1, 72},
376 { 1, 25, 1, 70, 0, 0, 72},
377 /*{ 0, 26, 1, 70, 0, 1, 3}, Crashes Win95*/
378 { 1, 27, 1, 70, 1, 0, 72},
379 /*{ 0, 28, 1, 70, 1, 1, 61}, Crashes Win95*/
381 { 1, 29, 6, 67, 1, 0, 72},
382 { 1, 30, 6, 72, 1, 1, 67},
384 { 1, 35, 2, 0, 0, 0, 60},
385 { 1, 36, 2, 0, 1, 0, 60},
387 { 0, 0, 0, 0, 0, 0, 0} /* End of test */
389 const test_record
*p
= test
;
391 ok (CreateWindows (g_hinst
), "Could not create test windows\n");
396 a
= (p
->tab
? GetNextDlgTabItem
: GetNextDlgGroupItem
) (hwnd
[p
->dlg
], hwnd
[p
->ctl
], p
->prev
);
399 ok (a
== hwnd
[p
->res
], "Test %d: %s %s item of %d in %d was %d instead of %d\n", p
->test
, p
->prev
? "Prev" : "Next", p
->tab
? "Tab" : "Group", p
->ctl
, p
->dlg
, id(a
), p
->res
);
405 ok (a
== hwnd
[p
->res
], "Test %d: %s %s item of %d in %d was actually %d matching expected %d\n", p
->test
, p
->prev
? "Prev" : "Next", p
->tab
? "Tab" : "Group", p
->ctl
, p
->dlg
, id(a
), p
->res
);
415 static BOOL
OnMainWindowCreate (HWND hwnd
, LPCREATESTRUCT lpcs
)
417 g_hwndButton1
= CreateWindow (TEXT("button"), TEXT("Button &1"),
418 WS_CHILD
| WS_VISIBLE
| WS_TABSTOP
| BS_DEFPUSHBUTTON
| BS_TEXT
,
419 10, 10, 80, 80, hwnd
, (HMENU
)100, g_hinst
, 0);
420 if (!g_hwndButton1
) return FALSE
;
422 g_hwndButton2
= CreateWindow (TEXT("button"), TEXT("Button &2"),
423 WS_CHILD
| WS_VISIBLE
| BS_PUSHBUTTON
| BS_TEXT
,
424 110, 10, 80, 80, hwnd
, (HMENU
)200, g_hinst
, 0);
425 if (!g_hwndButton2
) return FALSE
;
427 g_hwndButtonCancel
= CreateWindow (TEXT("button"), TEXT("Cancel"),
428 WS_CHILD
| WS_VISIBLE
| WS_TABSTOP
| BS_PUSHBUTTON
| BS_TEXT
,
429 210, 10, 80, 80, hwnd
, (HMENU
)IDCANCEL
, g_hinst
, 0);
430 if (!g_hwndButtonCancel
) return FALSE
;
440 static BOOL
OnTestDlgCreate (HWND hwnd
, LPCREATESTRUCT lpcs
)
442 g_hwndTestDlgEdit
= CreateWindowEx ( WS_EX_LEFT
| WS_EX_LTRREADING
|
443 WS_EX_RIGHTSCROLLBAR
| WS_EX_NOPARENTNOTIFY
| WS_EX_CLIENTEDGE
,
444 TEXT("Edit"), TEXT("Edit"),
445 WS_CHILDWINDOW
| WS_VISIBLE
| WS_TABSTOP
| ES_LEFT
| ES_AUTOHSCROLL
,
446 16,33,184,24, hwnd
, (HMENU
)101, g_hinst
, 0);
447 if (!g_hwndTestDlgEdit
) return FALSE
;
449 g_hwndTestDlgBut1
= CreateWindowEx ( WS_EX_LEFT
| WS_EX_LTRREADING
| WS_EX_RIGHTSCROLLBAR
450 | WS_EX_NOPARENTNOTIFY
,
451 TEXT("button"), TEXT("Button &1"),
452 WS_CHILDWINDOW
| WS_VISIBLE
| WS_TABSTOP
| BS_PUSHBUTTON
| BS_TEXT
,
453 204,33,30,24, hwnd
, (HMENU
)201, g_hinst
, 0);
454 if (!g_hwndTestDlgBut1
) return FALSE
;
456 g_hwndTestDlgBut2
= CreateWindowEx ( WS_EX_LEFT
| WS_EX_LTRREADING
| WS_EX_RIGHTSCROLLBAR
457 | WS_EX_NOPARENTNOTIFY
, TEXT("button"),
459 WS_CHILDWINDOW
| WS_VISIBLE
| WS_TABSTOP
| BS_PUSHBUTTON
| BS_TEXT
,
460 90,102,80,24, hwnd
, (HMENU
)IDCANCEL
, g_hinst
, 0);
461 if (!g_hwndTestDlgBut2
) return FALSE
;
466 static LRESULT CALLBACK
main_window_procA (HWND hwnd
, UINT uiMsg
, WPARAM wParam
,
471 /* Add blank case statements for these to ensure we don't use them
474 case DM_GETDEFID
: break;
475 case DM_SETDEFID
: break;
478 return (OnMainWindowCreate (hwnd
,
479 (LPCREATESTRUCTA
) lParam
) ? 0 : (LRESULT
) -1);
481 if (wParam
== IDCANCEL
)
489 return DefWindowProcA (hwnd
, uiMsg
, wParam
, lParam
);
492 static LRESULT CALLBACK
disabled_test_proc (HWND hwnd
, UINT uiMsg
,
493 WPARAM wParam
, LPARAM lParam
)
502 dw
= SendMessage(hwnd
, DM_GETDEFID
, 0, 0);
503 assert(DC_HASDEFID
== HIWORD(dw
));
504 hwndOk
= GetDlgItem(hwnd
, LOWORD(dw
));
506 EnableWindow(hwndOk
, FALSE
);
508 PostMessage(hwnd
, WM_KEYDOWN
, VK_RETURN
, 0);
509 PostMessage(hwnd
, WM_COMMAND
, IDCANCEL
, 0);
519 else if (wParam
== IDCANCEL
)
527 return DefWindowProcA (hwnd
, uiMsg
, wParam
, lParam
);
530 static LRESULT CALLBACK
testDlgWinProc (HWND hwnd
, UINT uiMsg
, WPARAM wParam
,
535 /* Add blank case statements for these to ensure we don't use them
538 case DM_GETDEFID
: break;
539 case DM_SETDEFID
: break;
542 return (OnTestDlgCreate (hwnd
,
543 (LPCREATESTRUCTA
) lParam
) ? 0 : (LRESULT
) -1);
545 if(LOWORD(wParam
) == 300) g_bReceivedCommand
= TRUE
;
548 return DefDlgProcA (hwnd
, uiMsg
, wParam
, lParam
);
551 static BOOL
RegisterWindowClasses (void)
556 cls
.lpfnWndProc
= DefWindowProcA
;
559 cls
.hInstance
= g_hinst
;
561 cls
.hCursor
= LoadCursorA (NULL
, IDC_ARROW
);
562 cls
.hbrBackground
= (HBRUSH
)(COLOR_WINDOW
+ 1);
563 cls
.lpszMenuName
= NULL
;
564 cls
.lpszClassName
= "GetNextDlgItemWindowClass";
566 if (!RegisterClassA (&cls
)) return FALSE
;
568 cls
.lpfnWndProc
= main_window_procA
;
569 cls
.lpszClassName
= "IsDialogMessageWindowClass";
571 if (!RegisterClassA (&cls
)) return FALSE
;
573 GetClassInfoA(0, "#32770", &cls
);
574 cls
.lpfnWndProc
= testDlgWinProc
;
575 cls
.lpszClassName
= "WM_NEXTDLGCTLWndClass";
576 if (!RegisterClassA (&cls
)) return FALSE
;
581 static void test_WM_NEXTDLGCTL(void)
583 HWND child1
, child2
, child3
;
587 g_hwndTestDlg
= CreateWindowEx( WS_EX_LEFT
| WS_EX_LTRREADING
| WS_EX_RIGHTSCROLLBAR
588 | WS_EX_DLGMODALFRAME
| WS_EX_WINDOWEDGE
| WS_EX_CONTROLPARENT
| WS_EX_APPWINDOW
,
589 "WM_NEXTDLGCTLWndClass",
590 "WM_NEXTDLGCTL Message test window",
591 WS_POPUPWINDOW
| WS_CLIPSIBLINGS
| WS_DLGFRAME
| WS_OVERLAPPED
|
592 WS_MINIMIZEBOX
| WS_MAXIMIZEBOX
| DS_3DLOOK
| DS_SETFONT
| DS_MODALFRAME
,
594 NULL
, NULL
, g_hinst
, 0);
596 assert (g_hwndTestDlg
);
597 assert (g_hwndTestDlgBut1
);
598 assert (g_hwndTestDlgBut2
);
599 assert (g_hwndTestDlgEdit
);
602 * Test message DM_SETDEFID
605 DefDlgProcA( g_hwndTestDlg
, DM_SETDEFID
, IDCANCEL
, 0 );
606 DefDlgProcA( g_hwndTestDlgBut1
, BM_SETSTYLE
, BS_DEFPUSHBUTTON
, FALSE
);
607 dwVal
= DefDlgProcA(g_hwndTestDlg
, DM_GETDEFID
, 0, 0);
609 ok ( IDCANCEL
== (LOWORD(dwVal
)), "Did not set default ID\n" );
612 * Check whether message WM_NEXTDLGCTL is changing the focus to next control and if
613 * the destination control is a button, style of the button should be changed to
614 * BS_DEFPUSHBUTTON with out making it default.
618 * Keep the focus on Edit control.
621 if ( SetFocus( g_hwndTestDlgEdit
) )
623 ok ((GetFocus() == g_hwndTestDlgEdit
), "Focus didn't set on Edit control\n");
626 * Test message WM_NEXTDLGCTL
628 DefDlgProcA( g_hwndTestDlg
, WM_NEXTDLGCTL
, 0, 0 );
629 ok ((GetFocus() == g_hwndTestDlgBut1
), "Focus didn't move to first button\n");
632 * Check whether the default button ID got changed by sending message "WM_NEXTDLGCTL"
634 dwVal
= DefDlgProcA(g_hwndTestDlg
, DM_GETDEFID
, 0, 0);
635 ok ( IDCANCEL
== (LOWORD(dwVal
)), "WM_NEXTDLGCTL changed default button\n");
638 * Check whether the style of the button which got the focus, changed to BS_DEFPUSHBUTTON and
639 * the style of default button changed to BS_PUSHBUTTON.
641 if ( IDCANCEL
== (LOWORD(dwVal
)) )
643 ok ( ((GetWindowLong( g_hwndTestDlgBut1
, GWL_STYLE
)) & BS_DEFPUSHBUTTON
),
644 "Button1 style not set to BS_DEFPUSHBUTTON\n" );
646 ok ( !((GetWindowLong( g_hwndTestDlgBut2
, GWL_STYLE
)) & BS_DEFPUSHBUTTON
),
647 "Button2's style not changed to BS_PUSHBUTTON\n" );
651 * Move focus to Button2 using "WM_NEXTDLGCTL"
653 DefDlgProcA( g_hwndTestDlg
, WM_NEXTDLGCTL
, 0, 0 );
654 ok ((GetFocus() == g_hwndTestDlgBut2
), "Focus didn't move to second button\n");
657 * Check whether the default button ID got changed by sending message "WM_NEXTDLGCTL"
659 dwVal
= DefDlgProcA(g_hwndTestDlg
, DM_GETDEFID
, 0, 0);
660 ok ( IDCANCEL
== (LOWORD(dwVal
)), "WM_NEXTDLGCTL changed default button\n");
663 * Check whether the style of the button which got the focus, changed to BS_DEFPUSHBUTTON and
664 * the style of button which lost the focus changed to BS_PUSHBUTTON.
666 if ( IDCANCEL
== (LOWORD(dwVal
)) )
668 ok ( ((GetWindowLong( g_hwndTestDlgBut2
, GWL_STYLE
)) & BS_DEFPUSHBUTTON
),
669 "Button2 style not set to BS_DEFPUSHBUTTON\n" );
671 ok ( !((GetWindowLong( g_hwndTestDlgBut1
, GWL_STYLE
)) & BS_DEFPUSHBUTTON
),
672 "Button1's style not changed to BS_PUSHBUTTON\n" );
676 * Move focus to Edit control using "WM_NEXTDLGCTL"
678 DefDlgProcA( g_hwndTestDlg
, WM_NEXTDLGCTL
, 0, 0 );
679 ok ((GetFocus() == g_hwndTestDlgEdit
), "Focus didn't move to Edit control\n");
682 * Check whether the default button ID got changed by sending message "WM_NEXTDLGCTL"
684 dwVal
= DefDlgProcA(g_hwndTestDlg
, DM_GETDEFID
, 0, 0);
685 ok ( IDCANCEL
== (LOWORD(dwVal
)), "WM_NEXTDLGCTL changed default button\n");
688 /* test nested default buttons */
690 child1
= CreateWindowA("button", "child1", WS_VISIBLE
|WS_CHILD
, 0, 0, 50, 50,
691 g_hwndTestDlg
, (HMENU
)100, g_hinst
, NULL
);
692 ok(child1
!= NULL
, "failed to create first child\n");
693 child2
= CreateWindowA("button", "child2", WS_VISIBLE
|WS_CHILD
, 60, 60, 30, 30,
694 g_hwndTestDlg
, (HMENU
)200, g_hinst
, NULL
);
695 ok(child2
!= NULL
, "failed to create second child\n");
696 /* create nested child */
697 child3
= CreateWindowA("button", "child3", WS_VISIBLE
|WS_CHILD
, 10, 10, 10, 10,
698 child1
, (HMENU
)300, g_hinst
, NULL
);
699 ok(child3
!= NULL
, "failed to create subchild\n");
701 DefDlgProcA( g_hwndTestDlg
, DM_SETDEFID
, 200, 0);
702 dwVal
= DefDlgProcA( g_hwndTestDlg
, DM_GETDEFID
, 0, 0);
703 ok(LOWORD(dwVal
) == 200, "expected 200, got %x\n", dwVal
);
705 DefDlgProcA( g_hwndTestDlg
, DM_SETDEFID
, 300, 0);
706 dwVal
= DefDlgProcA( g_hwndTestDlg
, DM_GETDEFID
, 0, 0);
707 ok(LOWORD(dwVal
) == 300, "expected 300, got %x\n", dwVal
);
708 ok(SendMessageW( child3
, WM_GETDLGCODE
, 0, 0) != DLGC_DEFPUSHBUTTON
,
709 "expected child3 not to be marked as DLGC_DEFPUSHBUTTON\n");
711 g_bReceivedCommand
= FALSE
;
712 FormEnterMsg (&msg
, child3
);
713 ok(IsDialogMessage (g_hwndTestDlg
, &msg
), "Did not handle the ENTER\n");
714 ok(g_bReceivedCommand
, "Did not trigger the default Button action\n");
716 DestroyWindow(child3
);
717 DestroyWindow(child2
);
718 DestroyWindow(child1
);
719 DestroyWindow(g_hwndTestDlg
);
722 static void test_IsDialogMessage(void)
726 g_hwndMain
= CreateWindow ("IsDialogMessageWindowClass", "IsDialogMessageWindowClass",
728 CW_USEDEFAULT
, CW_USEDEFAULT
, CW_USEDEFAULT
, CW_USEDEFAULT
,
729 NULL
, NULL
, g_hinst
, 0);
732 assert (g_hwndButton1
);
733 assert (g_hwndButtonCancel
);
735 /* The focus should initially be nowhere. The first TAB should take it
736 * to the first button. The second TAB should take it to the Cancel
739 FormTabMsg (&msg
, g_hwndMain
);
740 ok (IsDialogMessage (g_hwndMain
, &msg
), "Did not handle first TAB\n");
741 ok ((GetFocus() == g_hwndButton1
), "Focus did not move to first button\n");
742 FormTabMsg (&msg
, g_hwndButton1
);
743 ok (IsDialogMessage (g_hwndMain
, &msg
), "Did not handle second TAB\n");
744 ok ((GetFocus() == g_hwndButtonCancel
),
745 "Focus did not move to cancel button\n");
746 FormEnterMsg (&msg
, g_hwndButtonCancel
);
747 ok (IsDialogMessage (g_hwndMain
, &msg
), "Did not handle the ENTER\n");
748 ok (g_terminated
, "ENTER did not terminate\n");
752 static INT_PTR CALLBACK
delayFocusDlgWinProc (HWND hDlg
, UINT uiMsg
, WPARAM wParam
,
759 g_hwndInitialFocusGroupBox
= GetDlgItem(hDlg
,100);
760 g_hwndButton1
= GetDlgItem(hDlg
,200);
761 g_hwndButton2
= GetDlgItem(hDlg
,201);
762 g_hwndButtonCancel
= GetDlgItem(hDlg
,IDCANCEL
);
763 g_styleInitialFocusT1
= GetWindowLong(g_hwndInitialFocusGroupBox
, GWL_STYLE
);
765 /* Initially check the second radio button */
766 SendMessage(g_hwndButton1
, BM_SETCHECK
, BST_UNCHECKED
, 0);
767 SendMessage(g_hwndButton2
, BM_SETCHECK
, BST_CHECKED
, 0);
768 /* Continue testing after dialog initialization */
769 PostMessage(hDlg
, WM_USER
, 0, 0);
770 return g_bInitialFocusInitDlgResult
;
773 if (LOWORD(wParam
) == IDCANCEL
)
775 EndDialog(hDlg
, LOWORD(wParam
));
781 g_styleInitialFocusT2
= GetWindowLong(hDlg
, GWL_STYLE
);
782 g_hwndInitialFocusT1
= GetFocus();
784 g_hwndInitialFocusT2
= GetFocus();
785 PostMessage(hDlg
, WM_COMMAND
, IDCANCEL
, 0);
792 static INT_PTR CALLBACK
focusDlgWinProc (HWND hDlg
, UINT uiMsg
, WPARAM wParam
,
801 if (LOWORD(wParam
) == 200)
803 if (HIWORD(wParam
) == EN_SETFOCUS
)
804 g_hwndInitialFocusT1
= (HWND
)lParam
;
812 /* Helper for InitialFocusTest */
813 static const char * GetHwndString(HWND hw
)
816 return "a null handle";
817 if (hw
== g_hwndMain
)
818 return "the dialog handle";
819 if (hw
== g_hwndInitialFocusGroupBox
)
820 return "the group box control";
821 if (hw
== g_hwndButton1
)
822 return "the first button";
823 if (hw
== g_hwndButton2
)
824 return "the second button";
825 if (hw
== g_hwndButtonCancel
)
826 return "the cancel button";
828 return "unknown handle";
831 static void test_initial_focus(void)
834 * This test intentionally returns FALSE in response to WM_INITDIALOG
835 * without setting focus to a control. This is what MFC's CFormView does.
837 * Since the WM_INITDIALOG handler returns FALSE without setting the focus,
838 * the focus should initially be NULL. Later, when we manually set focus to
839 * the dialog, the default handler should set focus to the first control that
840 * is "visible, not disabled, and has the WS_TABSTOP style" (MSDN). Because the
841 * second radio button has been checked, it should be the first control
842 * that meets these criteria and should receive the focus.
845 g_bInitialFocusInitDlgResult
= FALSE
;
846 g_hwndInitialFocusT1
= (HWND
) -1;
847 g_hwndInitialFocusT2
= (HWND
) -1;
848 g_styleInitialFocusT1
= -1;
849 g_styleInitialFocusT2
= -1;
851 DialogBoxA(g_hinst
, "RADIO_TEST_DIALOG", NULL
, delayFocusDlgWinProc
);
853 ok (((g_styleInitialFocusT1
& WS_TABSTOP
) == 0),
854 "Error in wrc - Detected WS_TABSTOP as default style for GROUPBOX\n");
856 ok (((g_styleInitialFocusT2
& WS_VISIBLE
) == 0),
857 "Modal dialogs should not be shown until the message queue first goes empty\n");
859 ok ((g_hwndInitialFocusT1
== NULL
),
860 "Error in initial focus when WM_INITDIALOG returned FALSE: "
861 "Expected NULL focus, got %s (%p).\n",
862 GetHwndString(g_hwndInitialFocusT1
), g_hwndInitialFocusT1
);
864 ok ((g_hwndInitialFocusT2
== g_hwndButton2
),
865 "Error after first SetFocus() when WM_INITDIALOG returned FALSE: "
866 "Expected the second button (%p), got %s (%p).\n",
867 g_hwndButton2
, GetHwndString(g_hwndInitialFocusT2
),
868 g_hwndInitialFocusT2
);
871 * This is the same as above, except WM_INITDIALOG is made to return TRUE.
872 * This should cause the focus to go to the second radio button right away
873 * and stay there (until the user indicates otherwise).
876 g_bInitialFocusInitDlgResult
= TRUE
;
877 g_hwndInitialFocusT1
= (HWND
) -1;
878 g_hwndInitialFocusT2
= (HWND
) -1;
879 g_styleInitialFocusT1
= -1;
880 g_styleInitialFocusT2
= -1;
882 DialogBoxA(g_hinst
, "RADIO_TEST_DIALOG", NULL
, delayFocusDlgWinProc
);
884 ok ((g_hwndInitialFocusT1
== g_hwndButton2
),
885 "Error in initial focus when WM_INITDIALOG returned TRUE: "
886 "Expected the second button (%p), got %s (%p).\n",
887 g_hwndButton2
, GetHwndString(g_hwndInitialFocusT1
),
888 g_hwndInitialFocusT1
);
890 ok ((g_hwndInitialFocusT2
== g_hwndButton2
),
891 "Error after first SetFocus() when WM_INITDIALOG returned TRUE: "
892 "Expected the second button (%p), got %s (%p).\n",
893 g_hwndButton2
, GetHwndString(g_hwndInitialFocusT2
),
894 g_hwndInitialFocusT2
);
897 * If the dialog has DS_CONTROL and it's not visible then we shouldn't change focus */
902 DLGTEMPLATE
* pTemplate
;
904 hResource
= FindResourceA(g_hinst
,"FOCUS_TEST_DIALOG", RT_DIALOG
);
905 hTemplate
= LoadResource(g_hinst
, hResource
);
906 pTemplate
= LockResource(hTemplate
);
908 g_hwndInitialFocusT1
= 0;
909 hDlg
= CreateDialogIndirectParamA(g_hinst
, pTemplate
, NULL
, focusDlgWinProc
, 0);
910 ok (hDlg
!= 0, "Failed to create test dialog.\n");
912 ok ((g_hwndInitialFocusT1
== 0),
913 "Focus should not be set for an invisible DS_CONTROL dialog %p.\n", g_hwndInitialFocusT1
);
919 * If the dialog has no tab-accessible controls, set focus to first control */
924 DLGTEMPLATE
* pTemplate
;
927 hResource
= FindResourceA(g_hinst
,"FOCUS_TEST_DIALOG_2", RT_DIALOG
);
928 hTemplate
= LoadResource(g_hinst
, hResource
);
929 pTemplate
= LockResource(hTemplate
);
931 hDlg
= CreateDialogIndirectParamA(g_hinst
, pTemplate
, NULL
, focusDlgWinProc
, 0);
932 g_hwndInitialFocusT1
= GetFocus();
933 hLabel
= GetDlgItem(hDlg
, 200);
934 ok (hDlg
!= 0, "Failed to create test dialog.\n");
936 ok ((g_hwndInitialFocusT1
== hLabel
),
937 "Focus should have been set to the first control, expected (%p) got (%p).\n",
938 hLabel
, g_hwndInitialFocusT1
);
944 static void test_GetDlgItemText(void)
949 strcpy(string
, "Overwrite Me");
950 ret
= GetDlgItemTextA(NULL
, 0, string
, sizeof(string
)/sizeof(string
[0]));
951 ok(!ret
, "GetDlgItemText(NULL) shouldn't have succeeded\n");
953 ok(string
[0] == '\0' || broken(!strcmp(string
, "Overwrite Me")),
954 "string retrieved using GetDlgItemText should have been NULL terminated\n");
957 static void test_GetDlgItem(void)
959 HWND hwnd
, child1
, child2
, hwnd2
;
962 hwnd
= CreateWindowA("button", "parent", WS_VISIBLE
, 0, 0, 100, 100, NULL
, 0, g_hinst
, NULL
);
963 ok(hwnd
!= NULL
, "failed to created window\n");
965 /* created with the same ID */
966 child1
= CreateWindowA("button", "child1", WS_VISIBLE
|WS_CHILD
, 0, 0, 10, 10, hwnd
, 0, g_hinst
, NULL
);
967 ok(child1
!= NULL
, "failed to create first child\n");
968 child2
= CreateWindowA("button", "child2", WS_VISIBLE
|WS_CHILD
, 0, 0, 10, 10, hwnd
, 0, g_hinst
, NULL
);
969 ok(child2
!= NULL
, "failed to create second child\n");
971 hwnd2
= GetDlgItem(hwnd
, 0);
972 ok(hwnd2
== child1
, "expected first child, got %p\n", hwnd2
);
974 hwnd2
= GetTopWindow(hwnd
);
975 ok(hwnd2
== child1
, "expected first child to be top, got %p\n", hwnd2
);
977 ret
= SetWindowPos(child1
, child2
, 0, 0, 0, 0, SWP_NOMOVE
);
978 ok(ret
, "got %d\n", ret
);
979 hwnd2
= GetTopWindow(hwnd
);
980 ok(hwnd2
== child2
, "expected second child to be top, got %p\n", hwnd2
);
982 /* top window from child list is picked */
983 hwnd2
= GetDlgItem(hwnd
, 0);
984 ok(hwnd2
== child2
, "expected second child, got %p\n", hwnd2
);
986 /* Now test how GetDlgItem searches */
987 DestroyWindow(child2
);
988 child2
= CreateWindowA("button", "child2", WS_VISIBLE
|WS_CHILD
, 0, 0, 10, 10, child1
, 0, g_hinst
, NULL
);
989 ok(child2
!= NULL
, "failed to create second child\n");
991 /* give child2 an ID */
992 SetWindowLong(child2
, GWLP_ID
, 100);
994 hwnd2
= GetDlgItem(hwnd
, 100);
995 ok(!hwnd2
, "expected child to not be found, got %p\n", hwnd2
);
997 /* make the ID of child2 public with a WS_EX_CONTROLPARENT parent */
998 SetWindowLong(child1
, GWL_EXSTYLE
, WS_EX_CONTROLPARENT
);
1000 hwnd2
= GetDlgItem(hwnd
, 100);
1001 ok(!hwnd2
, "expected child to not be found, got %p\n", hwnd2
);
1003 DestroyWindow(child1
);
1004 DestroyWindow(child2
);
1005 DestroyWindow(hwnd
);
1008 static INT_PTR CALLBACK
DestroyDlgWinProc (HWND hDlg
, UINT uiMsg
,
1009 WPARAM wParam
, LPARAM lParam
)
1011 if (uiMsg
== WM_INITDIALOG
)
1013 DestroyWindow(hDlg
);
1019 static INT_PTR CALLBACK
DestroyOnCloseDlgWinProc (HWND hDlg
, UINT uiMsg
,
1020 WPARAM wParam
, LPARAM lParam
)
1025 PostMessage(hDlg
, WM_CLOSE
, 0, 0);
1028 DestroyWindow(hDlg
);
1037 static INT_PTR CALLBACK
TestInitDialogHandleProc (HWND hDlg
, UINT uiMsg
,
1038 WPARAM wParam
, LPARAM lParam
)
1040 if (uiMsg
== WM_INITDIALOG
)
1042 HWND expected
= GetNextDlgTabItem(hDlg
, NULL
, FALSE
);
1043 ok(expected
== (HWND
)wParam
,
1044 "Expected wParam to be the handle to the first tabstop control (%p), got %p\n",
1045 expected
, (HWND
)wParam
);
1047 EndDialog(hDlg
, LOWORD(SendMessage(hDlg
, DM_GETDEFID
, 0, 0)));
1053 static INT_PTR CALLBACK
TestDefButtonDlgProc (HWND hDlg
, UINT uiMsg
,
1054 WPARAM wParam
, LPARAM lParam
)
1059 EndDialog(hDlg
, LOWORD(SendMessage(hDlg
, DM_GETDEFID
, 0, 0)));
1065 static INT_PTR CALLBACK
TestReturnKeyDlgProc (HWND hDlg
, UINT uiMsg
,
1066 WPARAM wParam
, LPARAM lParam
)
1068 static int received_idok
;
1074 MSG msg
= {hDlg
, WM_KEYDOWN
, VK_RETURN
, 0x011c0001};
1077 IsDialogMessage(hDlg
, &msg
);
1078 ok(received_idok
== 0xdead, "WM_COMMAND/0xdead not received\n");
1081 IsDialogMessage(hDlg
, &msg
);
1082 ok(received_idok
== IDOK
, "WM_COMMAND/IDOK not received\n");
1089 if (received_idok
== -1)
1091 HWND hwnd
= GetDlgItem(hDlg
, 0xdead);
1092 ok(!hwnd
, "dialog item with ID 0xdead should not exist\n");
1093 SetWindowLong(hDlg
, DWLP_MSGRESULT
, MAKELRESULT(0xdead, DC_HASDEFID
));
1099 received_idok
= wParam
;
1105 static INT_PTR CALLBACK
TestControlStyleDlgProc(HWND hdlg
, UINT msg
,
1106 WPARAM wparam
, LPARAM lparam
)
1109 DWORD style
, exstyle
;
1115 control
= GetDlgItem(hdlg
, 7);
1116 ok(control
!= 0, "dialog control with id 7 not found\n");
1117 style
= GetWindowLong(control
, GWL_STYLE
);
1118 ok(style
== (WS_CHILD
|WS_VISIBLE
), "expected WS_CHILD|WS_VISIBLE, got %#x\n", style
);
1119 exstyle
= GetWindowLong(control
, GWL_EXSTYLE
);
1120 ok(exstyle
== (WS_EX_NOPARENTNOTIFY
|WS_EX_TRANSPARENT
|WS_EX_CLIENTEDGE
), "expected WS_EX_NOPARENTNOTIFY|WS_EX_TRANSPARENT|WS_EX_CLIENTEDGE, got %#x\n", exstyle
);
1122 GetWindowText(control
, buf
, sizeof(buf
));
1123 ok(lstrcmp(buf
, "bump7") == 0, "expected bump7, got %s\n", buf
);
1125 control
= GetDlgItem(hdlg
, 8);
1126 ok(control
!= 0, "dialog control with id 8 not found\n");
1127 style
= GetWindowLong(control
, GWL_STYLE
);
1128 ok(style
== (WS_CHILD
|WS_VISIBLE
), "expected WS_CHILD|WS_VISIBLE, got %#x\n", style
);
1129 exstyle
= GetWindowLong(control
, GWL_EXSTYLE
);
1130 ok(exstyle
== (WS_EX_NOPARENTNOTIFY
|WS_EX_TRANSPARENT
), "expected WS_EX_NOPARENTNOTIFY|WS_EX_TRANSPARENT, got %#x\n", exstyle
);
1132 GetWindowText(control
, buf
, sizeof(buf
));
1133 ok(lstrcmp(buf
, "bump8") == 0, "expected bump8, got %s\n", buf
);
1135 EndDialog(hdlg
, -7);
1141 static void test_DialogBoxParamA(void)
1144 HWND hwnd_invalid
= (HWND
)0x4444;
1146 ret
= DialogBoxParamA(GetModuleHandle(0), "TEST_DLG_CHILD_POPUP", 0, TestControlStyleDlgProc
, 0);
1147 ok(ret
== -7, "expected -7, got %ld\n", ret
);
1149 SetLastError(0xdeadbeef);
1150 ret
= DialogBoxParamA(GetModuleHandle(NULL
), "IDD_DIALOG" , hwnd_invalid
, 0 , 0);
1151 ok(0 == ret
|| broken(ret
== -1), "DialogBoxParamA returned %ld, expected 0\n", ret
);
1152 ok(ERROR_INVALID_WINDOW_HANDLE
== GetLastError() ||
1153 broken(GetLastError() == 0xdeadbeef),
1154 "got %d, expected ERROR_INVALID_WINDOW_HANDLE\n",GetLastError());
1156 /* Test a dialog which destroys itself on WM_INITDIALOG. */
1157 SetLastError(0xdeadbeef);
1158 ret
= DialogBoxParamA(GetModuleHandle(NULL
), "IDD_DIALOG", 0, DestroyDlgWinProc
, 0);
1159 ok(-1 == ret
, "DialogBoxParamA returned %ld, expected -1\n", ret
);
1160 ok(ERROR_INVALID_WINDOW_HANDLE
== GetLastError() ||
1161 GetLastError() == ERROR_SUCCESS
||
1162 broken(GetLastError() == 0xdeadbeef),
1163 "got %d, expected ERROR_INVALID_WINDOW_HANDLE\n",GetLastError());
1165 /* Test a dialog which destroys itself on WM_CLOSE. */
1166 ret
= DialogBoxParamA(GetModuleHandle(NULL
), "IDD_DIALOG", 0, DestroyOnCloseDlgWinProc
, 0);
1167 ok(0 == ret
, "DialogBoxParamA returned %ld, expected 0\n", ret
);
1169 SetLastError(0xdeadbeef);
1170 ret
= DialogBoxParamA(GetModuleHandle(NULL
), "RESOURCE_INVALID" , 0, 0, 0);
1171 ok(-1 == ret
, "DialogBoxParamA returned %ld, expected -1\n", ret
);
1172 ok(ERROR_RESOURCE_NAME_NOT_FOUND
== GetLastError() ||
1173 broken(GetLastError() == 0xdeadbeef),
1174 "got %d, expected ERROR_RESOURCE_NAME_NOT_FOUND\n",GetLastError());
1176 SetLastError(0xdeadbeef);
1177 ret
= DefDlgProcA(0, WM_ERASEBKGND
, 0, 0);
1178 ok(ret
== 0, "DefDlgProcA returned %ld, expected 0\n", ret
);
1179 ok(GetLastError() == ERROR_INVALID_WINDOW_HANDLE
||
1180 broken(GetLastError() == 0xdeadbeef),
1181 "got %d, expected ERROR_INVALID_WINDOW_HANDLE\n", GetLastError());
1183 ret
= DialogBoxParamA(GetModuleHandle(NULL
), "TEST_EMPTY_DIALOG", 0, TestInitDialogHandleProc
, 0);
1184 ok(ret
== IDOK
, "Expected IDOK\n");
1186 ret
= DialogBoxParamA(GetModuleHandle(NULL
), "TEST_EMPTY_DIALOG", 0, TestDefButtonDlgProc
, 0);
1187 ok(ret
== IDOK
, "Expected IDOK\n");
1189 DialogBoxParamA(GetModuleHandle(NULL
), "TEST_EMPTY_DIALOG", 0, TestReturnKeyDlgProc
, 0);
1192 static void test_DisabledDialogTest(void)
1194 g_terminated
= FALSE
;
1195 DialogBoxParam(g_hinst
, "IDD_DIALOG", NULL
, disabled_test_proc
, 0);
1196 ok(FALSE
== g_terminated
, "dialog with disabled ok button has been terminated\n");
1199 static INT_PTR CALLBACK
messageBoxFontDlgWinProc (HWND hDlg
, UINT uiMsg
, WPARAM wParam
,
1202 return (uiMsg
== WM_INITDIALOG
);
1205 static void test_MessageBoxFontTest(void)
1207 /* This dialog template defines a dialog template which got 0x7fff as its
1208 * font size and omits the other font members. On WinNT, passing such a
1209 * dialog template to CreateDialogIndirectParamW will result in a dialog
1210 * being created which uses the message box font. We test that here.
1213 static unsigned char dlgTemplate
[] =
1216 0x01,0x00, /* Version */
1217 0xff,0xff, /* Extended template marker */
1218 0x00,0x00,0x00,0x00, /* Context Help ID */
1219 0x00,0x00,0x00,0x00, /* Extended style */
1220 0xc0,0x00,0xc8,0x80, /* Style (WS_SYSMENU|WS_CAPTION|WS_POPUP|DS_SETFONT|DS_MODALFRAME) */
1221 0x01,0x00, /* Control count */
1224 0x80,0x00, /* Width */
1225 0x80,0x00, /* Height */
1226 0x00,0x00, /* Menu name */
1227 0x00,0x00, /* Class name */
1228 'T',0x00,'e',0x00, /* Caption (unicode) */
1231 0xff,0x7f, /* Font height (0x7fff = message box font) */
1234 0x00,0x00, /* Align to DWORD (header is 42 bytes) */
1235 0x00,0x00,0x00,0x00, /* Context Help ID */
1236 0x00,0x00,0x00,0x00, /* Extended style */
1237 0x00,0x00,0x00,0x50, /* Style (WS_CHILD|WS_VISIBLE) */
1240 0x80,0x00, /* Width */
1241 0x80,0x00, /* Height */
1242 0x00,0x01,0x00,0x00, /* Control ID (256) */
1243 0xff,0xff,0x82,0x00, /* Class (Static) */
1244 'W',0x00,'I',0x00, /* Caption (unicode) */
1253 0x00,0x00, /* Size of extended data */
1255 0x00,0x00 /* Align to DWORD */
1260 LOGFONTW lfStaticFont
;
1261 NONCLIENTMETRICSW ncMetrics
;
1263 /* Check if the dialog can be created from the template. On Win9x, this should fail
1264 * because we are calling the W function which is not implemented, but that's what
1265 * we want, because passing such a template to CreateDialogIndirectParamA would crash
1268 hDlg
= CreateDialogIndirectParamW(g_hinst
, (LPCDLGTEMPLATE
)dlgTemplate
, NULL
, messageBoxFontDlgWinProc
, 0);
1271 win_skip("dialog wasn't created\n");
1275 hFont
= (HFONT
) SendDlgItemMessageW(hDlg
, 256, WM_GETFONT
, 0, 0);
1278 skip("dialog uses system font\n");
1279 DestroyWindow(hDlg
);
1282 GetObjectW(hFont
, sizeof(LOGFONTW
), &lfStaticFont
);
1284 ncMetrics
.cbSize
= FIELD_OFFSET(NONCLIENTMETRICSW
, iPaddedBorderWidth
);
1285 SystemParametersInfoW(SPI_GETNONCLIENTMETRICS
, 0, &ncMetrics
, 0);
1286 ok( !memcmp(&lfStaticFont
, &ncMetrics
.lfMessageFont
, FIELD_OFFSET(LOGFONTW
, lfFaceName
)) &&
1287 !lstrcmpW(lfStaticFont
.lfFaceName
, ncMetrics
.lfMessageFont
.lfFaceName
),
1288 "dialog doesn't use message box font\n");
1289 DestroyWindow(hDlg
);
1292 static void test_SaveRestoreFocus(void)
1297 DLGTEMPLATE
* pTemplate
;
1301 /* create the dialog */
1302 hResource
= FindResourceA(g_hinst
, "MULTI_EDIT_DIALOG", RT_DIALOG
);
1303 hTemplate
= LoadResource(g_hinst
, hResource
);
1304 pTemplate
= LockResource(hTemplate
);
1306 hDlg
= CreateDialogIndirectParamA(g_hinst
, pTemplate
, NULL
, messageBoxFontDlgWinProc
, 0);
1307 ok (hDlg
!= 0, "Failed to create test dialog.\n");
1309 foundId
= GetWindowLongPtr(GetFocus(), GWLP_ID
);
1310 ok (foundId
== 1000, "First edit box should have gained focus on dialog creation. Expected: %d, Found: %ld\n", 1000, foundId
);
1312 /* de- then reactivate the dialog */
1313 SendMessage(hDlg
, WM_ACTIVATE
, MAKEWPARAM(WA_INACTIVE
, 0), 0);
1314 SendMessage(hDlg
, WM_ACTIVATE
, MAKEWPARAM(WA_ACTIVE
, 0), 0);
1316 foundId
= GetWindowLongPtr(GetFocus(), GWLP_ID
);
1317 ok (foundId
== 1000, "First edit box should have regained focus after dialog reactivation. Expected: %d, Found: %ld\n", 1000, foundId
);
1319 /* select the next tabbable item */
1320 SetFocus(GetNextDlgTabItem(hDlg
, GetFocus(), FALSE
));
1322 foundId
= GetWindowLongPtr(GetFocus(), GWLP_ID
);
1323 ok (foundId
== 1001, "Second edit box should have gained focus. Expected: %d, Found: %ld\n", 1001, foundId
);
1325 /* de- then reactivate the dialog */
1326 SendMessage(hDlg
, WM_ACTIVATE
, MAKEWPARAM(WA_INACTIVE
, 0), 0);
1327 SendMessage(hDlg
, WM_ACTIVATE
, MAKEWPARAM(WA_ACTIVE
, 0), 0);
1329 foundId
= GetWindowLongPtr(GetFocus(), GWLP_ID
);
1330 ok (foundId
== 1001, "Second edit box should have gained focus after dialog reactivation. Expected: %d, Found: %ld\n", 1001, foundId
);
1332 /* disable the 2nd box */
1333 EnableWindow(GetFocus(), FALSE
);
1335 foundHwnd
= GetFocus();
1336 ok (foundHwnd
== NULL
, "Second edit box should have lost focus after being disabled. Expected: %p, Found: %p\n", NULL
, foundHwnd
);
1338 /* de- then reactivate the dialog */
1339 SendMessage(hDlg
, WM_ACTIVATE
, MAKEWPARAM(WA_INACTIVE
, 0), 0);
1340 SendMessage(hDlg
, WM_ACTIVATE
, MAKEWPARAM(WA_ACTIVE
, 0), 0);
1342 foundHwnd
= GetFocus();
1343 ok (foundHwnd
== NULL
, "No controls should have gained focus after dialog reactivation. Expected: %p, Found: %p\n", NULL
, foundHwnd
);
1346 DestroyWindow(hDlg
);
1349 static INT_PTR CALLBACK
timer_message_dlg_proc(HWND wnd
, UINT msg
, WPARAM wparam
, LPARAM lparam
)
1357 visible
= GetWindowLong(wnd
, GWL_STYLE
) & WS_VISIBLE
;
1358 ok(!visible
, "Dialog should not be visible.\n");
1359 SetTimer(wnd
, 1, 100, NULL
);
1364 if (LOWORD(wparam
) != IDCANCEL
) return FALSE
;
1365 EndDialog(wnd
, LOWORD(wparam
));
1369 if (wparam
!= 1) return FALSE
;
1370 visible
= GetWindowLong(wnd
, GWL_STYLE
) & WS_VISIBLE
;
1373 ok(!visible
, "Dialog should not be visible.\n");
1374 PostMessage(wnd
, WM_USER
, 0, 0);
1378 ok(visible
, "Dialog should be visible.\n");
1379 PostMessage(wnd
, WM_COMMAND
, IDCANCEL
, 0);
1384 visible
= GetWindowLong(wnd
, GWL_STYLE
) & WS_VISIBLE
;
1385 ok(visible
, "Dialog should be visible.\n");
1393 static void test_timer_message(void)
1395 DialogBoxA(g_hinst
, "RADIO_TEST_DIALOG", NULL
, timer_message_dlg_proc
);
1400 g_hinst
= GetModuleHandleA (0);
1402 if (!RegisterWindowClasses()) assert(0);
1404 test_GetNextDlgItem();
1405 test_IsDialogMessage();
1406 test_WM_NEXTDLGCTL();
1407 test_initial_focus();
1409 test_GetDlgItemText();
1410 test_DialogBoxParamA();
1411 test_DisabledDialogTest();
1412 test_MessageBoxFontTest();
1413 test_SaveRestoreFocus();
1414 test_timer_message();