Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
a70ed810
Commit
a70ed810
authored
Aug 12, 2021
by
Akihiro Sagawa
Committed by
Alexandre Julliard
Aug 12, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32/tests: Test pending redraw state with owner-drawn list box.
Signed-off-by:
Akihiro Sagawa
<
sagawa.aki@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
6a146625
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
50 additions
and
1 deletion
+50
-1
listbox.c
dlls/user32/tests/listbox.c
+50
-1
No files found.
dlls/user32/tests/listbox.c
View file @
a70ed810
...
...
@@ -238,7 +238,7 @@ static void check_item_height(void)
DestroyWindow
(
hLB
);
}
static
int
got_selchange
;
static
unsigned
int
got_selchange
,
got_drawitem
;
static
LRESULT
WINAPI
main_window_proc
(
HWND
hwnd
,
UINT
msg
,
WPARAM
wparam
,
LPARAM
lparam
)
{
...
...
@@ -293,6 +293,7 @@ static LRESULT WINAPI main_window_proc(HWND hwnd, UINT msg, WPARAM wparam, LPARA
trace
(
"item rect %s
\n
"
,
wine_dbgstr_rect
(
&
rc_item
));
ok
(
EqualRect
(
&
dis
->
rcItem
,
&
rc_item
),
"item rects are not equal
\n
"
);
got_drawitem
++
;
break
;
}
...
...
@@ -343,6 +344,19 @@ static void test_ownerdraw(void)
0
,
LBS_NODATA
};
static
const
struct
{
UINT
message
;
WPARAM
wparam
;
LPARAM
lparam
;
UINT
drawitem
;
}
testcase
[]
=
{
{
WM_NULL
,
0
,
0
,
0
},
{
WM_PAINT
,
0
,
0
,
0
},
{
LB_GETCOUNT
,
0
,
0
,
0
},
{
LB_SETCOUNT
,
ARRAY_SIZE
(
strings
),
0
,
ARRAY_SIZE
(
strings
)
},
{
LB_ADDSTRING
,
0
,
(
LPARAM
)
"foo"
,
ARRAY_SIZE
(
strings
)
+
1
},
{
LB_DELETESTRING
,
0
,
0
,
ARRAY_SIZE
(
strings
)
-
1
},
};
HWND
parent
,
hLB
;
INT
ret
;
RECT
rc
;
...
...
@@ -405,6 +419,41 @@ static void test_ownerdraw(void)
DestroyWindow
(
hLB
);
}
/* test pending redraw state */
for
(
i
=
0
;
i
<
ARRAY_SIZE
(
testcase
);
i
++
)
{
winetest_push_context
(
"%d"
,
i
);
hLB
=
create_listbox
(
LBS_OWNERDRAWFIXED
|
LBS_NODATA
|
WS_CHILD
|
WS_VISIBLE
,
parent
);
assert
(
hLB
);
ret
=
SendMessageA
(
hLB
,
WM_SETREDRAW
,
FALSE
,
0
);
ok
(
!
ret
,
"got %d
\n
"
,
ret
);
ret
=
SendMessageA
(
hLB
,
testcase
[
i
].
message
,
testcase
[
i
].
wparam
,
testcase
[
i
].
lparam
);
if
(
testcase
[
i
].
message
>=
LB_ADDSTRING
&&
testcase
[
i
].
message
<
LB_MSGMAX
&&
testcase
[
i
].
message
!=
LB_SETCOUNT
)
ok
(
ret
>
0
,
"expected > 0, got %d
\n
"
,
ret
);
else
ok
(
!
ret
,
"expected 0, got %d
\n
"
,
ret
);
got_drawitem
=
0
;
ret
=
RedrawWindow
(
hLB
,
NULL
,
0
,
RDW_UPDATENOW
);
ok
(
ret
,
"RedrawWindow failed
\n
"
);
ok
(
!
got_drawitem
,
"got %u
\n
"
,
got_drawitem
);
ret
=
SendMessageA
(
hLB
,
WM_SETREDRAW
,
TRUE
,
0
);
ok
(
!
ret
,
"got %d
\n
"
,
ret
);
got_drawitem
=
0
;
ret
=
RedrawWindow
(
hLB
,
NULL
,
0
,
RDW_UPDATENOW
);
ok
(
ret
,
"RedrawWindow failed
\n
"
);
todo_wine_if
(
testcase
[
i
].
message
==
LB_SETCOUNT
)
ok
(
got_drawitem
==
testcase
[
i
].
drawitem
,
"expected %u, got %u
\n
"
,
testcase
[
i
].
drawitem
,
got_drawitem
);
DestroyWindow
(
hLB
);
winetest_pop_context
();
}
DestroyWindow
(
parent
);
}
...
...
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