Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
12111d8c
Commit
12111d8c
authored
Oct 26, 2015
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Oct 26, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32/tests: Add some tests for WM_MDIGETACTIVE.
Signed-off-by:
Dmitry Timoshkov
<
dmitry@baikal.ru
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
2e8166ec
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
47 additions
and
1 deletion
+47
-1
win.c
dlls/user32/tests/win.c
+47
-1
No files found.
dlls/user32/tests/win.c
View file @
12111d8c
...
@@ -1290,7 +1290,7 @@ static char mdi_lParam_test_message[] = "just a test string";
...
@@ -1290,7 +1290,7 @@ static char mdi_lParam_test_message[] = "just a test string";
static
void
test_MDI_create
(
HWND
parent
,
HWND
mdi_client
,
INT_PTR
first_id
)
static
void
test_MDI_create
(
HWND
parent
,
HWND
mdi_client
,
INT_PTR
first_id
)
{
{
MDICREATESTRUCTA
mdi_cs
;
MDICREATESTRUCTA
mdi_cs
;
HWND
mdi_child
;
HWND
mdi_child
,
hwnd
,
exp_hwnd
;
INT_PTR
id
;
INT_PTR
id
;
static
const
WCHAR
classW
[]
=
{
'M'
,
'D'
,
'I'
,
'_'
,
'c'
,
'h'
,
'i'
,
'l'
,
'd'
,
'_'
,
'C'
,
'l'
,
'a'
,
's'
,
's'
,
'_'
,
'1'
,
0
};
static
const
WCHAR
classW
[]
=
{
'M'
,
'D'
,
'I'
,
'_'
,
'c'
,
'h'
,
'i'
,
'l'
,
'd'
,
'_'
,
'C'
,
'l'
,
'a'
,
's'
,
's'
,
'_'
,
'1'
,
0
};
static
const
WCHAR
titleW
[]
=
{
'M'
,
'D'
,
'I'
,
' '
,
'c'
,
'h'
,
'i'
,
'l'
,
'd'
,
0
};
static
const
WCHAR
titleW
[]
=
{
'M'
,
'D'
,
'I'
,
' '
,
'c'
,
'h'
,
'i'
,
'l'
,
'd'
,
0
};
...
@@ -1309,6 +1309,9 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
...
@@ -1309,6 +1309,9 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
ok
(
mdi_child
!=
0
,
"MDI child creation failed
\n
"
);
ok
(
mdi_child
!=
0
,
"MDI child creation failed
\n
"
);
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
ok
(
id
==
first_id
,
"wrong child id %ld
\n
"
,
id
);
ok
(
id
==
first_id
,
"wrong child id %ld
\n
"
,
id
);
hwnd
=
(
HWND
)
SendMessageA
(
mdi_client
,
WM_MDIGETACTIVE
,
0
,
0
);
exp_hwnd
=
(
GetWindowLongW
(
mdi_child
,
GWL_STYLE
)
&
WS_VISIBLE
)
?
mdi_child
:
0
;
ok
(
hwnd
==
exp_hwnd
,
"WM_MDIGETACTIVE should return %p, got %p
\n
"
,
exp_hwnd
,
hwnd
);
SendMessageA
(
mdi_client
,
WM_MDIDESTROY
,
(
WPARAM
)
mdi_child
,
0
);
SendMessageA
(
mdi_client
,
WM_MDIDESTROY
,
(
WPARAM
)
mdi_child
,
0
);
ok
(
!
IsWindow
(
mdi_child
),
"WM_MDIDESTROY failed
\n
"
);
ok
(
!
IsWindow
(
mdi_child
),
"WM_MDIDESTROY failed
\n
"
);
...
@@ -1317,6 +1320,9 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
...
@@ -1317,6 +1320,9 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
ok
(
mdi_child
!=
0
,
"MDI child creation failed
\n
"
);
ok
(
mdi_child
!=
0
,
"MDI child creation failed
\n
"
);
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
ok
(
id
==
first_id
,
"wrong child id %ld
\n
"
,
id
);
ok
(
id
==
first_id
,
"wrong child id %ld
\n
"
,
id
);
hwnd
=
(
HWND
)
SendMessageA
(
mdi_client
,
WM_MDIGETACTIVE
,
0
,
0
);
todo_wine
ok
(
!
hwnd
,
"WM_MDIGETACTIVE should return 0, got %p
\n
"
,
hwnd
);
SendMessageA
(
mdi_client
,
WM_MDIDESTROY
,
(
WPARAM
)
mdi_child
,
0
);
SendMessageA
(
mdi_client
,
WM_MDIDESTROY
,
(
WPARAM
)
mdi_child
,
0
);
ok
(
!
IsWindow
(
mdi_child
),
"WM_MDIDESTROY failed
\n
"
);
ok
(
!
IsWindow
(
mdi_child
),
"WM_MDIDESTROY failed
\n
"
);
...
@@ -1331,6 +1337,9 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
...
@@ -1331,6 +1337,9 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
ok
(
mdi_child
!=
0
,
"MDI child creation failed
\n
"
);
ok
(
mdi_child
!=
0
,
"MDI child creation failed
\n
"
);
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
ok
(
id
==
first_id
,
"wrong child id %ld
\n
"
,
id
);
ok
(
id
==
first_id
,
"wrong child id %ld
\n
"
,
id
);
hwnd
=
(
HWND
)
SendMessageA
(
mdi_client
,
WM_MDIGETACTIVE
,
0
,
0
);
todo_wine
ok
(
!
hwnd
,
"WM_MDIGETACTIVE should return 0, got %p
\n
"
,
hwnd
);
SendMessageA
(
mdi_client
,
WM_MDIDESTROY
,
(
WPARAM
)
mdi_child
,
0
);
SendMessageA
(
mdi_client
,
WM_MDIDESTROY
,
(
WPARAM
)
mdi_child
,
0
);
ok
(
!
IsWindow
(
mdi_child
),
"WM_MDIDESTROY failed
\n
"
);
ok
(
!
IsWindow
(
mdi_child
),
"WM_MDIDESTROY failed
\n
"
);
}
}
...
@@ -1353,6 +1362,9 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
...
@@ -1353,6 +1362,9 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
{
{
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
ok
(
id
==
first_id
,
"wrong child id %ld
\n
"
,
id
);
ok
(
id
==
first_id
,
"wrong child id %ld
\n
"
,
id
);
hwnd
=
(
HWND
)
SendMessageA
(
mdi_client
,
WM_MDIGETACTIVE
,
0
,
0
);
exp_hwnd
=
(
GetWindowLongW
(
mdi_child
,
GWL_STYLE
)
&
WS_VISIBLE
)
?
mdi_child
:
0
;
ok
(
hwnd
==
exp_hwnd
,
"WM_MDIGETACTIVE should return %p, got %p
\n
"
,
exp_hwnd
,
hwnd
);
SendMessageA
(
mdi_client
,
WM_MDIDESTROY
,
(
WPARAM
)
mdi_child
,
0
);
SendMessageA
(
mdi_client
,
WM_MDIDESTROY
,
(
WPARAM
)
mdi_child
,
0
);
ok
(
!
IsWindow
(
mdi_child
),
"WM_MDIDESTROY failed
\n
"
);
ok
(
!
IsWindow
(
mdi_child
),
"WM_MDIDESTROY failed
\n
"
);
}
}
...
@@ -1366,6 +1378,9 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
...
@@ -1366,6 +1378,9 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
ok
(
mdi_child
!=
0
,
"MDI child creation failed
\n
"
);
ok
(
mdi_child
!=
0
,
"MDI child creation failed
\n
"
);
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
ok
(
id
==
first_id
,
"wrong child id %ld
\n
"
,
id
);
ok
(
id
==
first_id
,
"wrong child id %ld
\n
"
,
id
);
hwnd
=
(
HWND
)
SendMessageA
(
mdi_client
,
WM_MDIGETACTIVE
,
0
,
0
);
exp_hwnd
=
(
GetWindowLongW
(
mdi_child
,
GWL_STYLE
)
&
WS_VISIBLE
)
?
mdi_child
:
0
;
ok
(
hwnd
==
exp_hwnd
,
"WM_MDIGETACTIVE should return %p, got %p
\n
"
,
exp_hwnd
,
hwnd
);
SendMessageA
(
mdi_client
,
WM_MDIDESTROY
,
(
WPARAM
)
mdi_child
,
0
);
SendMessageA
(
mdi_client
,
WM_MDIDESTROY
,
(
WPARAM
)
mdi_child
,
0
);
ok
(
!
IsWindow
(
mdi_child
),
"WM_MDIDESTROY failed
\n
"
);
ok
(
!
IsWindow
(
mdi_child
),
"WM_MDIDESTROY failed
\n
"
);
...
@@ -1378,6 +1393,9 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
...
@@ -1378,6 +1393,9 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
ok
(
mdi_child
!=
0
,
"MDI child creation failed
\n
"
);
ok
(
mdi_child
!=
0
,
"MDI child creation failed
\n
"
);
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
ok
(
id
==
first_id
,
"wrong child id %ld
\n
"
,
id
);
ok
(
id
==
first_id
,
"wrong child id %ld
\n
"
,
id
);
hwnd
=
(
HWND
)
SendMessageA
(
mdi_client
,
WM_MDIGETACTIVE
,
0
,
0
);
todo_wine
ok
(
!
hwnd
,
"WM_MDIGETACTIVE should return 0, got %p
\n
"
,
hwnd
);
SendMessageA
(
mdi_client
,
WM_MDIDESTROY
,
(
WPARAM
)
mdi_child
,
0
);
SendMessageA
(
mdi_client
,
WM_MDIDESTROY
,
(
WPARAM
)
mdi_child
,
0
);
ok
(
!
IsWindow
(
mdi_child
),
"WM_MDIDESTROY failed
\n
"
);
ok
(
!
IsWindow
(
mdi_child
),
"WM_MDIDESTROY failed
\n
"
);
...
@@ -1396,6 +1414,9 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
...
@@ -1396,6 +1414,9 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
ok
(
mdi_child
!=
0
,
"MDI child creation failed
\n
"
);
ok
(
mdi_child
!=
0
,
"MDI child creation failed
\n
"
);
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
ok
(
id
==
first_id
,
"wrong child id %ld
\n
"
,
id
);
ok
(
id
==
first_id
,
"wrong child id %ld
\n
"
,
id
);
hwnd
=
(
HWND
)
SendMessageA
(
mdi_client
,
WM_MDIGETACTIVE
,
0
,
0
);
todo_wine
ok
(
!
hwnd
,
"WM_MDIGETACTIVE should return 0, got %p
\n
"
,
hwnd
);
SendMessageA
(
mdi_client
,
WM_MDIDESTROY
,
(
WPARAM
)
mdi_child
,
0
);
SendMessageA
(
mdi_client
,
WM_MDIDESTROY
,
(
WPARAM
)
mdi_child
,
0
);
ok
(
!
IsWindow
(
mdi_child
),
"WM_MDIDESTROY failed
\n
"
);
ok
(
!
IsWindow
(
mdi_child
),
"WM_MDIDESTROY failed
\n
"
);
}
}
...
@@ -1419,6 +1440,9 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
...
@@ -1419,6 +1440,9 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
{
{
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
ok
(
id
==
first_id
,
"wrong child id %ld
\n
"
,
id
);
ok
(
id
==
first_id
,
"wrong child id %ld
\n
"
,
id
);
hwnd
=
(
HWND
)
SendMessageA
(
mdi_client
,
WM_MDIGETACTIVE
,
0
,
0
);
exp_hwnd
=
(
GetWindowLongW
(
mdi_child
,
GWL_STYLE
)
&
WS_VISIBLE
)
?
mdi_child
:
0
;
ok
(
hwnd
==
exp_hwnd
,
"WM_MDIGETACTIVE should return %p, got %p
\n
"
,
exp_hwnd
,
hwnd
);
SendMessageA
(
mdi_client
,
WM_MDIDESTROY
,
(
WPARAM
)
mdi_child
,
0
);
SendMessageA
(
mdi_client
,
WM_MDIDESTROY
,
(
WPARAM
)
mdi_child
,
0
);
ok
(
!
IsWindow
(
mdi_child
),
"WM_MDIDESTROY failed
\n
"
);
ok
(
!
IsWindow
(
mdi_child
),
"WM_MDIDESTROY failed
\n
"
);
}
}
...
@@ -1432,6 +1456,9 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
...
@@ -1432,6 +1456,9 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
ok
(
mdi_child
!=
0
,
"MDI child creation failed
\n
"
);
ok
(
mdi_child
!=
0
,
"MDI child creation failed
\n
"
);
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
ok
(
id
==
first_id
,
"wrong child id %ld
\n
"
,
id
);
ok
(
id
==
first_id
,
"wrong child id %ld
\n
"
,
id
);
hwnd
=
(
HWND
)
SendMessageA
(
mdi_client
,
WM_MDIGETACTIVE
,
0
,
0
);
exp_hwnd
=
(
GetWindowLongW
(
mdi_child
,
GWL_STYLE
)
&
WS_VISIBLE
)
?
mdi_child
:
0
;
ok
(
hwnd
==
exp_hwnd
,
"WM_MDIGETACTIVE should return %p, got %p
\n
"
,
exp_hwnd
,
hwnd
);
SendMessageA
(
mdi_client
,
WM_MDIDESTROY
,
(
WPARAM
)
mdi_child
,
0
);
SendMessageA
(
mdi_client
,
WM_MDIDESTROY
,
(
WPARAM
)
mdi_child
,
0
);
ok
(
!
IsWindow
(
mdi_child
),
"WM_MDIDESTROY failed
\n
"
);
ok
(
!
IsWindow
(
mdi_child
),
"WM_MDIDESTROY failed
\n
"
);
...
@@ -1444,6 +1471,9 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
...
@@ -1444,6 +1471,9 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
ok
(
mdi_child
!=
0
,
"MDI child creation failed
\n
"
);
ok
(
mdi_child
!=
0
,
"MDI child creation failed
\n
"
);
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
ok
(
id
==
first_id
,
"wrong child id %ld
\n
"
,
id
);
ok
(
id
==
first_id
,
"wrong child id %ld
\n
"
,
id
);
hwnd
=
(
HWND
)
SendMessageA
(
mdi_client
,
WM_MDIGETACTIVE
,
0
,
0
);
todo_wine
ok
(
!
hwnd
,
"WM_MDIGETACTIVE should return 0, got %p
\n
"
,
hwnd
);
SendMessageA
(
mdi_client
,
WM_MDIDESTROY
,
(
WPARAM
)
mdi_child
,
0
);
SendMessageA
(
mdi_client
,
WM_MDIDESTROY
,
(
WPARAM
)
mdi_child
,
0
);
ok
(
!
IsWindow
(
mdi_child
),
"WM_MDIDESTROY failed
\n
"
);
ok
(
!
IsWindow
(
mdi_child
),
"WM_MDIDESTROY failed
\n
"
);
...
@@ -1462,6 +1492,9 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
...
@@ -1462,6 +1492,9 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
ok
(
mdi_child
!=
0
,
"MDI child creation failed
\n
"
);
ok
(
mdi_child
!=
0
,
"MDI child creation failed
\n
"
);
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
ok
(
id
==
first_id
,
"wrong child id %ld
\n
"
,
id
);
ok
(
id
==
first_id
,
"wrong child id %ld
\n
"
,
id
);
hwnd
=
(
HWND
)
SendMessageA
(
mdi_client
,
WM_MDIGETACTIVE
,
0
,
0
);
todo_wine
ok
(
!
hwnd
,
"WM_MDIGETACTIVE should return 0, got %p
\n
"
,
hwnd
);
SendMessageA
(
mdi_client
,
WM_MDIDESTROY
,
(
WPARAM
)
mdi_child
,
0
);
SendMessageA
(
mdi_client
,
WM_MDIDESTROY
,
(
WPARAM
)
mdi_child
,
0
);
ok
(
!
IsWindow
(
mdi_child
),
"WM_MDIDESTROY failed
\n
"
);
ok
(
!
IsWindow
(
mdi_child
),
"WM_MDIDESTROY failed
\n
"
);
}
}
...
@@ -1485,6 +1518,9 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
...
@@ -1485,6 +1518,9 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
{
{
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
ok
(
id
==
first_id
,
"wrong child id %ld
\n
"
,
id
);
ok
(
id
==
first_id
,
"wrong child id %ld
\n
"
,
id
);
hwnd
=
(
HWND
)
SendMessageA
(
mdi_client
,
WM_MDIGETACTIVE
,
0
,
0
);
exp_hwnd
=
(
GetWindowLongW
(
mdi_child
,
GWL_STYLE
)
&
WS_VISIBLE
)
?
mdi_child
:
0
;
ok
(
hwnd
==
exp_hwnd
,
"WM_MDIGETACTIVE should return %p, got %p
\n
"
,
exp_hwnd
,
hwnd
);
SendMessageA
(
mdi_client
,
WM_MDIDESTROY
,
(
WPARAM
)
mdi_child
,
0
);
SendMessageA
(
mdi_client
,
WM_MDIDESTROY
,
(
WPARAM
)
mdi_child
,
0
);
ok
(
!
IsWindow
(
mdi_child
),
"WM_MDIDESTROY failed
\n
"
);
ok
(
!
IsWindow
(
mdi_child
),
"WM_MDIDESTROY failed
\n
"
);
}
}
...
@@ -1510,6 +1546,8 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
...
@@ -1510,6 +1546,8 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
ok
(
mdi_child
!=
0
,
"MDI child creation failed
\n
"
);
ok
(
mdi_child
!=
0
,
"MDI child creation failed
\n
"
);
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
ok
(
id
==
0
,
"wrong child id %ld
\n
"
,
id
);
ok
(
id
==
0
,
"wrong child id %ld
\n
"
,
id
);
hwnd
=
(
HWND
)
SendMessageA
(
mdi_client
,
WM_MDIGETACTIVE
,
0
,
0
);
ok
(
!
hwnd
,
"WM_MDIGETACTIVE should return 0, got %p
\n
"
,
hwnd
);
DestroyWindow
(
mdi_child
);
DestroyWindow
(
mdi_child
);
mdi_child
=
CreateWindowExA
(
0
,
"MDI_child_Class_2"
,
"MDI child"
,
mdi_child
=
CreateWindowExA
(
0
,
"MDI_child_Class_2"
,
"MDI child"
,
...
@@ -1521,6 +1559,8 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
...
@@ -1521,6 +1559,8 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
ok
(
mdi_child
!=
0
,
"MDI child creation failed
\n
"
);
ok
(
mdi_child
!=
0
,
"MDI child creation failed
\n
"
);
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
ok
(
id
==
0
,
"wrong child id %ld
\n
"
,
id
);
ok
(
id
==
0
,
"wrong child id %ld
\n
"
,
id
);
hwnd
=
(
HWND
)
SendMessageA
(
mdi_client
,
WM_MDIGETACTIVE
,
0
,
0
);
ok
(
!
hwnd
,
"WM_MDIGETACTIVE should return 0, got %p
\n
"
,
hwnd
);
DestroyWindow
(
mdi_child
);
DestroyWindow
(
mdi_child
);
/* maximized child */
/* maximized child */
...
@@ -1533,6 +1573,8 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
...
@@ -1533,6 +1573,8 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
ok
(
mdi_child
!=
0
,
"MDI child creation failed
\n
"
);
ok
(
mdi_child
!=
0
,
"MDI child creation failed
\n
"
);
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
ok
(
id
==
0
,
"wrong child id %ld
\n
"
,
id
);
ok
(
id
==
0
,
"wrong child id %ld
\n
"
,
id
);
hwnd
=
(
HWND
)
SendMessageA
(
mdi_client
,
WM_MDIGETACTIVE
,
0
,
0
);
ok
(
!
hwnd
,
"WM_MDIGETACTIVE should return 0, got %p
\n
"
,
hwnd
);
DestroyWindow
(
mdi_child
);
DestroyWindow
(
mdi_child
);
trace
(
"Creating maximized child with a caption
\n
"
);
trace
(
"Creating maximized child with a caption
\n
"
);
...
@@ -1545,6 +1587,8 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
...
@@ -1545,6 +1587,8 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
ok
(
mdi_child
!=
0
,
"MDI child creation failed
\n
"
);
ok
(
mdi_child
!=
0
,
"MDI child creation failed
\n
"
);
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
ok
(
id
==
0
,
"wrong child id %ld
\n
"
,
id
);
ok
(
id
==
0
,
"wrong child id %ld
\n
"
,
id
);
hwnd
=
(
HWND
)
SendMessageA
(
mdi_client
,
WM_MDIGETACTIVE
,
0
,
0
);
ok
(
!
hwnd
,
"WM_MDIGETACTIVE should return 0, got %p
\n
"
,
hwnd
);
DestroyWindow
(
mdi_child
);
DestroyWindow
(
mdi_child
);
trace
(
"Creating maximized child with a caption and a thick frame
\n
"
);
trace
(
"Creating maximized child with a caption and a thick frame
\n
"
);
...
@@ -1557,6 +1601,8 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
...
@@ -1557,6 +1601,8 @@ static void test_MDI_create(HWND parent, HWND mdi_client, INT_PTR first_id)
ok
(
mdi_child
!=
0
,
"MDI child creation failed
\n
"
);
ok
(
mdi_child
!=
0
,
"MDI child creation failed
\n
"
);
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
id
=
GetWindowLongPtrA
(
mdi_child
,
GWLP_ID
);
ok
(
id
==
0
,
"wrong child id %ld
\n
"
,
id
);
ok
(
id
==
0
,
"wrong child id %ld
\n
"
,
id
);
hwnd
=
(
HWND
)
SendMessageA
(
mdi_client
,
WM_MDIGETACTIVE
,
0
,
0
);
ok
(
!
hwnd
,
"WM_MDIGETACTIVE should return 0, got %p
\n
"
,
hwnd
);
DestroyWindow
(
mdi_child
);
DestroyWindow
(
mdi_child
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment