2004-02-12 03:16:33 +01:00
/* Unit test suite for the dialog functions.
*
* Copyright 2004 Bill Medland
*
* This library is free software ; you can redistribute it and / or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation ; either
* version 2.1 of the License , or ( at your option ) any later version .
*
* This library is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
* Lesser General Public License for more details .
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library ; if not , write to the Free Software
2006-05-18 14:49:52 +02:00
* Foundation , Inc . , 51 Franklin St , Fifth Floor , Boston , MA 02110 - 1301 , USA
2004-02-12 03:16:33 +01:00
*
*
*
* This test suite currently works by building a quite complex hierarchy of
* objects in a variety of styles and then performs a limited number of tests
* for the previous and next dialog group or tab items .
*
* The test specifically does not test all possibilities at this time since
* there are several cases where the Windows behaviour is rather strange and
* significant work would be required to get the Wine code to duplicate the
2004-07-17 01:22:49 +02:00
* strangeness , especially since most are in situations that would not
2004-02-12 03:16:33 +01:00
* normally be met .
*/
2013-02-18 12:31:50 +01:00
# define WINVER 0x0600 /* For NONCLIENTMETRICS with padding */
2004-02-12 03:16:33 +01:00
# include <assert.h>
# include <stdio.h>
# include <stdarg.h>
# include "wine/test.h"
# include "windef.h"
# include "winbase.h"
2009-03-21 00:23:39 +01:00
# include "wingdi.h"
2004-02-12 03:16:33 +01:00
# include "winuser.h"
# define MAXHWNDS 1024
static HWND hwnd [ MAXHWNDS ] ;
2004-08-09 20:52:18 +02:00
static unsigned int numwnds = 1 ; /* 0 is reserved for null */
2004-02-12 03:16:33 +01:00
/* Global handles */
static HINSTANCE g_hinst ; /* This application's HINSTANCE */
static HWND g_hwndMain , g_hwndButton1 , g_hwndButton2 , g_hwndButtonCancel ;
2004-07-17 01:22:49 +02:00
static HWND g_hwndTestDlg , g_hwndTestDlgBut1 , g_hwndTestDlgBut2 , g_hwndTestDlgEdit ;
2004-09-10 23:14:43 +02:00
static HWND g_hwndInitialFocusT1 , g_hwndInitialFocusT2 , g_hwndInitialFocusGroupBox ;
static LONG g_styleInitialFocusT1 , g_styleInitialFocusT2 ;
2011-07-13 19:10:30 +02:00
static BOOL g_bInitialFocusInitDlgResult , g_bReceivedCommand ;
2004-07-17 01:22:49 +02:00
2013-11-05 01:05:01 +01:00
static BOOL g_terminated ;
2004-02-12 03:16:33 +01:00
typedef struct {
2009-01-08 13:18:01 +01:00
INT_PTR id ;
2004-02-12 03:16:33 +01:00
int parent ;
DWORD style ;
DWORD exstyle ;
} h_entry ;
static const h_entry hierarchy [ ] = {
/* 0 is reserved for the null window */
{ 1 , 0 , WS_OVERLAPPEDWINDOW | WS_CLIPSIBLINGS , WS_EX_WINDOWEDGE } ,
{ 20 , 1 , WS_CHILD | WS_VISIBLE | WS_GROUP , 0 } ,
{ 2 , 1 , WS_CHILD | WS_VISIBLE , WS_EX_CONTROLPARENT } ,
{ 60 , 2 , WS_CHILD | WS_VISIBLE | WS_TABSTOP , 0 } ,
/* What happens with groups when the parent is disabled */
{ 8 , 2 , WS_CHILD | WS_VISIBLE | WS_DISABLED | WS_TABSTOP , WS_EX_CONTROLPARENT } ,
{ 85 , 8 , WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_GROUP , 0 } ,
{ 9 , 8 , WS_CHILD , WS_EX_CONTROLPARENT } ,
2004-07-17 01:22:49 +02:00
{ 86 , 9 , WS_CHILD | WS_VISIBLE , 0 } ,
2004-02-12 03:16:33 +01:00
{ 87 , 9 , WS_CHILD | WS_VISIBLE , 0 } ,
{ 31 , 8 , WS_CHILD | WS_VISIBLE | WS_GROUP , 0 } ,
{ 10 , 2 , WS_CHILD | WS_VISIBLE , WS_EX_CONTROLPARENT } ,
{ 88 , 10 , WS_CHILD | WS_VISIBLE | WS_GROUP , 0 } ,
{ 11 , 10 , WS_CHILD , WS_EX_CONTROLPARENT } ,
{ 89 , 11 , WS_CHILD | WS_VISIBLE , 0 } ,
{ 32 , 11 , WS_CHILD | WS_VISIBLE | WS_GROUP , 0 } ,
{ 90 , 11 , WS_CHILD | WS_VISIBLE , 0 } ,
{ 33 , 10 , WS_CHILD | WS_VISIBLE | WS_GROUP , 0 } ,
{ 21 , 2 , WS_CHILD | WS_VISIBLE | WS_GROUP , 0 } ,
{ 61 , 2 , WS_CHILD | WS_VISIBLE | WS_TABSTOP , 0 } ,
{ 3 , 1 , WS_CHILD | WS_VISIBLE | DS_CONTROL , 0 } ,
{ 22 , 3 , WS_CHILD | WS_VISIBLE | WS_GROUP , 0 } ,
{ 62 , 3 , WS_CHILD | WS_VISIBLE | WS_TABSTOP , 0 } ,
{ 7 , 3 , WS_CHILD | WS_VISIBLE , WS_EX_CONTROLPARENT } ,
{ 4 , 7 , WS_CHILD | WS_VISIBLE | DS_CONTROL , 0 } ,
{ 83 , 4 , WS_CHILD | WS_VISIBLE , 0 } ,
{ 5 , 4 , WS_CHILD | WS_VISIBLE | DS_CONTROL , 0 } ,
/* A couple of controls around the main dialog */
{ 29 , 5 , WS_CHILD | WS_VISIBLE | WS_GROUP , 0 } ,
{ 81 , 5 , WS_CHILD | WS_VISIBLE , 0 } ,
/* The main dialog with lots of controls */
{ 6 , 5 , WS_CHILD | WS_VISIBLE , WS_EX_CONTROLPARENT } ,
/* At the start of a dialog */
/* Disabled controls are skipped */
{ 63 , 6 , WS_CHILD | WS_VISIBLE | WS_DISABLED | WS_TABSTOP , 0 } ,
/* Invisible controls are skipped */
{ 64 , 6 , WS_CHILD | WS_TABSTOP , 0 } ,
/* Invisible disabled controls are skipped */
{ 65 , 6 , WS_CHILD | WS_DISABLED | WS_TABSTOP , 0 } ,
/* Non-tabstop controls are skipped for tabs but not for groups */
{ 66 , 6 , WS_CHILD | WS_VISIBLE , 0 } ,
/* End of first group, with no tabstops in it */
{ 23 , 6 , WS_CHILD | WS_VISIBLE | WS_GROUP , 0 } ,
/* At last a tabstop */
{ 67 , 6 , WS_CHILD | WS_VISIBLE | WS_TABSTOP , 0 } ,
/* A group that is totally disabled or invisible */
{ 24 , 6 , WS_CHILD | WS_DISABLED | WS_GROUP , 0 } ,
{ 68 , 6 , WS_CHILD | WS_VISIBLE | WS_DISABLED | WS_TABSTOP , 0 } ,
{ 69 , 6 , WS_CHILD | WS_TABSTOP , 0 } ,
/* A valid group in the middle of the dialog (not the first nor last group*/
{ 25 , 6 , WS_CHILD | WS_VISIBLE | WS_GROUP , 0 } ,
/* A non-tabstop item will be skipped for tabs */
{ 70 , 6 , WS_CHILD | WS_VISIBLE , 0 } ,
/* A disabled item will be skipped for tabs and groups */
{ 71 , 6 , WS_CHILD | WS_VISIBLE | WS_DISABLED | WS_TABSTOP , 0 } ,
/* A valid item will be found for tabs and groups */
{ 72 , 6 , WS_CHILD | WS_VISIBLE | WS_TABSTOP , 0 } ,
/* A disabled item to skip when looking for the next group item */
{ 73 , 6 , WS_CHILD | WS_VISIBLE | WS_DISABLED | WS_TABSTOP , 0 } ,
/* The next group begins with an enabled visible label */
{ 26 , 6 , WS_CHILD | WS_VISIBLE | WS_GROUP , 0 } ,
{ 74 , 6 , WS_CHILD | WS_VISIBLE | WS_TABSTOP , 0 } ,
{ 75 , 6 , WS_CHILD | WS_VISIBLE | WS_TABSTOP , 0 } ,
/* That group is terminated by a disabled label */
{ 27 , 6 , WS_CHILD | WS_VISIBLE | WS_DISABLED | WS_GROUP , 0 } ,
{ 76 , 6 , WS_CHILD | WS_VISIBLE | WS_TABSTOP , 0 } ,
{ 77 , 6 , WS_CHILD | WS_VISIBLE | WS_TABSTOP , 0 } ,
/* That group is terminated by an invisible label */
{ 28 , 6 , WS_CHILD | WS_GROUP , 0 } ,
/* The end of the dialog with item for loop and recursion testing */
{ 78 , 6 , WS_CHILD | WS_VISIBLE | WS_TABSTOP , 0 } ,
/* No tabstop so skipped for prev tab, but found for prev group */
{ 79 , 6 , WS_CHILD | WS_VISIBLE , 0 } ,
{ 80 , 6 , WS_CHILD | WS_VISIBLE | WS_DISABLED | WS_TABSTOP , 0 } ,
/* A couple of controls after the main dialog */
{ 82 , 5 , WS_CHILD | WS_VISIBLE , 0 } ,
{ 30 , 5 , WS_CHILD | WS_VISIBLE | WS_GROUP , 0 } ,
/* And around them */
{ 84 , 4 , WS_CHILD | WS_VISIBLE | WS_TABSTOP , 0 } ,
{ 0 , 0 , 0 , 0 }
} ;
static BOOL CreateWindows ( HINSTANCE hinst )
{
const h_entry * p = hierarchy ;
while ( p - > id ! = 0 )
{
DWORD style , exstyle ;
char ctrlname [ 9 ] ;
/* Basically assert that the hierarchy is valid and track the
* maximum control number
*/
if ( p - > id > = numwnds )
{
if ( p - > id > = sizeof ( hwnd ) / sizeof ( hwnd [ 0 ] ) )
{
2009-01-08 13:18:01 +01:00
trace ( " Control %ld is out of range \n " , p - > id ) ;
2004-02-12 03:16:33 +01:00
return FALSE ;
}
else
numwnds = p - > id + 1 ;
}
if ( p - > id < = 0 )
{
2009-01-08 13:18:01 +01:00
trace ( " Control %ld is out of range \n " , p - > id ) ;
2004-02-12 03:16:33 +01:00
return FALSE ;
}
if ( hwnd [ p - > id ] ! = 0 )
{
2009-01-08 13:18:01 +01:00
trace ( " Control %ld is used more than once \n " , p - > id ) ;
2004-02-12 03:16:33 +01:00
return FALSE ;
}
/* Create the control */
2009-01-08 13:18:01 +01:00
sprintf ( ctrlname , " ctrl%4.4ld " , p - > id ) ;
2013-10-23 07:53:37 +02:00
hwnd [ p - > id ] = CreateWindowExA ( p - > exstyle , p - > parent ? " static " : " GetNextDlgItemWindowClass " , ctrlname , p - > style , 10 , 10 , 10 , 10 , hwnd [ p - > parent ] , p - > parent ? ( HMENU ) ( 2000 + p - > id ) : 0 , hinst , 0 ) ;
2004-02-12 03:16:33 +01:00
if ( ! hwnd [ p - > id ] )
{
2009-01-08 13:18:01 +01:00
trace ( " Failed to create control %ld \n " , p - > id ) ;
2004-02-12 03:16:33 +01:00
return FALSE ;
}
/* Check that the styles are as we specified (except the main one
2004-07-17 01:22:49 +02:00
* which is quite frequently messed up ) . If this keeps breaking then
2004-02-12 03:16:33 +01:00
* we could mask out the bits that don ' t concern us .
*/
if ( p - > parent )
{
2013-10-23 07:53:37 +02:00
style = GetWindowLongA ( hwnd [ p - > id ] , GWL_STYLE ) ;
exstyle = GetWindowLongA ( hwnd [ p - > id ] , GWL_EXSTYLE ) ;
2006-05-18 16:32:49 +02:00
if ( style ! = p - > style | | exstyle ! = p - > exstyle )
2004-02-12 03:16:33 +01:00
{
2009-01-08 13:18:01 +01:00
trace ( " Style mismatch at %ld: %8.8x %8.8x cf %8.8x %8.8x \n " , p - > id , style , exstyle , p - > style , p - > exstyle ) ;
2004-02-12 03:16:33 +01:00
}
}
p + + ;
}
return TRUE ;
}
/* Form the lParam of a WM_KEYDOWN message */
static DWORD KeyDownData ( int repeat , int scancode , int extended , int wasdown )
{
2011-05-05 15:54:33 +02:00
return ( ( repeat & 0x0000FFFF ) | ( ( scancode & 0x00FF ) < < 16 ) |
2004-02-12 03:16:33 +01:00
( extended ? 0x01000000 : 0 ) | ( wasdown ? 0x40000000 : 0 ) ) ;
}
/* Form a WM_KEYDOWN VK_TAB message to the specified window */
static void FormTabMsg ( MSG * pMsg , HWND hwnd )
{
pMsg - > hwnd = hwnd ;
pMsg - > message = WM_KEYDOWN ;
pMsg - > wParam = VK_TAB ;
pMsg - > lParam = KeyDownData ( 1 , 0x0F , 0 , 0 ) ;
/* pMsg->time is not set. It shouldn't be needed */
/* pMsg->pt is ignored */
}
/* Form a WM_KEYDOWN VK_RETURN message to the specified window */
static void FormEnterMsg ( MSG * pMsg , HWND hwnd )
{
pMsg - > hwnd = hwnd ;
pMsg - > message = WM_KEYDOWN ;
pMsg - > wParam = VK_RETURN ;
pMsg - > lParam = KeyDownData ( 1 , 0x1C , 0 , 0 ) ;
/* pMsg->time is not set. It shouldn't be needed */
/* pMsg->pt is ignored */
}
/***********************************************************************
*
* The actual tests
*/
typedef struct
{
int isok ; /* or is it todo */
int test ;
int dlg ;
int ctl ;
int tab ;
int prev ;
int res ;
} test_record ;
static int id ( HWND h )
{
2004-08-09 20:52:18 +02:00
unsigned int i ;
2004-02-12 03:16:33 +01:00
for ( i = 0 ; i < numwnds ; i + + )
if ( hwnd [ i ] = = h )
return i ;
return - 1 ;
}
/* Tests
*
* Tests 1 - 8 test the hCtl argument of null or the dialog itself .
*
* 1. Prev Group of null is null
* 2. Prev Tab of null is null
* 3. Prev Group of hDlg in hDlg is null
* 4. Prev Tab of hDlg in hDlg is null
* 5. Next Group of null is first visible enabled child
2008-01-16 12:20:50 +01:00
* Check it skips invisible , disabled and both .
2004-02-12 03:16:33 +01:00
* 6. Next Tab of null is first visible enabled tabstop
* Check it skips invisible , disabled , nontabstop , and in combination .
* 7. Next Group of hDlg in hDlg is as of null
* 8. Next Tab of hDlg in hDlg is as of null
*
* Tests 9 - 14 test descent
*
* 9. DS_CONTROL does not result in descending the hierarchy for Tab Next
* 10. DS_CONTROL does not result in descending the hierarchy for Group Next
* 11. WS_EX_CONTROLPARENT results in descending the hierarchy for Tab Next
* 12. WS_EX_CONTROLPARENT results in descending the hierarchy for Group Next
* 13. WS_EX_CONTROLPARENT results in descending the hierarchy for Tab Prev
* 14. WS_EX_CONTROLPARENT results in descending the hierarchy for Group Prev
*
* Tests 15 - 24 are the basic Prev / Next Group tests
*
* 15. Next Group of a visible enabled non - group control is the next visible
* enabled non - group control , if there is one before the next group
* 16. Next Group of a visible enabled non - group control wraps around to the
* beginning of the group on finding a control that starts another group .
* Note that the group is in the middle of the dialog .
* 17. As 16 except note that the next group is started with a disabled
* visible control .
* 18. As 16 except note that the next group is started with an invisible
* enabled control .
* 19. Next Group wraps around the controls of the dialog
* 20. Next Group is the same even if the initial control is disabled .
* 21. Next Group is the same even if the initial control is invisible .
* 22. Next Group is the same even if the initial control has the group style
* 23. Next Group returns the initial control if there is no visible enabled
* control in the group . ( Initial control disabled and not group style ) .
* 24. Prev version of test 16.
* Prev Group of a visible enabled non - group control wraps around to the
* beginning of the group on finding a control that starts the group .
* Note that the group is in the middle of the dialog .
*
* In tests 25 to 28 the control is sitting under dialogs which do not have
* the WS_EX_CONTROLPARENT style and so cannot be reached from the top of
* the dialog .
*
* 25. Next Group of an inaccessible control is as if it were accessible
* 26. Prev Group of an inaccessible control begins searching at the highest
* level ancestor that did not permit recursion down the hierarchy
* 27. Next Tab of an inaccessible control is as if it were accessible
2004-07-17 01:22:49 +02:00
* 28. Prev Tab of an inaccessible control begins searching at the highest
2004-02-12 03:16:33 +01:00
* level ancestor that did not permit recursion down the hierarchy .
*
* Tests 29 - are the basic Tab tests
*
2004-07-17 01:22:49 +02:00
* 29. Next Tab of a control is the next visible enabled control with the
2004-02-12 03:16:33 +01:00
* Tabstop style ( N . B . skips disabled , invisible and non - tabstop )
* 30. Prev Tab of a control is the previous visible enabled control with the
* Tabstop style ( N . B . skips disabled , invisible and non - tabstop )
2004-07-17 01:22:49 +02:00
* 31. Next Tab test with at least two layers of descent and finding the
2004-02-12 03:16:33 +01:00
* result not at the first control .
* 32. Next Tab test with at least two layers of descent with the descent and
* control at the start of each level .
2004-07-17 01:22:49 +02:00
* 33. Prev Tab test with at least two layers of descent and finding the
2004-02-12 03:16:33 +01:00
* result not at the last control .
* 34. Prev Tab test with at least two layers of descent with the descent and
* control at the end of each level .
*
* 35. Passing NULL may result in the first child being the one returned .
* ( group test )
* 36. Passing NULL may result in the first child being the one returned .
* ( tab test )
*/
2010-04-23 18:52:13 +02:00
static void test_GetNextDlgItem ( void )
2004-02-12 03:16:33 +01:00
{
2004-07-17 01:22:49 +02:00
static test_record test [ ] =
2004-02-12 03:16:33 +01:00
{
/* isok test dlg ctl tab prev res */
{ 1 , 1 , 6 , 0 , 0 , 1 , 0 } ,
{ 1 , 2 , 6 , 0 , 1 , 1 , 0 } ,
{ 1 , 3 , 6 , 6 , 0 , 1 , 0 } ,
{ 1 , 4 , 6 , 6 , 1 , 1 , 0 } ,
{ 1 , 5 , 6 , 0 , 0 , 0 , 66 } ,
{ 1 , 6 , 6 , 0 , 1 , 0 , 67 } ,
{ 1 , 7 , 6 , 6 , 0 , 0 , 66 } ,
{ 1 , 8 , 6 , 6 , 1 , 0 , 67 } ,
{ 1 , 9 , 4 , 83 , 1 , 0 , 84 } ,
{ 1 , 10 , 4 , 83 , 0 , 0 , 5 } ,
{ 1 , 11 , 5 , 81 , 1 , 0 , 67 } ,
{ 1 , 12 , 5 , 81 , 0 , 0 , 66 } ,
{ 1 , 13 , 5 , 82 , 1 , 1 , 78 } ,
{ 1 , 14 , 5 , 82 , 0 , 1 , 79 } ,
{ 1 , 15 , 6 , 70 , 0 , 0 , 72 } ,
{ 1 , 16 , 6 , 72 , 0 , 0 , 25 } ,
{ 1 , 17 , 6 , 75 , 0 , 0 , 26 } ,
{ 1 , 18 , 6 , 77 , 0 , 0 , 76 } ,
{ 1 , 19 , 6 , 79 , 0 , 0 , 66 } ,
{ 1 , 20 , 6 , 71 , 0 , 0 , 72 } ,
{ 1 , 21 , 6 , 64 , 0 , 0 , 66 } ,
{ 1 , 22 , 6 , 25 , 0 , 0 , 70 } ,
{ 1 , 23 , 6 , 68 , 0 , 0 , 68 } ,
{ 1 , 24 , 6 , 25 , 0 , 1 , 72 } ,
{ 1 , 25 , 1 , 70 , 0 , 0 , 72 } ,
2004-05-27 03:56:04 +02:00
/*{ 0, 26, 1, 70, 0, 1, 3}, Crashes Win95*/
2004-02-12 03:16:33 +01:00
{ 1 , 27 , 1 , 70 , 1 , 0 , 72 } ,
2004-05-27 03:56:04 +02:00
/*{ 0, 28, 1, 70, 1, 1, 61}, Crashes Win95*/
2004-02-12 03:16:33 +01:00
{ 1 , 29 , 6 , 67 , 1 , 0 , 72 } ,
{ 1 , 30 , 6 , 72 , 1 , 1 , 67 } ,
{ 1 , 35 , 2 , 0 , 0 , 0 , 60 } ,
{ 1 , 36 , 2 , 0 , 1 , 0 , 60 } ,
{ 0 , 0 , 0 , 0 , 0 , 0 , 0 } /* End of test */
} ;
const test_record * p = test ;
ok ( CreateWindows ( g_hinst ) , " Could not create test windows \n " ) ;
while ( p - > dlg )
{
HWND a ;
a = ( p - > tab ? GetNextDlgTabItem : GetNextDlgGroupItem ) ( hwnd [ p - > dlg ] , hwnd [ p - > ctl ] , p - > prev ) ;
2016-02-11 03:26:32 +01:00
todo_wine_if ( ! p - > isok )
2004-02-12 03:16:33 +01:00
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 ) ;
p + + ;
}
}
/*
* OnMainWindowCreate
*/
2013-10-23 07:53:37 +02:00
static BOOL OnMainWindowCreate ( HWND hwnd , LPCREATESTRUCTA lpcs )
2004-02-12 03:16:33 +01:00
{
2013-10-23 07:53:37 +02:00
g_hwndButton1 = CreateWindowA ( " button " , " Button &1 " ,
2004-02-12 03:16:33 +01:00
WS_CHILD | WS_VISIBLE | WS_TABSTOP | BS_DEFPUSHBUTTON | BS_TEXT ,
10 , 10 , 80 , 80 , hwnd , ( HMENU ) 100 , g_hinst , 0 ) ;
if ( ! g_hwndButton1 ) return FALSE ;
2013-10-23 07:53:37 +02:00
g_hwndButton2 = CreateWindowA ( " button " , " Button &2 " ,
2004-02-12 03:16:33 +01:00
WS_CHILD | WS_VISIBLE | BS_PUSHBUTTON | BS_TEXT ,
110 , 10 , 80 , 80 , hwnd , ( HMENU ) 200 , g_hinst , 0 ) ;
if ( ! g_hwndButton2 ) return FALSE ;
2013-10-23 07:53:37 +02:00
g_hwndButtonCancel = CreateWindowA ( " button " , " Cancel " ,
2004-02-12 03:16:33 +01:00
WS_CHILD | WS_VISIBLE | WS_TABSTOP | BS_PUSHBUTTON | BS_TEXT ,
210 , 10 , 80 , 80 , hwnd , ( HMENU ) IDCANCEL , g_hinst , 0 ) ;
if ( ! g_hwndButtonCancel ) return FALSE ;
return TRUE ;
}
2004-07-17 01:22:49 +02:00
/*
* OnTestDlgCreate
*/
2013-10-23 07:53:37 +02:00
static BOOL OnTestDlgCreate ( HWND hwnd , LPCREATESTRUCTA lpcs )
2004-07-17 01:22:49 +02:00
{
2013-10-23 07:53:37 +02:00
g_hwndTestDlgEdit = CreateWindowExA ( WS_EX_LEFT | WS_EX_LTRREADING |
2004-07-17 01:22:49 +02:00
WS_EX_RIGHTSCROLLBAR | WS_EX_NOPARENTNOTIFY | WS_EX_CLIENTEDGE ,
2013-10-23 07:53:37 +02:00
" Edit " , " Edit " ,
2004-07-17 01:22:49 +02:00
WS_CHILDWINDOW | WS_VISIBLE | WS_TABSTOP | ES_LEFT | ES_AUTOHSCROLL ,
16 , 33 , 184 , 24 , hwnd , ( HMENU ) 101 , g_hinst , 0 ) ;
if ( ! g_hwndTestDlgEdit ) return FALSE ;
2013-10-23 07:53:37 +02:00
g_hwndTestDlgBut1 = CreateWindowExA ( WS_EX_LEFT | WS_EX_LTRREADING | WS_EX_RIGHTSCROLLBAR
2004-07-17 01:22:49 +02:00
| WS_EX_NOPARENTNOTIFY ,
2013-10-23 07:53:37 +02:00
" button " , " Button &1 " ,
2004-07-17 01:22:49 +02:00
WS_CHILDWINDOW | WS_VISIBLE | WS_TABSTOP | BS_PUSHBUTTON | BS_TEXT ,
204 , 33 , 30 , 24 , hwnd , ( HMENU ) 201 , g_hinst , 0 ) ;
if ( ! g_hwndTestDlgBut1 ) return FALSE ;
2013-10-23 07:53:37 +02:00
g_hwndTestDlgBut2 = CreateWindowExA ( WS_EX_LEFT | WS_EX_LTRREADING | WS_EX_RIGHTSCROLLBAR
| WS_EX_NOPARENTNOTIFY , " button " ,
" Button &2 " ,
2004-07-17 01:22:49 +02:00
WS_CHILDWINDOW | WS_VISIBLE | WS_TABSTOP | BS_PUSHBUTTON | BS_TEXT ,
90 , 102 , 80 , 24 , hwnd , ( HMENU ) IDCANCEL , g_hinst , 0 ) ;
if ( ! g_hwndTestDlgBut2 ) return FALSE ;
return TRUE ;
}
2004-02-12 03:16:33 +01:00
static LRESULT CALLBACK main_window_procA ( HWND hwnd , UINT uiMsg , WPARAM wParam ,
LPARAM lParam )
{
switch ( uiMsg )
{
/* Add blank case statements for these to ensure we don't use them
* by mistake .
*/
case DM_GETDEFID : break ;
case DM_SETDEFID : break ;
case WM_CREATE :
return ( OnMainWindowCreate ( hwnd ,
( LPCREATESTRUCTA ) lParam ) ? 0 : ( LRESULT ) - 1 ) ;
case WM_COMMAND :
if ( wParam = = IDCANCEL )
{
g_terminated = TRUE ;
return 0 ;
}
break ;
}
2010-01-07 21:46:16 +01:00
return DefWindowProcA ( hwnd , uiMsg , wParam , lParam ) ;
2004-02-12 03:16:33 +01:00
}
2007-10-25 09:36:54 +02:00
static LRESULT CALLBACK disabled_test_proc ( HWND hwnd , UINT uiMsg ,
WPARAM wParam , LPARAM lParam )
{
switch ( uiMsg )
{
case WM_INITDIALOG :
2010-01-07 21:46:16 +01:00
{
DWORD dw ;
HWND hwndOk ;
2013-10-23 07:53:37 +02:00
dw = SendMessageA ( hwnd , DM_GETDEFID , 0 , 0 ) ;
2007-10-25 09:36:54 +02:00
assert ( DC_HASDEFID = = HIWORD ( dw ) ) ;
hwndOk = GetDlgItem ( hwnd , LOWORD ( dw ) ) ;
assert ( hwndOk ) ;
EnableWindow ( hwndOk , FALSE ) ;
2013-10-23 07:53:37 +02:00
PostMessageA ( hwnd , WM_KEYDOWN , VK_RETURN , 0 ) ;
PostMessageA ( hwnd , WM_COMMAND , IDCANCEL , 0 ) ;
2007-10-25 09:36:54 +02:00
break ;
2010-01-07 21:46:16 +01:00
}
2007-10-25 09:36:54 +02:00
case WM_COMMAND :
if ( wParam = = IDOK )
{
g_terminated = TRUE ;
EndDialog ( hwnd , 0 ) ;
return 0 ;
}
else if ( wParam = = IDCANCEL )
{
EndDialog ( hwnd , 0 ) ;
return 0 ;
}
break ;
}
2010-01-07 21:46:16 +01:00
return DefWindowProcA ( hwnd , uiMsg , wParam , lParam ) ;
2007-10-25 09:36:54 +02:00
}
2004-07-17 01:22:49 +02:00
static LRESULT CALLBACK testDlgWinProc ( HWND hwnd , UINT uiMsg , WPARAM wParam ,
LPARAM lParam )
{
switch ( uiMsg )
{
/* Add blank case statements for these to ensure we don't use them
* by mistake .
*/
case DM_GETDEFID : break ;
case DM_SETDEFID : break ;
case WM_CREATE :
return ( OnTestDlgCreate ( hwnd ,
( LPCREATESTRUCTA ) lParam ) ? 0 : ( LRESULT ) - 1 ) ;
2011-07-13 19:10:30 +02:00
case WM_COMMAND :
if ( LOWORD ( wParam ) = = 300 ) g_bReceivedCommand = TRUE ;
2004-07-17 01:22:49 +02:00
}
2010-01-07 21:46:16 +01:00
return DefDlgProcA ( hwnd , uiMsg , wParam , lParam ) ;
2004-07-17 01:22:49 +02:00
}
2004-02-12 03:16:33 +01:00
static BOOL RegisterWindowClasses ( void )
{
WNDCLASSA cls ;
cls . style = 0 ;
cls . lpfnWndProc = DefWindowProcA ;
cls . cbClsExtra = 0 ;
cls . cbWndExtra = 0 ;
cls . hInstance = g_hinst ;
cls . hIcon = NULL ;
2013-10-23 07:53:37 +02:00
cls . hCursor = LoadCursorA ( NULL , ( LPCSTR ) IDC_ARROW ) ;
2004-02-12 03:16:33 +01:00
cls . hbrBackground = ( HBRUSH ) ( COLOR_WINDOW + 1 ) ;
cls . lpszMenuName = NULL ;
cls . lpszClassName = " GetNextDlgItemWindowClass " ;
if ( ! RegisterClassA ( & cls ) ) return FALSE ;
cls . lpfnWndProc = main_window_procA ;
cls . lpszClassName = " IsDialogMessageWindowClass " ;
if ( ! RegisterClassA ( & cls ) ) return FALSE ;
2004-07-17 01:22:49 +02:00
GetClassInfoA ( 0 , " #32770 " , & cls ) ;
cls . lpfnWndProc = testDlgWinProc ;
cls . lpszClassName = " WM_NEXTDLGCTLWndClass " ;
if ( ! RegisterClassA ( & cls ) ) return FALSE ;
2004-02-12 03:16:33 +01:00
return TRUE ;
}
2010-04-23 18:52:13 +02:00
static void test_WM_NEXTDLGCTL ( void )
2004-07-17 01:22:49 +02:00
{
2011-07-13 19:10:30 +02:00
HWND child1 , child2 , child3 ;
MSG msg ;
2004-07-17 01:22:49 +02:00
DWORD dwVal ;
2013-10-23 07:53:37 +02:00
g_hwndTestDlg = CreateWindowExA ( WS_EX_LEFT | WS_EX_LTRREADING | WS_EX_RIGHTSCROLLBAR
2004-07-17 01:22:49 +02:00
| WS_EX_DLGMODALFRAME | WS_EX_WINDOWEDGE | WS_EX_CONTROLPARENT | WS_EX_APPWINDOW ,
" WM_NEXTDLGCTLWndClass " ,
" WM_NEXTDLGCTL Message test window " ,
WS_POPUPWINDOW | WS_CLIPSIBLINGS | WS_DLGFRAME | WS_OVERLAPPED |
WS_MINIMIZEBOX | WS_MAXIMIZEBOX | DS_3DLOOK | DS_SETFONT | DS_MODALFRAME ,
0 , 0 , 235 , 135 ,
NULL , NULL , g_hinst , 0 ) ;
assert ( g_hwndTestDlg ) ;
assert ( g_hwndTestDlgBut1 ) ;
assert ( g_hwndTestDlgBut2 ) ;
assert ( g_hwndTestDlgEdit ) ;
/*
* Test message DM_SETDEFID
*/
DefDlgProcA ( g_hwndTestDlg , DM_SETDEFID , IDCANCEL , 0 ) ;
DefDlgProcA ( g_hwndTestDlgBut1 , BM_SETSTYLE , BS_DEFPUSHBUTTON , FALSE ) ;
dwVal = DefDlgProcA ( g_hwndTestDlg , DM_GETDEFID , 0 , 0 ) ;
2004-09-02 22:09:37 +02:00
ok ( IDCANCEL = = ( LOWORD ( dwVal ) ) , " Did not set default ID \n " ) ;
2004-07-17 01:22:49 +02:00
/*
* Check whether message WM_NEXTDLGCTL is changing the focus to next control and if
* the destination control is a button , style of the button should be changed to
* BS_DEFPUSHBUTTON with out making it default .
*/
/*
* Keep the focus on Edit control .
*/
if ( SetFocus ( g_hwndTestDlgEdit ) )
{
ok ( ( GetFocus ( ) = = g_hwndTestDlgEdit ) , " Focus didn't set on Edit control \n " ) ;
/*
* Test message WM_NEXTDLGCTL
*/
DefDlgProcA ( g_hwndTestDlg , WM_NEXTDLGCTL , 0 , 0 ) ;
ok ( ( GetFocus ( ) = = g_hwndTestDlgBut1 ) , " Focus didn't move to first button \n " ) ;
/*
* Check whether the default button ID got changed by sending message " WM_NEXTDLGCTL "
*/
dwVal = DefDlgProcA ( g_hwndTestDlg , DM_GETDEFID , 0 , 0 ) ;
2004-08-14 02:44:08 +02:00
ok ( IDCANCEL = = ( LOWORD ( dwVal ) ) , " WM_NEXTDLGCTL changed default button \n " ) ;
2004-07-17 01:22:49 +02:00
/*
* Check whether the style of the button which got the focus , changed to BS_DEFPUSHBUTTON and
* the style of default button changed to BS_PUSHBUTTON .
*/
if ( IDCANCEL = = ( LOWORD ( dwVal ) ) )
{
2013-10-23 07:53:37 +02:00
ok ( ( ( GetWindowLongA ( g_hwndTestDlgBut1 , GWL_STYLE ) ) & BS_DEFPUSHBUTTON ) ,
2004-07-17 01:22:49 +02:00
" Button1 style not set to BS_DEFPUSHBUTTON \n " ) ;
2013-10-23 07:53:37 +02:00
ok ( ! ( ( GetWindowLongA ( g_hwndTestDlgBut2 , GWL_STYLE ) ) & BS_DEFPUSHBUTTON ) ,
2011-07-21 20:27:14 +02:00
" Button2's style not changed to BS_PUSHBUTTON \n " ) ;
2004-07-17 01:22:49 +02:00
}
/*
* Move focus to Button2 using " WM_NEXTDLGCTL "
*/
DefDlgProcA ( g_hwndTestDlg , WM_NEXTDLGCTL , 0 , 0 ) ;
ok ( ( GetFocus ( ) = = g_hwndTestDlgBut2 ) , " Focus didn't move to second button \n " ) ;
/*
* Check whether the default button ID got changed by sending message " WM_NEXTDLGCTL "
*/
dwVal = DefDlgProcA ( g_hwndTestDlg , DM_GETDEFID , 0 , 0 ) ;
ok ( IDCANCEL = = ( LOWORD ( dwVal ) ) , " WM_NEXTDLGCTL changed default button \n " ) ;
/*
* Check whether the style of the button which got the focus , changed to BS_DEFPUSHBUTTON and
* the style of button which lost the focus changed to BS_PUSHBUTTON .
*/
if ( IDCANCEL = = ( LOWORD ( dwVal ) ) )
{
2013-10-23 07:53:37 +02:00
ok ( ( ( GetWindowLongA ( g_hwndTestDlgBut2 , GWL_STYLE ) ) & BS_DEFPUSHBUTTON ) ,
2004-07-17 01:22:49 +02:00
" Button2 style not set to BS_DEFPUSHBUTTON \n " ) ;
2013-10-23 07:53:37 +02:00
ok ( ! ( ( GetWindowLongA ( g_hwndTestDlgBut1 , GWL_STYLE ) ) & BS_DEFPUSHBUTTON ) ,
2011-07-21 20:27:14 +02:00
" Button1's style not changed to BS_PUSHBUTTON \n " ) ;
2004-07-17 01:22:49 +02:00
}
/*
* Move focus to Edit control using " WM_NEXTDLGCTL "
*/
DefDlgProcA ( g_hwndTestDlg , WM_NEXTDLGCTL , 0 , 0 ) ;
ok ( ( GetFocus ( ) = = g_hwndTestDlgEdit ) , " Focus didn't move to Edit control \n " ) ;
/*
* Check whether the default button ID got changed by sending message " WM_NEXTDLGCTL "
*/
dwVal = DefDlgProcA ( g_hwndTestDlg , DM_GETDEFID , 0 , 0 ) ;
2004-08-14 02:44:08 +02:00
ok ( IDCANCEL = = ( LOWORD ( dwVal ) ) , " WM_NEXTDLGCTL changed default button \n " ) ;
2004-07-17 01:22:49 +02:00
}
2011-07-13 19:10:30 +02:00
/* test nested default buttons */
child1 = CreateWindowA ( " button " , " child1 " , WS_VISIBLE | WS_CHILD , 0 , 0 , 50 , 50 ,
g_hwndTestDlg , ( HMENU ) 100 , g_hinst , NULL ) ;
ok ( child1 ! = NULL , " failed to create first child \n " ) ;
child2 = CreateWindowA ( " button " , " child2 " , WS_VISIBLE | WS_CHILD , 60 , 60 , 30 , 30 ,
g_hwndTestDlg , ( HMENU ) 200 , g_hinst , NULL ) ;
ok ( child2 ! = NULL , " failed to create second child \n " ) ;
/* create nested child */
child3 = CreateWindowA ( " button " , " child3 " , WS_VISIBLE | WS_CHILD , 10 , 10 , 10 , 10 ,
child1 , ( HMENU ) 300 , g_hinst , NULL ) ;
ok ( child3 ! = NULL , " failed to create subchild \n " ) ;
DefDlgProcA ( g_hwndTestDlg , DM_SETDEFID , 200 , 0 ) ;
dwVal = DefDlgProcA ( g_hwndTestDlg , DM_GETDEFID , 0 , 0 ) ;
ok ( LOWORD ( dwVal ) = = 200 , " expected 200, got %x \n " , dwVal ) ;
DefDlgProcA ( g_hwndTestDlg , DM_SETDEFID , 300 , 0 ) ;
dwVal = DefDlgProcA ( g_hwndTestDlg , DM_GETDEFID , 0 , 0 ) ;
ok ( LOWORD ( dwVal ) = = 300 , " expected 300, got %x \n " , dwVal ) ;
ok ( SendMessageW ( child3 , WM_GETDLGCODE , 0 , 0 ) ! = DLGC_DEFPUSHBUTTON ,
" expected child3 not to be marked as DLGC_DEFPUSHBUTTON \n " ) ;
g_bReceivedCommand = FALSE ;
FormEnterMsg ( & msg , child3 ) ;
2013-10-23 07:53:37 +02:00
ok ( IsDialogMessageA ( g_hwndTestDlg , & msg ) , " Did not handle the ENTER \n " ) ;
2011-07-26 20:39:28 +02:00
ok ( g_bReceivedCommand , " Did not trigger the default Button action \n " ) ;
2011-07-13 19:10:30 +02:00
DestroyWindow ( child3 ) ;
DestroyWindow ( child2 ) ;
DestroyWindow ( child1 ) ;
2004-09-10 23:14:43 +02:00
DestroyWindow ( g_hwndTestDlg ) ;
2004-07-17 01:22:49 +02:00
}
2010-04-23 18:52:13 +02:00
static void test_IsDialogMessage ( void )
2004-02-12 03:16:33 +01:00
{
MSG msg ;
2013-10-23 07:53:37 +02:00
g_hwndMain = CreateWindowA ( " IsDialogMessageWindowClass " , " IsDialogMessageWindowClass " ,
2004-02-12 03:16:33 +01:00
WS_OVERLAPPEDWINDOW ,
CW_USEDEFAULT , CW_USEDEFAULT , CW_USEDEFAULT , CW_USEDEFAULT ,
NULL , NULL , g_hinst , 0 ) ;
assert ( g_hwndMain ) ;
assert ( g_hwndButton1 ) ;
assert ( g_hwndButtonCancel ) ;
/* The focus should initially be nowhere. The first TAB should take it
* to the first button . The second TAB should take it to the Cancel
* button .
*/
FormTabMsg ( & msg , g_hwndMain ) ;
2013-10-23 07:53:37 +02:00
ok ( IsDialogMessageA ( g_hwndMain , & msg ) , " Did not handle first TAB \n " ) ;
2004-02-12 03:16:33 +01:00
ok ( ( GetFocus ( ) = = g_hwndButton1 ) , " Focus did not move to first button \n " ) ;
FormTabMsg ( & msg , g_hwndButton1 ) ;
2013-10-23 07:53:37 +02:00
ok ( IsDialogMessageA ( g_hwndMain , & msg ) , " Did not handle second TAB \n " ) ;
2004-02-12 03:16:33 +01:00
ok ( ( GetFocus ( ) = = g_hwndButtonCancel ) ,
" Focus did not move to cancel button \n " ) ;
FormEnterMsg ( & msg , g_hwndButtonCancel ) ;
2013-10-23 07:53:37 +02:00
ok ( IsDialogMessageA ( g_hwndMain , & msg ) , " Did not handle the ENTER \n " ) ;
2004-02-12 03:16:33 +01:00
ok ( g_terminated , " ENTER did not terminate \n " ) ;
}
2004-09-10 23:14:43 +02:00
2007-09-20 19:31:56 +02:00
static INT_PTR CALLBACK delayFocusDlgWinProc ( HWND hDlg , UINT uiMsg , WPARAM wParam ,
2004-09-10 23:14:43 +02:00
LPARAM lParam )
{
switch ( uiMsg )
{
case WM_INITDIALOG :
g_hwndMain = hDlg ;
g_hwndInitialFocusGroupBox = GetDlgItem ( hDlg , 100 ) ;
g_hwndButton1 = GetDlgItem ( hDlg , 200 ) ;
g_hwndButton2 = GetDlgItem ( hDlg , 201 ) ;
g_hwndButtonCancel = GetDlgItem ( hDlg , IDCANCEL ) ;
2013-10-23 07:53:37 +02:00
g_styleInitialFocusT1 = GetWindowLongA ( g_hwndInitialFocusGroupBox , GWL_STYLE ) ;
2004-09-10 23:14:43 +02:00
/* Initially check the second radio button */
2013-10-23 07:53:37 +02:00
SendMessageA ( g_hwndButton1 , BM_SETCHECK , BST_UNCHECKED , 0 ) ;
SendMessageA ( g_hwndButton2 , BM_SETCHECK , BST_CHECKED , 0 ) ;
2004-09-10 23:14:43 +02:00
/* Continue testing after dialog initialization */
2013-10-23 07:53:37 +02:00
PostMessageA ( hDlg , WM_USER , 0 , 0 ) ;
2004-09-10 23:14:43 +02:00
return g_bInitialFocusInitDlgResult ;
case WM_COMMAND :
if ( LOWORD ( wParam ) = = IDCANCEL )
{
EndDialog ( hDlg , LOWORD ( wParam ) ) ;
return TRUE ;
}
return FALSE ;
case WM_USER :
2013-10-23 07:53:37 +02:00
g_styleInitialFocusT2 = GetWindowLongA ( hDlg , GWL_STYLE ) ;
2004-09-10 23:14:43 +02:00
g_hwndInitialFocusT1 = GetFocus ( ) ;
SetFocus ( hDlg ) ;
g_hwndInitialFocusT2 = GetFocus ( ) ;
2013-10-23 07:53:37 +02:00
PostMessageA ( hDlg , WM_COMMAND , IDCANCEL , 0 ) ;
2004-09-10 23:14:43 +02:00
return TRUE ;
}
return FALSE ;
}
2007-09-20 19:31:56 +02:00
static INT_PTR CALLBACK focusDlgWinProc ( HWND hDlg , UINT uiMsg , WPARAM wParam ,
2004-12-21 17:01:50 +01:00
LPARAM lParam )
{
switch ( uiMsg )
{
case WM_INITDIALOG :
2016-02-16 14:49:10 +01:00
SetWindowTextA ( GetDlgItem ( hDlg , 200 ) , " new caption " ) ;
return TRUE ;
2004-12-21 17:01:50 +01:00
case WM_COMMAND :
2010-07-06 21:03:10 +02:00
if ( LOWORD ( wParam ) = = 200 )
2004-12-21 17:01:50 +01:00
{
if ( HIWORD ( wParam ) = = EN_SETFOCUS )
g_hwndInitialFocusT1 = ( HWND ) lParam ;
}
return FALSE ;
}
return FALSE ;
}
2004-09-10 23:14:43 +02:00
/* Helper for InitialFocusTest */
static const char * GetHwndString ( HWND hw )
{
if ( hw = = NULL )
return " a null handle " ;
if ( hw = = g_hwndMain )
return " the dialog handle " ;
if ( hw = = g_hwndInitialFocusGroupBox )
return " the group box control " ;
if ( hw = = g_hwndButton1 )
return " the first button " ;
if ( hw = = g_hwndButton2 )
return " the second button " ;
if ( hw = = g_hwndButtonCancel )
return " the cancel button " ;
return " unknown handle " ;
}
2012-08-07 01:13:15 +02:00
static void test_focus ( void )
2004-09-10 23:14:43 +02:00
{
/* Test 1:
* This test intentionally returns FALSE in response to WM_INITDIALOG
2011-12-02 08:37:01 +01:00
* without setting focus to a control . This is what MFC ' s CFormView does .
2004-09-10 23:14:43 +02:00
*
* Since the WM_INITDIALOG handler returns FALSE without setting the focus ,
* the focus should initially be NULL . Later , when we manually set focus to
* the dialog , the default handler should set focus to the first control that
* is " visible, not disabled, and has the WS_TABSTOP style " ( MSDN ) . Because the
* second radio button has been checked , it should be the first control
* that meets these criteria and should receive the focus .
*/
g_bInitialFocusInitDlgResult = FALSE ;
g_hwndInitialFocusT1 = ( HWND ) - 1 ;
g_hwndInitialFocusT2 = ( HWND ) - 1 ;
g_styleInitialFocusT1 = - 1 ;
g_styleInitialFocusT2 = - 1 ;
2007-09-20 19:31:56 +02:00
DialogBoxA ( g_hinst , " RADIO_TEST_DIALOG " , NULL , delayFocusDlgWinProc ) ;
2004-09-10 23:14:43 +02:00
ok ( ( ( g_styleInitialFocusT1 & WS_TABSTOP ) = = 0 ) ,
" Error in wrc - Detected WS_TABSTOP as default style for GROUPBOX \n " ) ;
2004-09-10 23:27:02 +02:00
ok ( ( ( g_styleInitialFocusT2 & WS_VISIBLE ) = = 0 ) ,
2004-09-10 23:14:43 +02:00
" Modal dialogs should not be shown until the message queue first goes empty \n " ) ;
2004-09-10 23:27:02 +02:00
ok ( ( g_hwndInitialFocusT1 = = NULL ) ,
" Error in initial focus when WM_INITDIALOG returned FALSE: "
" Expected NULL focus, got %s (%p). \n " ,
GetHwndString ( g_hwndInitialFocusT1 ) , g_hwndInitialFocusT1 ) ;
2004-09-10 23:14:43 +02:00
2004-09-11 00:29:02 +02:00
ok ( ( g_hwndInitialFocusT2 = = g_hwndButton2 ) ,
" Error after first SetFocus() when WM_INITDIALOG returned FALSE: "
" Expected the second button (%p), got %s (%p). \n " ,
g_hwndButton2 , GetHwndString ( g_hwndInitialFocusT2 ) ,
g_hwndInitialFocusT2 ) ;
2004-09-10 23:14:43 +02:00
/* Test 2:
* This is the same as above , except WM_INITDIALOG is made to return TRUE .
* This should cause the focus to go to the second radio button right away
* and stay there ( until the user indicates otherwise ) .
*/
g_bInitialFocusInitDlgResult = TRUE ;
g_hwndInitialFocusT1 = ( HWND ) - 1 ;
g_hwndInitialFocusT2 = ( HWND ) - 1 ;
g_styleInitialFocusT1 = - 1 ;
g_styleInitialFocusT2 = - 1 ;
2007-09-20 19:31:56 +02:00
DialogBoxA ( g_hinst , " RADIO_TEST_DIALOG " , NULL , delayFocusDlgWinProc ) ;
2004-09-10 23:14:43 +02:00
ok ( ( g_hwndInitialFocusT1 = = g_hwndButton2 ) ,
" Error in initial focus when WM_INITDIALOG returned TRUE: "
" Expected the second button (%p), got %s (%p). \n " ,
2010-02-23 08:16:26 +01:00
g_hwndButton2 , GetHwndString ( g_hwndInitialFocusT1 ) ,
g_hwndInitialFocusT1 ) ;
2004-09-10 23:14:43 +02:00
ok ( ( g_hwndInitialFocusT2 = = g_hwndButton2 ) ,
" Error after first SetFocus() when WM_INITDIALOG returned TRUE: "
" Expected the second button (%p), got %s (%p). \n " ,
g_hwndButton2 , GetHwndString ( g_hwndInitialFocusT2 ) ,
g_hwndInitialFocusT2 ) ;
2004-12-21 17:01:50 +01:00
/* Test 3:
* If the dialog has DS_CONTROL and it ' s not visible then we shouldn ' t change focus */
{
HWND hDlg ;
HRSRC hResource ;
HANDLE hTemplate ;
DLGTEMPLATE * pTemplate ;
2012-08-07 01:13:15 +02:00
HWND hTextbox ;
DWORD selectionStart = 0xdead , selectionEnd = 0xbeef ;
2004-12-21 17:01:50 +01:00
2013-10-23 07:53:37 +02:00
hResource = FindResourceA ( g_hinst , " FOCUS_TEST_DIALOG " , ( LPCSTR ) RT_DIALOG ) ;
2004-12-21 17:01:50 +01:00
hTemplate = LoadResource ( g_hinst , hResource ) ;
2008-11-04 23:35:56 +01:00
pTemplate = LockResource ( hTemplate ) ;
2004-12-21 17:01:50 +01:00
g_hwndInitialFocusT1 = 0 ;
2008-03-07 21:44:05 +01:00
hDlg = CreateDialogIndirectParamA ( g_hinst , pTemplate , NULL , focusDlgWinProc , 0 ) ;
2004-12-21 17:01:50 +01:00
ok ( hDlg ! = 0 , " Failed to create test dialog. \n " ) ;
ok ( ( g_hwndInitialFocusT1 = = 0 ) ,
" Focus should not be set for an invisible DS_CONTROL dialog %p. \n " , g_hwndInitialFocusT1 ) ;
2012-08-07 01:13:15 +02:00
/* Also make sure that WM_SETFOCUS selects the textbox's text */
hTextbox = GetDlgItem ( hDlg , 200 ) ;
2013-10-23 07:53:37 +02:00
SendMessageA ( hTextbox , WM_SETTEXT , 0 , ( LPARAM ) " Hello world " ) ;
2012-08-07 01:13:15 +02:00
2013-10-23 07:53:37 +02:00
SendMessageA ( hDlg , WM_SETFOCUS , 0 , 0 ) ;
SendMessageA ( hTextbox , EM_GETSEL , ( WPARAM ) & selectionStart , ( LPARAM ) & selectionEnd ) ;
2012-08-07 01:13:15 +02:00
ok ( selectionStart = = 0 & & selectionEnd = = 11 , " Text selection after WM_SETFOCUS is [%i, %i) expected [0, 11) \n " , selectionStart , selectionEnd ) ;
/* but WM_ACTIVATE does not */
2013-10-23 07:53:37 +02:00
SendMessageA ( hTextbox , EM_SETSEL , 0 , 0 ) ;
SendMessageA ( hDlg , WM_ACTIVATE , WA_ACTIVE , 0 ) ;
SendMessageA ( hTextbox , EM_GETSEL , ( WPARAM ) & selectionStart , ( LPARAM ) & selectionEnd ) ;
2012-08-07 01:13:15 +02:00
ok ( selectionStart = = 0 & & selectionEnd = = 0 , " Text selection after WM_ACTIVATE is [%i, %i) expected [0, 0) \n " , selectionStart , selectionEnd ) ;
2004-12-21 17:01:50 +01:00
DestroyWindow ( hDlg ) ;
}
2011-12-02 08:37:01 +01:00
/* Test 4:
* If the dialog has no tab - accessible controls , set focus to first control */
{
HWND hDlg ;
HRSRC hResource ;
HANDLE hTemplate ;
DLGTEMPLATE * pTemplate ;
HWND hLabel ;
2013-10-23 07:53:37 +02:00
hResource = FindResourceA ( g_hinst , " FOCUS_TEST_DIALOG_2 " , ( LPCSTR ) RT_DIALOG ) ;
2011-12-02 08:37:01 +01:00
hTemplate = LoadResource ( g_hinst , hResource ) ;
pTemplate = LockResource ( hTemplate ) ;
hDlg = CreateDialogIndirectParamA ( g_hinst , pTemplate , NULL , focusDlgWinProc , 0 ) ;
2012-08-07 01:13:15 +02:00
ok ( hDlg ! = 0 , " Failed to create test dialog. \n " ) ;
2011-12-02 08:37:01 +01:00
hLabel = GetDlgItem ( hDlg , 200 ) ;
2012-08-07 01:13:15 +02:00
ok ( GetFocus ( ) = = hLabel , " Focus not set to label, focus=%p dialog=%p label=%p \n " , GetFocus ( ) , hDlg , hLabel ) ;
DestroyWindow ( hDlg ) ;
/* Also check focus after WM_ACTIVATE and WM_SETFOCUS */
hDlg = CreateDialogIndirectParamA ( g_hinst , pTemplate , NULL , NULL , 0 ) ;
ok ( hDlg ! = 0 , " Failed to create test dialog. \n " ) ;
hLabel = GetDlgItem ( hDlg , 200 ) ;
SetFocus ( NULL ) ;
2013-10-23 07:53:37 +02:00
SendMessageA ( hDlg , WM_ACTIVATE , WA_ACTIVE , 0 ) ;
2012-08-07 01:13:15 +02:00
ok ( GetFocus ( ) = = NULL , " Focus set on WM_ACTIVATE, focus=%p dialog=%p label=%p \n " , GetFocus ( ) , hDlg , hLabel ) ;
SetFocus ( NULL ) ;
2013-10-23 07:53:37 +02:00
SendMessageA ( hDlg , WM_SETFOCUS , 0 , 0 ) ;
2012-08-07 01:13:15 +02:00
ok ( GetFocus ( ) = = hLabel , " Focus not set to label on WM_SETFOCUS, focus=%p dialog=%p label=%p \n " , GetFocus ( ) , hDlg , hLabel ) ;
2011-12-02 08:37:01 +01:00
DestroyWindow ( hDlg ) ;
}
2016-02-16 14:49:10 +01:00
/* Test 5:
* Select textbox ' s text on creation */
{
HWND hDlg ;
HRSRC hResource ;
HANDLE hTemplate ;
DLGTEMPLATE * pTemplate ;
HWND edit ;
DWORD selectionStart = 0xdead , selectionEnd = 0xbeef ;
hResource = FindResourceA ( g_hinst , " FOCUS_TEST_DIALOG_3 " , ( LPCSTR ) RT_DIALOG ) ;
hTemplate = LoadResource ( g_hinst , hResource ) ;
pTemplate = LockResource ( hTemplate ) ;
hDlg = CreateDialogIndirectParamA ( g_hinst , pTemplate , NULL , focusDlgWinProc , 0 ) ;
ok ( hDlg ! = 0 , " Failed to create test dialog. \n " ) ;
edit = GetDlgItem ( hDlg , 200 ) ;
ok ( GetFocus ( ) = = edit , " Focus not set to edit, focus=%p, dialog=%p, edit=%p \n " ,
GetFocus ( ) , hDlg , edit ) ;
SendMessageA ( edit , EM_GETSEL , ( WPARAM ) & selectionStart , ( LPARAM ) & selectionEnd ) ;
ok ( selectionStart = = 0 & & selectionEnd = = 11 ,
" Text selection after WM_SETFOCUS is [%i, %i) expected [0, 11) \n " ,
selectionStart , selectionEnd ) ;
DestroyWindow ( hDlg ) ;
}
2004-09-10 23:14:43 +02:00
}
2005-07-01 17:38:39 +02:00
static void test_GetDlgItemText ( void )
{
char string [ 64 ] ;
BOOL ret ;
strcpy ( string , " Overwrite Me " ) ;
ret = GetDlgItemTextA ( NULL , 0 , string , sizeof ( string ) / sizeof ( string [ 0 ] ) ) ;
ok ( ! ret , " GetDlgItemText(NULL) shouldn't have succeeded \n " ) ;
2008-07-30 13:50:00 +02:00
ok ( string [ 0 ] = = ' \0 ' | | broken ( ! strcmp ( string , " Overwrite Me " ) ) ,
" string retrieved using GetDlgItemText should have been NULL terminated \n " ) ;
2005-07-01 17:38:39 +02:00
}
2010-04-23 18:52:13 +02:00
static void test_GetDlgItem ( void )
{
HWND hwnd , child1 , child2 , hwnd2 ;
BOOL ret ;
hwnd = CreateWindowA ( " button " , " parent " , WS_VISIBLE , 0 , 0 , 100 , 100 , NULL , 0 , g_hinst , NULL ) ;
ok ( hwnd ! = NULL , " failed to created window \n " ) ;
/* created with the same ID */
child1 = CreateWindowA ( " button " , " child1 " , WS_VISIBLE | WS_CHILD , 0 , 0 , 10 , 10 , hwnd , 0 , g_hinst , NULL ) ;
ok ( child1 ! = NULL , " failed to create first child \n " ) ;
child2 = CreateWindowA ( " button " , " child2 " , WS_VISIBLE | WS_CHILD , 0 , 0 , 10 , 10 , hwnd , 0 , g_hinst , NULL ) ;
ok ( child2 ! = NULL , " failed to create second child \n " ) ;
hwnd2 = GetDlgItem ( hwnd , 0 ) ;
ok ( hwnd2 = = child1 , " expected first child, got %p \n " , hwnd2 ) ;
hwnd2 = GetTopWindow ( hwnd ) ;
ok ( hwnd2 = = child1 , " expected first child to be top, got %p \n " , hwnd2 ) ;
ret = SetWindowPos ( child1 , child2 , 0 , 0 , 0 , 0 , SWP_NOMOVE ) ;
ok ( ret , " got %d \n " , ret ) ;
hwnd2 = GetTopWindow ( hwnd ) ;
ok ( hwnd2 = = child2 , " expected second child to be top, got %p \n " , hwnd2 ) ;
/* top window from child list is picked */
hwnd2 = GetDlgItem ( hwnd , 0 ) ;
ok ( hwnd2 = = child2 , " expected second child, got %p \n " , hwnd2 ) ;
2010-07-01 22:07:40 +02:00
/* Now test how GetDlgItem searches */
DestroyWindow ( child2 ) ;
child2 = CreateWindowA ( " button " , " child2 " , WS_VISIBLE | WS_CHILD , 0 , 0 , 10 , 10 , child1 , 0 , g_hinst , NULL ) ;
ok ( child2 ! = NULL , " failed to create second child \n " ) ;
/* give child2 an ID */
2013-10-23 07:53:37 +02:00
SetWindowLongA ( child2 , GWLP_ID , 100 ) ;
2010-07-01 22:07:40 +02:00
hwnd2 = GetDlgItem ( hwnd , 100 ) ;
ok ( ! hwnd2 , " expected child to not be found, got %p \n " , hwnd2 ) ;
/* make the ID of child2 public with a WS_EX_CONTROLPARENT parent */
2013-10-23 07:53:37 +02:00
SetWindowLongA ( child1 , GWL_EXSTYLE , WS_EX_CONTROLPARENT ) ;
2010-07-01 22:07:40 +02:00
hwnd2 = GetDlgItem ( hwnd , 100 ) ;
ok ( ! hwnd2 , " expected child to not be found, got %p \n " , hwnd2 ) ;
2010-04-23 18:52:13 +02:00
DestroyWindow ( child1 ) ;
DestroyWindow ( child2 ) ;
DestroyWindow ( hwnd ) ;
}
2009-08-07 11:05:50 +02:00
static INT_PTR CALLBACK DestroyDlgWinProc ( HWND hDlg , UINT uiMsg ,
WPARAM wParam , LPARAM lParam )
{
if ( uiMsg = = WM_INITDIALOG )
{
DestroyWindow ( hDlg ) ;
return TRUE ;
}
return FALSE ;
}
static INT_PTR CALLBACK DestroyOnCloseDlgWinProc ( HWND hDlg , UINT uiMsg ,
WPARAM wParam , LPARAM lParam )
{
switch ( uiMsg )
{
case WM_INITDIALOG :
2013-10-23 07:53:37 +02:00
PostMessageA ( hDlg , WM_CLOSE , 0 , 0 ) ;
2009-08-07 11:05:50 +02:00
return TRUE ;
case WM_CLOSE :
DestroyWindow ( hDlg ) ;
return TRUE ;
case WM_DESTROY :
PostQuitMessage ( 0 ) ;
return TRUE ;
}
return FALSE ;
}
2010-02-23 08:16:18 +01:00
static INT_PTR CALLBACK TestInitDialogHandleProc ( HWND hDlg , UINT uiMsg ,
WPARAM wParam , LPARAM lParam )
{
if ( uiMsg = = WM_INITDIALOG )
{
HWND expected = GetNextDlgTabItem ( hDlg , NULL , FALSE ) ;
ok ( expected = = ( HWND ) wParam ,
" Expected wParam to be the handle to the first tabstop control (%p), got %p \n " ,
expected , ( HWND ) wParam ) ;
2013-10-23 07:53:37 +02:00
EndDialog ( hDlg , LOWORD ( SendMessageA ( hDlg , DM_GETDEFID , 0 , 0 ) ) ) ;
2010-02-23 08:16:18 +01:00
return TRUE ;
}
return FALSE ;
}
2009-08-25 16:19:24 +02:00
static INT_PTR CALLBACK TestDefButtonDlgProc ( HWND hDlg , UINT uiMsg ,
WPARAM wParam , LPARAM lParam )
{
switch ( uiMsg )
{
case WM_INITDIALOG :
2013-10-23 07:53:37 +02:00
EndDialog ( hDlg , LOWORD ( SendMessageA ( hDlg , DM_GETDEFID , 0 , 0 ) ) ) ;
2009-08-25 16:19:24 +02:00
return TRUE ;
}
return FALSE ;
}
2010-09-14 15:46:55 +02:00
static INT_PTR CALLBACK TestReturnKeyDlgProc ( HWND hDlg , UINT uiMsg ,
WPARAM wParam , LPARAM lParam )
{
2012-03-28 07:11:55 +02:00
static int received_idok ;
2010-09-14 15:46:55 +02:00
switch ( uiMsg )
{
case WM_INITDIALOG :
2012-03-28 07:11:55 +02:00
{
MSG msg = { hDlg , WM_KEYDOWN , VK_RETURN , 0x011c0001 } ;
received_idok = - 1 ;
2013-10-23 07:53:37 +02:00
IsDialogMessageA ( hDlg , & msg ) ;
2012-03-28 07:11:55 +02:00
ok ( received_idok = = 0xdead , " WM_COMMAND/0xdead not received \n " ) ;
received_idok = - 2 ;
2013-10-23 07:53:37 +02:00
IsDialogMessageA ( hDlg , & msg ) ;
2012-03-28 07:11:55 +02:00
ok ( received_idok = = IDOK , " WM_COMMAND/IDOK not received \n " ) ;
2010-09-14 15:46:55 +02:00
EndDialog ( hDlg , 0 ) ;
return TRUE ;
2012-03-28 07:11:55 +02:00
}
case DM_GETDEFID :
if ( received_idok = = - 1 )
{
HWND hwnd = GetDlgItem ( hDlg , 0xdead ) ;
ok ( ! hwnd , " dialog item with ID 0xdead should not exist \n " ) ;
2013-10-23 07:53:37 +02:00
SetWindowLongA ( hDlg , DWLP_MSGRESULT , MAKELRESULT ( 0xdead , DC_HASDEFID ) ) ;
2012-03-28 07:11:55 +02:00
return TRUE ;
}
return FALSE ;
2010-09-14 15:46:55 +02:00
case WM_COMMAND :
2012-03-28 07:11:55 +02:00
received_idok = wParam ;
2010-09-14 15:46:55 +02:00
return TRUE ;
}
return FALSE ;
}
2011-11-15 08:27:13 +01:00
static INT_PTR CALLBACK TestControlStyleDlgProc ( HWND hdlg , UINT msg ,
WPARAM wparam , LPARAM lparam )
{
HWND control ;
DWORD style , exstyle ;
char buf [ 256 ] ;
switch ( msg )
{
case WM_INITDIALOG :
control = GetDlgItem ( hdlg , 7 ) ;
ok ( control ! = 0 , " dialog control with id 7 not found \n " ) ;
2013-10-23 07:53:37 +02:00
style = GetWindowLongA ( control , GWL_STYLE ) ;
2011-11-15 08:27:13 +01:00
ok ( style = = ( WS_CHILD | WS_VISIBLE ) , " expected WS_CHILD|WS_VISIBLE, got %#x \n " , style ) ;
2013-10-23 07:53:37 +02:00
exstyle = GetWindowLongA ( control , GWL_EXSTYLE ) ;
2011-11-15 08:27:13 +01:00
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 ) ;
buf [ 0 ] = 0 ;
2013-10-23 07:53:37 +02:00
GetWindowTextA ( control , buf , sizeof ( buf ) ) ;
ok ( strcmp ( buf , " bump7 " ) = = 0 , " expected bump7, got %s \n " , buf ) ;
2011-11-15 08:27:13 +01:00
control = GetDlgItem ( hdlg , 8 ) ;
ok ( control ! = 0 , " dialog control with id 8 not found \n " ) ;
2013-10-23 07:53:37 +02:00
style = GetWindowLongA ( control , GWL_STYLE ) ;
2011-11-15 08:27:13 +01:00
ok ( style = = ( WS_CHILD | WS_VISIBLE ) , " expected WS_CHILD|WS_VISIBLE, got %#x \n " , style ) ;
2013-10-23 07:53:37 +02:00
exstyle = GetWindowLongA ( control , GWL_EXSTYLE ) ;
2011-11-15 08:27:13 +01:00
ok ( exstyle = = ( WS_EX_NOPARENTNOTIFY | WS_EX_TRANSPARENT ) , " expected WS_EX_NOPARENTNOTIFY|WS_EX_TRANSPARENT, got %#x \n " , exstyle ) ;
buf [ 0 ] = 0 ;
2013-10-23 07:53:37 +02:00
GetWindowTextA ( control , buf , sizeof ( buf ) ) ;
ok ( strcmp ( buf , " bump8 " ) = = 0 , " expected bump8, got %s \n " , buf ) ;
2011-11-15 08:27:13 +01:00
EndDialog ( hdlg , - 7 ) ;
return TRUE ;
}
return FALSE ;
}
2007-02-14 21:32:35 +01:00
static void test_DialogBoxParamA ( void )
{
2009-08-12 04:59:38 +02:00
INT_PTR ret ;
2007-02-14 21:32:35 +01:00
HWND hwnd_invalid = ( HWND ) 0x4444 ;
2013-10-23 07:53:37 +02:00
ret = DialogBoxParamA ( GetModuleHandleA ( NULL ) , " TEST_DLG_CHILD_POPUP " , 0 , TestControlStyleDlgProc , 0 ) ;
2011-11-15 08:27:13 +01:00
ok ( ret = = - 7 , " expected -7, got %ld \n " , ret ) ;
2007-02-14 21:32:35 +01:00
SetLastError ( 0xdeadbeef ) ;
2013-10-23 07:53:37 +02:00
ret = DialogBoxParamA ( GetModuleHandleA ( NULL ) , " IDD_DIALOG " , hwnd_invalid , 0 , 0 ) ;
2009-08-12 04:59:38 +02:00
ok ( 0 = = ret | | broken ( ret = = - 1 ) , " DialogBoxParamA returned %ld, expected 0 \n " , ret ) ;
2008-07-30 13:50:00 +02:00
ok ( ERROR_INVALID_WINDOW_HANDLE = = GetLastError ( ) | |
broken ( GetLastError ( ) = = 0xdeadbeef ) ,
" got %d, expected ERROR_INVALID_WINDOW_HANDLE \n " , GetLastError ( ) ) ;
2009-08-07 11:05:50 +02:00
/* Test a dialog which destroys itself on WM_INITDIALOG. */
SetLastError ( 0xdeadbeef ) ;
2013-10-23 07:53:37 +02:00
ret = DialogBoxParamA ( GetModuleHandleA ( NULL ) , " IDD_DIALOG " , 0 , DestroyDlgWinProc , 0 ) ;
2009-08-12 04:59:38 +02:00
ok ( - 1 = = ret , " DialogBoxParamA returned %ld, expected -1 \n " , ret ) ;
2009-08-07 11:05:50 +02:00
ok ( ERROR_INVALID_WINDOW_HANDLE = = GetLastError ( ) | |
2009-08-10 08:36:11 +02:00
GetLastError ( ) = = ERROR_SUCCESS | |
2009-08-07 11:05:50 +02:00
broken ( GetLastError ( ) = = 0xdeadbeef ) ,
" got %d, expected ERROR_INVALID_WINDOW_HANDLE \n " , GetLastError ( ) ) ;
/* Test a dialog which destroys itself on WM_CLOSE. */
2013-10-23 07:53:37 +02:00
ret = DialogBoxParamA ( GetModuleHandleA ( NULL ) , " IDD_DIALOG " , 0 , DestroyOnCloseDlgWinProc , 0 ) ;
2009-08-12 04:59:38 +02:00
ok ( 0 = = ret , " DialogBoxParamA returned %ld, expected 0 \n " , ret ) ;
2009-08-07 11:05:50 +02:00
2007-02-14 21:32:35 +01:00
SetLastError ( 0xdeadbeef ) ;
2013-10-23 07:53:37 +02:00
ret = DialogBoxParamA ( GetModuleHandleA ( NULL ) , " RESOURCE_INVALID " , 0 , 0 , 0 ) ;
2009-08-12 04:59:38 +02:00
ok ( - 1 = = ret , " DialogBoxParamA returned %ld, expected -1 \n " , ret ) ;
2008-07-30 13:50:00 +02:00
ok ( ERROR_RESOURCE_NAME_NOT_FOUND = = GetLastError ( ) | |
broken ( GetLastError ( ) = = 0xdeadbeef ) ,
" got %d, expected ERROR_RESOURCE_NAME_NOT_FOUND \n " , GetLastError ( ) ) ;
2009-08-12 04:59:38 +02:00
SetLastError ( 0xdeadbeef ) ;
ret = DefDlgProcA ( 0 , WM_ERASEBKGND , 0 , 0 ) ;
ok ( ret = = 0 , " DefDlgProcA returned %ld, expected 0 \n " , ret ) ;
2009-08-24 08:50:30 +02:00
ok ( GetLastError ( ) = = ERROR_INVALID_WINDOW_HANDLE | |
broken ( GetLastError ( ) = = 0xdeadbeef ) ,
2009-08-12 04:59:38 +02:00
" got %d, expected ERROR_INVALID_WINDOW_HANDLE \n " , GetLastError ( ) ) ;
2009-08-25 16:19:24 +02:00
2013-10-23 07:53:37 +02:00
ret = DialogBoxParamA ( GetModuleHandleA ( NULL ) , " TEST_EMPTY_DIALOG " , 0 , TestInitDialogHandleProc , 0 ) ;
2010-02-23 08:16:18 +01:00
ok ( ret = = IDOK , " Expected IDOK \n " ) ;
2013-10-23 07:53:37 +02:00
ret = DialogBoxParamA ( GetModuleHandleA ( NULL ) , " TEST_EMPTY_DIALOG " , 0 , TestDefButtonDlgProc , 0 ) ;
2009-08-25 16:19:24 +02:00
ok ( ret = = IDOK , " Expected IDOK \n " ) ;
2010-09-14 15:46:55 +02:00
2013-10-23 07:53:37 +02:00
DialogBoxParamA ( GetModuleHandleA ( NULL ) , " TEST_EMPTY_DIALOG " , 0 , TestReturnKeyDlgProc , 0 ) ;
2007-02-14 21:32:35 +01:00
}
2004-09-10 23:14:43 +02:00
2007-10-25 09:36:54 +02:00
static void test_DisabledDialogTest ( void )
{
g_terminated = FALSE ;
2013-10-23 07:53:37 +02:00
DialogBoxParamA ( g_hinst , " IDD_DIALOG " , NULL , disabled_test_proc , 0 ) ;
2007-10-25 09:36:54 +02:00
ok ( FALSE = = g_terminated , " dialog with disabled ok button has been terminated \n " ) ;
}
2009-03-21 00:23:39 +01:00
static INT_PTR CALLBACK messageBoxFontDlgWinProc ( HWND hDlg , UINT uiMsg , WPARAM wParam ,
LPARAM lParam )
{
2015-02-04 15:05:07 +01:00
if ( uiMsg = = WM_INITDIALOG ) {
SetFocus ( hDlg ) ;
return 1 ;
}
return 0 ;
2009-03-21 00:23:39 +01:00
}
static void test_MessageBoxFontTest ( void )
{
/* This dialog template defines a dialog template which got 0x7fff as its
* font size and omits the other font members . On WinNT , passing such a
* dialog template to CreateDialogIndirectParamW will result in a dialog
* being created which uses the message box font . We test that here .
*/
static unsigned char dlgTemplate [ ] =
{
/* Dialog header */
0x01 , 0x00 , /* Version */
0xff , 0xff , /* Extended template marker */
0x00 , 0x00 , 0x00 , 0x00 , /* Context Help ID */
2010-05-18 23:02:41 +02:00
0x00 , 0x00 , 0x00 , 0x00 , /* Extended style */
2009-03-21 00:23:39 +01:00
0xc0 , 0x00 , 0xc8 , 0x80 , /* Style (WS_SYSMENU|WS_CAPTION|WS_POPUP|DS_SETFONT|DS_MODALFRAME) */
0x01 , 0x00 , /* Control count */
0x00 , 0x00 , /* X */
0x00 , 0x00 , /* Y */
0x80 , 0x00 , /* Width */
0x80 , 0x00 , /* Height */
0x00 , 0x00 , /* Menu name */
0x00 , 0x00 , /* Class name */
' T ' , 0x00 , ' e ' , 0x00 , /* Caption (unicode) */
' s ' , 0x00 , ' t ' , 0x00 ,
0x00 , 0x00 ,
0xff , 0x7f , /* Font height (0x7fff = message box font) */
/* Control #1 */
0x00 , 0x00 , /* Align to DWORD (header is 42 bytes) */
0x00 , 0x00 , 0x00 , 0x00 , /* Context Help ID */
0x00 , 0x00 , 0x00 , 0x00 , /* Extended style */
0x00 , 0x00 , 0x00 , 0x50 , /* Style (WS_CHILD|WS_VISIBLE) */
0x00 , 0x00 , /* X */
0x00 , 0x00 , /* Y */
0x80 , 0x00 , /* Width */
0x80 , 0x00 , /* Height */
0x00 , 0x01 , 0x00 , 0x00 , /* Control ID (256) */
0xff , 0xff , 0x82 , 0x00 , /* Class (Static) */
' W ' , 0x00 , ' I ' , 0x00 , /* Caption (unicode) */
' N ' , 0x00 , ' E ' , 0x00 ,
' ' , 0x00 , ' d ' , 0x00 ,
' i ' , 0x00 , ' a ' , 0x00 ,
' l ' , 0x00 , ' o ' , 0x00 ,
' g ' , 0x00 , ' ' , 0x00 ,
' t ' , 0x00 , ' e ' , 0x00 ,
' s ' , 0x00 , ' t ' , 0x00 ,
' . ' , 0x00 , 0x00 , 0x00 ,
0x00 , 0x00 , /* Size of extended data */
0x00 , 0x00 /* Align to DWORD */
} ;
HWND hDlg ;
HFONT hFont ;
LOGFONTW lfStaticFont ;
NONCLIENTMETRICSW ncMetrics ;
/* Check if the dialog can be created from the template. On Win9x, this should fail
* because we are calling the W function which is not implemented , but that ' s what
* we want , because passing such a template to CreateDialogIndirectParamA would crash
* anyway .
*/
2013-10-23 07:53:37 +02:00
hDlg = CreateDialogIndirectParamW ( g_hinst , ( LPCDLGTEMPLATEW ) dlgTemplate , NULL , messageBoxFontDlgWinProc , 0 ) ;
2009-03-21 00:23:39 +01:00
if ( ! hDlg )
{
2009-04-09 14:56:18 +02:00
win_skip ( " dialog wasn't created \n " ) ;
2009-03-21 00:23:39 +01:00
return ;
}
hFont = ( HFONT ) SendDlgItemMessageW ( hDlg , 256 , WM_GETFONT , 0 , 0 ) ;
if ( ! hFont )
{
skip ( " dialog uses system font \n " ) ;
DestroyWindow ( hDlg ) ;
return ;
}
GetObjectW ( hFont , sizeof ( LOGFONTW ) , & lfStaticFont ) ;
2011-10-08 13:11:34 +02:00
ncMetrics . cbSize = FIELD_OFFSET ( NONCLIENTMETRICSW , iPaddedBorderWidth ) ;
2009-03-21 00:23:39 +01:00
SystemParametersInfoW ( SPI_GETNONCLIENTMETRICS , 0 , & ncMetrics , 0 ) ;
ok ( ! memcmp ( & lfStaticFont , & ncMetrics . lfMessageFont , FIELD_OFFSET ( LOGFONTW , lfFaceName ) ) & &
! lstrcmpW ( lfStaticFont . lfFaceName , ncMetrics . lfMessageFont . lfFaceName ) ,
" dialog doesn't use message box font \n " ) ;
DestroyWindow ( hDlg ) ;
}
2009-08-14 00:36:49 +02:00
static void test_SaveRestoreFocus ( void )
{
HWND hDlg ;
HRSRC hResource ;
HANDLE hTemplate ;
DLGTEMPLATE * pTemplate ;
LONG_PTR foundId ;
HWND foundHwnd ;
/* create the dialog */
2013-10-23 07:53:37 +02:00
hResource = FindResourceA ( g_hinst , " MULTI_EDIT_DIALOG " , ( LPCSTR ) RT_DIALOG ) ;
2009-08-14 00:36:49 +02:00
hTemplate = LoadResource ( g_hinst , hResource ) ;
pTemplate = LockResource ( hTemplate ) ;
hDlg = CreateDialogIndirectParamA ( g_hinst , pTemplate , NULL , messageBoxFontDlgWinProc , 0 ) ;
ok ( hDlg ! = 0 , " Failed to create test dialog. \n " ) ;
2013-10-23 07:53:37 +02:00
foundId = GetWindowLongPtrA ( GetFocus ( ) , GWLP_ID ) ;
2009-08-14 00:36:49 +02:00
ok ( foundId = = 1000 , " First edit box should have gained focus on dialog creation. Expected: %d, Found: %ld \n " , 1000 , foundId ) ;
2015-02-04 15:05:07 +01:00
SetFocus ( GetNextDlgTabItem ( hDlg , GetFocus ( ) , FALSE ) ) ;
SendMessageA ( hDlg , WM_ACTIVATE , MAKEWPARAM ( WA_ACTIVE , 0 ) , 0 ) ;
foundId = GetWindowLongPtrA ( GetFocus ( ) , GWLP_ID ) ;
ok ( foundId = = 1001 , " First edit box should have regained focus after dialog reactivation. Expected: %d, Found: %ld \n " , 1001 , foundId ) ;
SetFocus ( GetNextDlgTabItem ( hDlg , NULL , FALSE ) ) ;
2009-08-14 00:36:49 +02:00
/* de- then reactivate the dialog */
2013-10-23 07:53:37 +02:00
SendMessageA ( hDlg , WM_ACTIVATE , MAKEWPARAM ( WA_INACTIVE , 0 ) , 0 ) ;
SendMessageA ( hDlg , WM_ACTIVATE , MAKEWPARAM ( WA_ACTIVE , 0 ) , 0 ) ;
2009-08-14 00:36:49 +02:00
2013-10-23 07:53:37 +02:00
foundId = GetWindowLongPtrA ( GetFocus ( ) , GWLP_ID ) ;
2009-08-14 00:36:49 +02:00
ok ( foundId = = 1000 , " First edit box should have regained focus after dialog reactivation. Expected: %d, Found: %ld \n " , 1000 , foundId ) ;
/* select the next tabbable item */
SetFocus ( GetNextDlgTabItem ( hDlg , GetFocus ( ) , FALSE ) ) ;
2013-10-23 07:53:37 +02:00
foundId = GetWindowLongPtrA ( GetFocus ( ) , GWLP_ID ) ;
2009-08-14 00:36:49 +02:00
ok ( foundId = = 1001 , " Second edit box should have gained focus. Expected: %d, Found: %ld \n " , 1001 , foundId ) ;
/* de- then reactivate the dialog */
2013-10-23 07:53:37 +02:00
SendMessageA ( hDlg , WM_ACTIVATE , MAKEWPARAM ( WA_INACTIVE , 0 ) , 0 ) ;
SendMessageA ( hDlg , WM_ACTIVATE , MAKEWPARAM ( WA_ACTIVE , 0 ) , 0 ) ;
2009-08-14 00:36:49 +02:00
2013-10-23 07:53:37 +02:00
foundId = GetWindowLongPtrA ( GetFocus ( ) , GWLP_ID ) ;
2009-08-14 00:36:49 +02:00
ok ( foundId = = 1001 , " Second edit box should have gained focus after dialog reactivation. Expected: %d, Found: %ld \n " , 1001 , foundId ) ;
2014-12-22 16:36:48 +01:00
/* set focus to the dialog */
SetFocus ( hDlg ) ;
foundId = GetWindowLongPtrA ( GetFocus ( ) , GWLP_ID ) ;
ok ( foundId = = 1000 , " First edit box should have gained focus on dialog focus. Expected: %d, Found: %ld \n " , 1000 , foundId ) ;
/* select second tabbable item */
SetFocus ( GetNextDlgTabItem ( hDlg , GetNextDlgTabItem ( hDlg , NULL , FALSE ) , FALSE ) ) ;
foundId = GetWindowLongPtrA ( GetFocus ( ) , GWLP_ID ) ;
ok ( foundId = = 1001 , " Second edit box should have gained focus. Expected: %d, Found: %ld \n " , 1001 , foundId ) ;
/* send WM_ACTIVATE message to already active dialog */
SendMessageA ( hDlg , WM_ACTIVATE , MAKEWPARAM ( WA_ACTIVE , 0 ) , 0 ) ;
foundId = GetWindowLongPtrA ( GetFocus ( ) , GWLP_ID ) ;
ok ( foundId = = 1001 , " Second edit box should have gained focus. Expected: %d, Found: %ld \n " , 1001 , foundId ) ;
2009-08-14 00:36:49 +02:00
/* disable the 2nd box */
EnableWindow ( GetFocus ( ) , FALSE ) ;
foundHwnd = GetFocus ( ) ;
ok ( foundHwnd = = NULL , " Second edit box should have lost focus after being disabled. Expected: %p, Found: %p \n " , NULL , foundHwnd ) ;
/* de- then reactivate the dialog */
2013-10-23 07:53:37 +02:00
SendMessageA ( hDlg , WM_ACTIVATE , MAKEWPARAM ( WA_INACTIVE , 0 ) , 0 ) ;
SendMessageA ( hDlg , WM_ACTIVATE , MAKEWPARAM ( WA_ACTIVE , 0 ) , 0 ) ;
2009-08-14 00:36:49 +02:00
foundHwnd = GetFocus ( ) ;
ok ( foundHwnd = = NULL , " No controls should have gained focus after dialog reactivation. Expected: %p, Found: %p \n " , NULL , foundHwnd ) ;
/* clean up */
DestroyWindow ( hDlg ) ;
}
2010-03-02 11:51:52 +01:00
static INT_PTR CALLBACK timer_message_dlg_proc ( HWND wnd , UINT msg , WPARAM wparam , LPARAM lparam )
{
static int count ;
BOOL visible ;
switch ( msg )
{
case WM_INITDIALOG :
2013-10-23 07:53:37 +02:00
visible = GetWindowLongA ( wnd , GWL_STYLE ) & WS_VISIBLE ;
2010-03-02 11:51:52 +01:00
ok ( ! visible , " Dialog should not be visible. \n " ) ;
SetTimer ( wnd , 1 , 100 , NULL ) ;
Sleep ( 200 ) ;
return FALSE ;
case WM_COMMAND :
if ( LOWORD ( wparam ) ! = IDCANCEL ) return FALSE ;
EndDialog ( wnd , LOWORD ( wparam ) ) ;
return TRUE ;
case WM_TIMER :
if ( wparam ! = 1 ) return FALSE ;
2013-10-23 07:53:37 +02:00
visible = GetWindowLongA ( wnd , GWL_STYLE ) & WS_VISIBLE ;
2010-03-02 11:51:52 +01:00
if ( ! count + + )
{
ok ( ! visible , " Dialog should not be visible. \n " ) ;
2013-10-23 07:53:37 +02:00
PostMessageA ( wnd , WM_USER , 0 , 0 ) ;
2010-03-02 11:51:52 +01:00
}
else
{
ok ( visible , " Dialog should be visible. \n " ) ;
2013-10-23 07:53:37 +02:00
PostMessageA ( wnd , WM_COMMAND , IDCANCEL , 0 ) ;
2010-03-02 11:51:52 +01:00
}
return TRUE ;
case WM_USER :
2013-10-23 07:53:37 +02:00
visible = GetWindowLongA ( wnd , GWL_STYLE ) & WS_VISIBLE ;
2010-03-02 11:51:52 +01:00
ok ( visible , " Dialog should be visible. \n " ) ;
return TRUE ;
default :
return FALSE ;
}
}
static void test_timer_message ( void )
{
DialogBoxA ( g_hinst , " RADIO_TEST_DIALOG " , NULL , timer_message_dlg_proc ) ;
}
2004-02-12 03:16:33 +01:00
START_TEST ( dialog )
{
g_hinst = GetModuleHandleA ( 0 ) ;
if ( ! RegisterWindowClasses ( ) ) assert ( 0 ) ;
2010-04-23 18:52:13 +02:00
test_GetNextDlgItem ( ) ;
test_IsDialogMessage ( ) ;
test_WM_NEXTDLGCTL ( ) ;
2012-08-07 01:13:15 +02:00
test_focus ( ) ;
2010-04-23 18:52:13 +02:00
test_GetDlgItem ( ) ;
2005-07-01 17:38:39 +02:00
test_GetDlgItemText ( ) ;
2007-02-14 21:32:35 +01:00
test_DialogBoxParamA ( ) ;
2007-10-25 09:36:54 +02:00
test_DisabledDialogTest ( ) ;
2009-03-21 00:23:39 +01:00
test_MessageBoxFontTest ( ) ;
2009-08-14 00:36:49 +02:00
test_SaveRestoreFocus ( ) ;
2010-03-02 11:51:52 +01:00
test_timer_message ( ) ;
2004-02-12 03:16:33 +01:00
}