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
537112fb
Commit
537112fb
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: Fixed conformance of font constructor.
parent
4202abab
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
5 deletions
+18
-5
font.c
dlls/gdiplus/font.c
+16
-1
font.c
dlls/gdiplus/tests/font.c
+2
-4
No files found.
dlls/gdiplus/font.c
View file @
537112fb
...
...
@@ -31,13 +31,28 @@
GpStatus
WINGDIPAPI
GdipCreateFontFromLogfontW
(
HDC
hdc
,
GDIPCONST
LOGFONTW
*
logfont
,
GpFont
**
font
)
{
HFONT
hfont
,
oldfont
;
TEXTMETRICW
textmet
;
if
(
!
logfont
||
!
font
)
return
InvalidParameter
;
*
font
=
GdipAlloc
(
sizeof
(
GpFont
));
if
(
!*
font
)
return
OutOfMemory
;
memcpy
(
&
(
*
font
)
->
lfw
,
logfont
,
sizeof
(
LOGFONTW
));
memcpy
(
&
(
*
font
)
->
lfw
.
lfFaceName
,
logfont
->
lfFaceName
,
LF_FACESIZE
*
sizeof
(
WCHAR
));
(
*
font
)
->
lfw
.
lfHeight
=
logfont
->
lfHeight
;
hfont
=
CreateFontIndirectW
(
&
(
*
font
)
->
lfw
);
oldfont
=
SelectObject
(
hdc
,
hfont
);
GetTextMetricsW
(
hdc
,
&
textmet
);
(
*
font
)
->
lfw
.
lfHeight
=
-
textmet
.
tmHeight
;
(
*
font
)
->
lfw
.
lfWeight
=
textmet
.
tmWeight
;
SelectObject
(
hdc
,
oldfont
);
DeleteObject
(
hfont
);
return
Ok
;
}
...
...
dlls/gdiplus/tests/font.c
View file @
537112fb
...
...
@@ -44,13 +44,11 @@ static void test_logfont(void)
stat
=
GdipGetLogFontW
(
font
,
graphics
,
&
lfw2
);
expect
(
Ok
,
stat
);
todo_wine
ok
(
lfw2
.
lfHeight
<
0
,
"Expected negative height
\n
"
);
ok
(
lfw2
.
lfHeight
<
0
,
"Expected negative height
\n
"
);
expect
(
0
,
lfw2
.
lfWidth
);
expect
(
0
,
lfw2
.
lfEscapement
);
expect
(
0
,
lfw2
.
lfOrientation
);
todo_wine
ok
((
lfw2
.
lfWeight
>=
100
)
&&
(
lfw2
.
lfWeight
<=
900
),
"Expected weight to be set
\n
"
);
ok
((
lfw2
.
lfWeight
>=
100
)
&&
(
lfw2
.
lfWeight
<=
900
),
"Expected weight to be set
\n
"
);
expect
(
0
,
lfw2
.
lfItalic
);
expect
(
0
,
lfw2
.
lfUnderline
);
expect
(
0
,
lfw2
.
lfStrikeOut
);
...
...
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