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
413fc34b
Commit
413fc34b
authored
May 18, 2023
by
Bartosz Kosiorek
Committed by
Alexandre Julliard
May 22, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Fix GdipGetGenericFontFamily functions according to native gdiplus.dll.
parent
e2458a88
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
8 deletions
+18
-8
font.c
dlls/gdiplus/font.c
+18
-8
No files found.
dlls/gdiplus/font.c
View file @
413fc34b
...
...
@@ -969,19 +969,22 @@ GpStatus WINGDIPAPI GdipIsStyleAvailable(GDIPCONST GpFontFamily* family,
/*****************************************************************************
* GdipGetGenericFontFamilyMonospace [GDIPLUS.@]
*
* Obtains a
serif
family (Courier New on Windows)
* Obtains a
monospace
family (Courier New on Windows)
*
* PARAMS
* **nativeFamily [
I
] Where the font will be stored
* **nativeFamily [
O
] Where the font will be stored
*
* RETURNS
* InvalidParameter if nativeFamily is NULL.
* FontFamilyNotFound if unable to get font.
* Ok otherwise.
*/
GpStatus
WINGDIPAPI
GdipGetGenericFontFamilyMonospace
(
GpFontFamily
**
nativeFamily
)
{
GpStatus
stat
;
TRACE
(
"(%p)
\n
"
,
nativeFamily
);
if
(
nativeFamily
==
NULL
)
return
InvalidParameter
;
stat
=
GdipCreateFontFamilyFromName
(
L"Courier New"
,
NULL
,
nativeFamily
);
...
...
@@ -990,7 +993,7 @@ GpStatus WINGDIPAPI GdipGetGenericFontFamilyMonospace(GpFontFamily **nativeFamil
stat
=
GdipCreateFontFamilyFromName
(
L"Liberation Mono"
,
NULL
,
nativeFamily
);
if
(
stat
==
FontFamilyNotFound
)
ERR
(
"Missing 'Courier New' font
\n
"
);
stat
=
GdipCreateFontFamilyFromName
(
L"Courier"
,
NULL
,
nativeFamily
);
return
stat
;
}
...
...
@@ -1001,10 +1004,11 @@ GpStatus WINGDIPAPI GdipGetGenericFontFamilyMonospace(GpFontFamily **nativeFamil
* Obtains a serif family (Times New Roman on Windows)
*
* PARAMS
* **nativeFamily [
I
] Where the font will be stored
* **nativeFamily [
O
] Where the font will be stored
*
* RETURNS
* InvalidParameter if nativeFamily is NULL.
* FontFamilyNotFound if unable to get font.
* Ok otherwise.
*/
GpStatus
WINGDIPAPI
GdipGetGenericFontFamilySerif
(
GpFontFamily
**
nativeFamily
)
...
...
@@ -1021,7 +1025,7 @@ GpStatus WINGDIPAPI GdipGetGenericFontFamilySerif(GpFontFamily **nativeFamily)
stat
=
GdipCreateFontFamilyFromName
(
L"Liberation Serif"
,
NULL
,
nativeFamily
);
if
(
stat
==
FontFamilyNotFound
)
ERR
(
"Missing 'Times New Roman' font
\n
"
);
stat
=
GdipGetGenericFontFamilySansSerif
(
nativeFamily
);
return
stat
;
}
...
...
@@ -1029,13 +1033,14 @@ GpStatus WINGDIPAPI GdipGetGenericFontFamilySerif(GpFontFamily **nativeFamily)
/*****************************************************************************
* GdipGetGenericFontFamilySansSerif [GDIPLUS.@]
*
* Obtains a s
erif family (Microsoft Sans Serif
on Windows)
* Obtains a s
ans serif family (Microsoft Sans Serif or Arial
on Windows)
*
* PARAMS
* **nativeFamily [
I
] Where the font will be stored
* **nativeFamily [
O
] Where the font will be stored
*
* RETURNS
* InvalidParameter if nativeFamily is NULL.
* FontFamilyNotFound if unable to get font.
* Ok otherwise.
*/
GpStatus
WINGDIPAPI
GdipGetGenericFontFamilySansSerif
(
GpFontFamily
**
nativeFamily
)
...
...
@@ -1049,7 +1054,12 @@ GpStatus WINGDIPAPI GdipGetGenericFontFamilySansSerif(GpFontFamily **nativeFamil
stat
=
GdipCreateFontFamilyFromName
(
L"Microsoft Sans Serif"
,
NULL
,
nativeFamily
);
if
(
stat
==
FontFamilyNotFound
)
/* FIXME: Microsoft Sans Serif is not installed on Wine. */
stat
=
GdipCreateFontFamilyFromName
(
L"Arial"
,
NULL
,
nativeFamily
);
if
(
stat
==
FontFamilyNotFound
)
stat
=
GdipCreateFontFamilyFromName
(
L"Liberation Sans"
,
NULL
,
nativeFamily
);
if
(
stat
==
FontFamilyNotFound
)
stat
=
GdipCreateFontFamilyFromName
(
L"Tahoma"
,
NULL
,
nativeFamily
);
return
stat
;
...
...
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