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
d6bad2d6
Commit
d6bad2d6
authored
Jun 21, 2008
by
Adam Petaccia
Committed by
Alexandre Julliard
Jun 25, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Implement GdipGetGeneric*.
parent
ce4b4148
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
72 additions
and
3 deletions
+72
-3
font.c
dlls/gdiplus/font.c
+65
-0
gdiplus.spec
dlls/gdiplus/gdiplus.spec
+3
-3
gdiplusflat.h
include/gdiplusflat.h
+4
-0
No files found.
dlls/gdiplus/font.c
View file @
d6bad2d6
...
...
@@ -278,3 +278,68 @@ GpStatus WINGDIPAPI GdipDeleteFontFamily(GpFontFamily *FontFamily)
return
Ok
;
}
/*****************************************************************************
* GdipGetGenericFontFamilyMonospace [GDIPLUS.@]
*
* Obtains a serif family (Courier New on Windows)
*
* PARAMS
* **nativeFamily [I] Where the font will be stored
*
* RETURNS
* InvalidParameter if nativeFamily is NULL.
* Ok otherwise.
*/
GpStatus
WINGDIPAPI
GdipGetGenericFontFamilyMonospace
(
GpFontFamily
**
nativeFamily
)
{
static
const
WCHAR
CourierNew
[]
=
{
'C'
,
'o'
,
'u'
,
'r'
,
'i'
,
'e'
,
'r'
,
' '
,
'N'
,
'e'
,
'w'
,
'\0'
};
if
(
nativeFamily
==
NULL
)
return
InvalidParameter
;
return
GdipCreateFontFamilyFromName
(
CourierNew
,
NULL
,
nativeFamily
);
}
/*****************************************************************************
* GdipGetGenericFontFamilySerif [GDIPLUS.@]
*
* Obtains a serif family (Times New Roman on Windows)
*
* PARAMS
* **nativeFamily [I] Where the font will be stored
*
* RETURNS
* InvalidParameter if nativeFamily is NULL.
* Ok otherwise.
*/
GpStatus
WINGDIPAPI
GdipGetGenericFontFamilySerif
(
GpFontFamily
**
nativeFamily
)
{
static
const
WCHAR
TimesNewRoman
[]
=
{
'T'
,
'i'
,
'm'
,
'e'
,
's'
,
' '
,
'N'
,
'e'
,
'w'
,
' '
,
'R'
,
'o'
,
'm'
,
'a'
,
'n'
,
'\0'
};
if
(
nativeFamily
==
NULL
)
return
InvalidParameter
;
return
GdipCreateFontFamilyFromName
(
TimesNewRoman
,
NULL
,
nativeFamily
);
}
/*****************************************************************************
* GdipGetGenericFontFamilySansSerif [GDIPLUS.@]
*
* Obtains a serif family (Microsoft Sans Serif on Windows)
*
* PARAMS
* **nativeFamily [I] Where the font will be stored
*
* RETURNS
* InvalidParameter if nativeFamily is NULL.
* Ok otherwise.
*/
GpStatus
WINGDIPAPI
GdipGetGenericFontFamilySansSerif
(
GpFontFamily
**
nativeFamily
)
{
/* FIXME: On Windows this is called Microsoft Sans Serif, this shouldn't
* affect anything */
static
const
WCHAR
MSSansSerif
[]
=
{
'M'
,
'S'
,
' '
,
'S'
,
'a'
,
'n'
,
's'
,
' '
,
'S'
,
'e'
,
'r'
,
'i'
,
'f'
,
'\0'
};
if
(
nativeFamily
==
NULL
)
return
InvalidParameter
;
return
GdipCreateFontFamilyFromName
(
MSSansSerif
,
NULL
,
nativeFamily
);
}
dlls/gdiplus/gdiplus.spec
View file @
d6bad2d6
...
...
@@ -272,9 +272,9 @@
@ stub GdipGetFontSize
@ stub GdipGetFontStyle
@ stub GdipGetFontUnit
@ st
ub GdipGetGenericFontFamilyMonospace
@ st
ub GdipGetGenericFontFamilySansSerif
@ st
ub GdipGetGenericFontFamilySerif
@ st
dcall GdipGetGenericFontFamilyMonospace(ptr)
@ st
dcall GdipGetGenericFontFamilySansSerif(ptr)
@ st
dcall GdipGetGenericFontFamilySerif(ptr)
@ stub GdipGetHatchBackgroundColor
@ stub GdipGetHatchForegroundColor
@ stub GdipGetHatchStyle
...
...
include/gdiplusflat.h
View file @
d6bad2d6
...
...
@@ -353,6 +353,10 @@ GpStatus WINGDIPAPI GdipCreateFontFamilyFromName(GDIPCONST WCHAR*,
GpStatus
WINGDIPAPI
GdipDeleteFontFamily
(
GpFontFamily
*
);
GpStatus
WINGDIPAPI
GdipGetFamilyName
(
GDIPCONST
GpFontFamily
*
,
WCHAR
*
,
LANGID
);
GpStatus
WINGDIPAPI
GdipGetGenericFontFamilySansSerif
(
GpFontFamily
**
);
GpStatus
WINGDIPAPI
GdipGetGenericFontFamilySerif
(
GpFontFamily
**
);
GpStatus
WINGDIPAPI
GdipGetGenericFontFamilyMonospace
(
GpFontFamily
**
);
GpStatus
WINGDIPAPI
GdipCreateStringFormat
(
INT
,
LANGID
,
GpStringFormat
**
);
GpStatus
WINGDIPAPI
GdipDeleteStringFormat
(
GpStringFormat
*
);
GpStatus
WINGDIPAPI
GdipGetStringFormatAlign
(
GpStringFormat
*
,
StringAlignment
*
);
...
...
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