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
2c4f5c0e
Commit
2c4f5c0e
authored
Feb 10, 2020
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Feb 11, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/tests: Add more tests for Static/SS_BITMAP control.
Signed-off-by:
Dmitry Timoshkov
<
dmitry@baikal.ru
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e2f179d8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
51 additions
and
7 deletions
+51
-7
static.c
dlls/comctl32/tests/static.c
+51
-7
No files found.
dlls/comctl32/tests/static.c
View file @
2c4f5c0e
...
...
@@ -134,7 +134,20 @@ static void test_set_text(void)
DestroyWindow
(
hStatic
);
}
static
void
test_image
(
HBITMAP
image
,
BOOL
is_dib
,
BOOL
is_premult
)
static
void
remove_alpha
(
HBITMAP
hbitmap
)
{
BITMAP
bm
;
BYTE
*
ptr
;
int
i
;
GetObjectW
(
hbitmap
,
sizeof
(
bm
),
&
bm
);
ok
(
bm
.
bmBits
!=
NULL
,
"bmBits is NULL
\n
"
);
for
(
i
=
0
,
ptr
=
bm
.
bmBits
;
i
<
bm
.
bmWidth
*
bm
.
bmHeight
;
i
++
,
ptr
+=
4
)
ptr
[
3
]
=
0
;
}
static
void
test_image
(
HBITMAP
image
,
BOOL
is_dib
,
BOOL
is_premult
,
BOOL
is_alpha
)
{
BITMAP
bm
;
HDC
hdc
;
...
...
@@ -153,9 +166,12 @@ static void test_image(HBITMAP image, BOOL is_dib, BOOL is_premult)
todo_wine
ok
(
bits
[
0
]
==
0x05
&&
bits
[
1
]
==
0x09
&&
bits
[
2
]
==
0x0e
&&
bits
[
3
]
==
0x44
,
"bits: %02x %02x %02x %02x
\n
"
,
bits
[
0
],
bits
[
1
],
bits
[
2
],
bits
[
3
]);
else
else
if
(
is_alpha
)
ok
(
bits
[
0
]
==
0x11
&&
bits
[
1
]
==
0x22
&&
bits
[
2
]
==
0x33
&&
bits
[
3
]
==
0x44
,
"bits: %02x %02x %02x %02x
\n
"
,
bits
[
0
],
bits
[
1
],
bits
[
2
],
bits
[
3
]);
else
ok
(
bits
[
0
]
==
0x11
&&
bits
[
1
]
==
0x22
&&
bits
[
2
]
==
0x33
&&
bits
[
3
]
==
0
,
"bits: %02x %02x %02x %02x
\n
"
,
bits
[
0
],
bits
[
1
],
bits
[
2
],
bits
[
3
]);
}
else
ok
(
bm
.
bmBits
==
NULL
,
"bmBits is not NULL
\n
"
);
...
...
@@ -180,9 +196,12 @@ todo_wine
todo_wine
ok
(
bits
[
0
]
==
0x05
&&
bits
[
1
]
==
0x09
&&
bits
[
2
]
==
0x0e
&&
bits
[
3
]
==
0x44
,
"bits: %02x %02x %02x %02x
\n
"
,
bits
[
0
],
bits
[
1
],
bits
[
2
],
bits
[
3
]);
else
else
if
(
is_alpha
)
ok
(
bits
[
0
]
==
0x11
&&
bits
[
1
]
==
0x22
&&
bits
[
2
]
==
0x33
&&
bits
[
3
]
==
0x44
,
"bits: %02x %02x %02x %02x
\n
"
,
bits
[
0
],
bits
[
1
],
bits
[
2
],
bits
[
3
]);
else
ok
(
bits
[
0
]
==
0x11
&&
bits
[
1
]
==
0x22
&&
bits
[
2
]
==
0x33
&&
bits
[
3
]
==
0
,
"bits: %02x %02x %02x %02x
\n
"
,
bits
[
0
],
bits
[
1
],
bits
[
2
],
bits
[
3
]);
}
static
void
test_set_image
(
void
)
...
...
@@ -193,7 +212,7 @@ static void test_set_image(void)
image
=
LoadImageW
(
GetModuleHandleW
(
NULL
),
MAKEINTRESOURCEW
(
IDB_BITMAP_1x1_32BPP
),
IMAGE_BITMAP
,
0
,
0
,
0
);
ok
(
image
!=
NULL
,
"LoadImage failed
\n
"
);
test_image
(
image
,
FALSE
,
FALSE
);
test_image
(
image
,
FALSE
,
FALSE
,
TRUE
);
bmp1
=
(
HBITMAP
)
SendMessageW
(
hwnd
,
STM_GETIMAGE
,
IMAGE_BITMAP
,
0
);
ok
(
bmp1
==
NULL
,
"got not NULL
\n
"
);
...
...
@@ -204,17 +223,42 @@ static void test_set_image(void)
bmp1
=
(
HBITMAP
)
SendMessageW
(
hwnd
,
STM_GETIMAGE
,
IMAGE_BITMAP
,
0
);
ok
(
bmp1
!=
NULL
,
"got NULL
\n
"
);
ok
(
bmp1
!=
image
,
"bmp == image
\n
"
);
test_image
(
bmp1
,
TRUE
,
TRUE
);
test_image
(
bmp1
,
TRUE
,
TRUE
,
TRUE
);
bmp2
=
(
HBITMAP
)
SendMessageW
(
hwnd
,
STM_SETIMAGE
,
IMAGE_BITMAP
,
(
LPARAM
)
image
);
ok
(
bmp2
!=
NULL
,
"got NULL
\n
"
);
ok
(
bmp2
!=
image
,
"bmp == image
\n
"
);
ok
(
bmp1
==
bmp2
,
"bmp1 != bmp2
\n
"
);
test_image
(
bmp2
,
TRUE
,
TRUE
);
test_image
(
bmp2
,
TRUE
,
TRUE
,
TRUE
);
DeleteObject
(
image
);
image
=
LoadImageW
(
GetModuleHandleW
(
NULL
),
MAKEINTRESOURCEW
(
IDB_BITMAP_1x1_32BPP
),
IMAGE_BITMAP
,
0
,
0
,
LR_CREATEDIBSECTION
);
ok
(
image
!=
NULL
,
"LoadImage failed
\n
"
);
test_image
(
image
,
TRUE
,
FALSE
,
TRUE
);
remove_alpha
(
image
);
test_image
(
image
,
TRUE
,
FALSE
,
FALSE
);
bmp1
=
(
HBITMAP
)
SendMessageW
(
hwnd
,
STM_GETIMAGE
,
IMAGE_BITMAP
,
0
);
ok
(
bmp1
!=
NULL
,
"got NULL
\n
"
);
ok
(
bmp1
!=
image
,
"bmp == image
\n
"
);
test_image
(
bmp1
,
TRUE
,
TRUE
,
TRUE
);
bmp2
=
(
HBITMAP
)
SendMessageW
(
hwnd
,
STM_SETIMAGE
,
IMAGE_BITMAP
,
(
LPARAM
)
image
);
ok
(
bmp2
!=
NULL
,
"got NULL
\n
"
);
ok
(
bmp2
!=
image
,
"bmp == image
\n
"
);
ok
(
bmp1
==
bmp2
,
"bmp1 != bmp2
\n
"
);
test_image
(
bmp1
,
TRUE
,
TRUE
,
FALSE
);
bmp2
=
(
HBITMAP
)
SendMessageW
(
hwnd
,
STM_SETIMAGE
,
IMAGE_BITMAP
,
(
LPARAM
)
image
);
ok
(
bmp2
!=
NULL
,
"got NULL
\n
"
);
ok
(
bmp2
==
image
,
"bmp1 != image
\n
"
);
test_image
(
bmp2
,
TRUE
,
FALSE
,
FALSE
);
DestroyWindow
(
hwnd
);
test_image
(
bmp2
,
TRUE
,
TRU
E
);
test_image
(
image
,
TRUE
,
FALSE
,
FALS
E
);
DeleteObject
(
image
);
}
...
...
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