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
510ecb65
Commit
510ecb65
authored
Aug 14, 2007
by
Evan Stade
Committed by
Alexandre Julliard
Aug 15, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Added more font tests.
parent
a364fc32
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
0 deletions
+34
-0
font.c
dlls/gdiplus/tests/font.c
+34
-0
No files found.
dlls/gdiplus/tests/font.c
View file @
510ecb65
...
...
@@ -58,6 +58,40 @@ static void test_logfont(void)
expect
(
0
,
lfw2
.
lfQuality
);
expect
(
0
,
lfw2
.
lfPitchAndFamily
);
GdipDeleteFont
(
font
);
memset
(
&
lfw
,
0
,
sizeof
(
LOGFONTW
));
lfw
.
lfHeight
=
25
;
lfw
.
lfWidth
=
25
;
lfw
.
lfEscapement
=
lfw
.
lfOrientation
=
50
;
lfw
.
lfItalic
=
lfw
.
lfUnderline
=
lfw
.
lfStrikeOut
=
TRUE
;
memset
(
&
lfw2
,
0xff
,
sizeof
(
LOGFONTW
));
memcpy
(
&
lfw
.
lfFaceName
,
arial
,
6
*
sizeof
(
WCHAR
));
stat
=
GdipCreateFontFromLogfontW
(
hdc
,
&
lfw
,
&
font
);
expect
(
Ok
,
stat
);
stat
=
GdipGetLogFontW
(
font
,
graphics
,
&
lfw2
);
expect
(
Ok
,
stat
);
ok
(
lfw2
.
lfHeight
<
0
,
"Expected negative height
\n
"
);
expect
(
0
,
lfw2
.
lfWidth
);
expect
(
0
,
lfw2
.
lfEscapement
);
expect
(
0
,
lfw2
.
lfOrientation
);
ok
((
lfw2
.
lfWeight
>=
100
)
&&
(
lfw2
.
lfWeight
<=
900
),
"Expected weight to be set
\n
"
);
todo_wine
{
expect
(
TRUE
,
lfw2
.
lfItalic
);
expect
(
TRUE
,
lfw2
.
lfUnderline
);
expect
(
TRUE
,
lfw2
.
lfStrikeOut
);
}
expect
(
0
,
lfw2
.
lfCharSet
);
expect
(
0
,
lfw2
.
lfOutPrecision
);
expect
(
0
,
lfw2
.
lfClipPrecision
);
expect
(
0
,
lfw2
.
lfQuality
);
expect
(
0
,
lfw2
.
lfPitchAndFamily
);
GdipDeleteFont
(
font
);
GdipDeleteGraphics
(
graphics
);
ReleaseDC
(
0
,
hdc
);
}
...
...
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