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
ce40fde6
Commit
ce40fde6
authored
Aug 27, 2008
by
Adam Petaccia
Committed by
Alexandre Julliard
Aug 28, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Implement GdipGetFontStyle.
parent
69b6e0bd
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
5 deletions
+29
-5
font.c
dlls/gdiplus/font.c
+29
-2
font.c
dlls/gdiplus/tests/font.c
+0
-3
No files found.
dlls/gdiplus/font.c
View file @
ce40fde6
...
...
@@ -298,11 +298,38 @@ GpStatus WINGDIPAPI GdipGetFontSize(GpFont *font, REAL *size)
return
Ok
;
}
/*******************************************************************************
* GdipGetFontStyle [GDIPLUS.@]
*
* Gets the font's style, returned in bitwise OR of FontStyle enumeration
*
* PARAMS
* font [I] font to request from
* style [O] resulting pointer to a FontStyle enumeration
*
* RETURNS
* SUCCESS: Ok
* FAILURE: InvalidParameter
*/
GpStatus
WINGDIPAPI
GdipGetFontStyle
(
GpFont
*
font
,
INT
*
style
)
{
FIXME
(
"stub:
%p %p
\n
"
,
font
,
style
);
TRACE
(
"
%p %p
\n
"
,
font
,
style
);
return
NotImplemented
;
if
(
!
(
font
&&
style
))
return
InvalidParameter
;
if
(
font
->
lfw
.
lfWeight
>
400
)
*
style
=
FontStyleBold
;
else
*
style
=
0
;
if
(
font
->
lfw
.
lfItalic
)
*
style
|=
FontStyleItalic
;
if
(
font
->
lfw
.
lfUnderline
)
*
style
|=
FontStyleUnderline
;
if
(
font
->
lfw
.
lfStrikeOut
)
*
style
|=
FontStyleStrikeout
;
return
Ok
;
}
/*******************************************************************************
...
...
dlls/gdiplus/tests/font.c
View file @
ce40fde6
...
...
@@ -172,13 +172,10 @@ todo_wine {
expect
(
0
,
lfw2
.
lfQuality
);
expect
(
0
,
lfw2
.
lfPitchAndFamily
);
todo_wine
{
stat
=
GdipGetFontStyle
(
font
,
&
style
);
expect
(
Ok
,
stat
);
ok
(
style
==
(
FontStyleItalic
|
FontStyleUnderline
|
FontStyleStrikeout
),
"Expected , got %d
\n
"
,
style
);
}
GdipDeleteFont
(
font
);
...
...
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