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
ff12594a
Commit
ff12594a
authored
Dec 30, 2009
by
Nikolay Sivov
Committed by
Alexandre Julliard
Dec 30, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32/uitools: Fix FillRect behaviour for invalid brush passed.
parent
385b8dcb
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
73 additions
and
3 deletions
+73
-3
Makefile.in
dlls/user32/tests/Makefile.in
+1
-0
uitools.c
dlls/user32/tests/uitools.c
+69
-0
uitools.c
dlls/user32/uitools.c
+3
-3
No files found.
dlls/user32/tests/Makefile.in
View file @
ff12594a
...
...
@@ -26,6 +26,7 @@ CTESTS = \
static.c
\
sysparams.c
\
text.c
\
uitools.c
\
win.c
\
winstation.c
\
wsprintf.c
...
...
dlls/user32/tests/uitools.c
0 → 100644
View file @
ff12594a
/* Unit test suite for user interface functions
*
* Copyright 2009 Nikolay Sivov
*
* 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
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wine/test.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
static
void
test_FillRect
(
void
)
{
HDC
hdc
,
hdcmem
;
DWORD
bits
[
64
];
HBITMAP
hbmp
,
oldhbmp
;
COLORREF
col
;
HBRUSH
old_brush
;
RECT
r
;
/* fill bitmap data with white */
memset
(
bits
,
0xff
,
sizeof
(
bits
));
hdc
=
GetDC
(
0
);
ok
(
hdc
!=
NULL
,
"CreateDC rets %p
\n
"
,
hdc
);
/* create a memory dc */
hdcmem
=
CreateCompatibleDC
(
hdc
);
ok
(
hdcmem
!=
NULL
,
"CreateCompatibleDC rets %p
\n
"
,
hdcmem
);
/* test monochrome bitmap: should always work */
hbmp
=
CreateBitmap
(
32
,
32
,
1
,
1
,
bits
);
ok
(
hbmp
!=
NULL
,
"CreateBitmap returns %p
\n
"
,
hbmp
);
oldhbmp
=
SelectObject
(
hdcmem
,
hbmp
);
ok
(
oldhbmp
!=
NULL
,
"SelectObject returned NULL
\n
"
);
/* a memdc always has a bitmap selected */
col
=
GetPixel
(
hdcmem
,
0
,
0
);
ok
(
col
==
0xffffff
,
"GetPixel returned %08x, expected 0xffffff
\n
"
,
col
);
/* select black brush */
old_brush
=
SelectObject
(
hdcmem
,
GetStockObject
(
BLACK_BRUSH
));
r
.
left
=
r
.
top
=
0
;
r
.
right
=
r
.
bottom
=
5
;
FillRect
(
hdcmem
,
&
r
,
0
);
SelectObject
(
hdcmem
,
old_brush
);
/* bitmap filled with last selected brush */
col
=
GetPixel
(
hdcmem
,
0
,
0
);
ok
(
col
==
0
,
"GetPixel returned %08x, expected 0
\n
"
,
col
);
SelectObject
(
hdcmem
,
oldhbmp
);
DeleteObject
(
hbmp
);
DeleteDC
(
hdcmem
);
ReleaseDC
(
0
,
hdc
);
}
START_TEST
(
uitools
)
{
test_FillRect
();
}
dlls/user32/uitools.c
View file @
ff12594a
...
...
@@ -1425,14 +1425,14 @@ BOOL WINAPI SubtractRect( LPRECT dest, const RECT *src1, const RECT *src2 )
*/
INT
WINAPI
FillRect
(
HDC
hdc
,
const
RECT
*
rect
,
HBRUSH
hbrush
)
{
HBRUSH
prev
B
rush
;
HBRUSH
prev
_b
rush
;
if
(
hbrush
<=
(
HBRUSH
)
(
COLOR_MAX
+
1
))
hbrush
=
GetSysColorBrush
(
HandleToULong
(
hbrush
)
-
1
);
if
(
!
(
prevBrush
=
SelectObject
(
hdc
,
hbrush
)))
return
0
;
prev_brush
=
SelectObject
(
hdc
,
hbrush
)
;
PatBlt
(
hdc
,
rect
->
left
,
rect
->
top
,
rect
->
right
-
rect
->
left
,
rect
->
bottom
-
rect
->
top
,
PATCOPY
);
SelectObject
(
hdc
,
prevB
rush
);
if
(
prev_brush
)
SelectObject
(
hdc
,
prev_b
rush
);
return
1
;
}
...
...
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