gdiplus: Avoid GdipCloneMatrix calls for the graphics transformation matrix.
[wine.git] / dlls / gdiplus / font.c
blob6e3133140172134446c0a2bd443e05eab228fb49
1 /*
2 * Copyright (C) 2007 Google (Evan Stade)
3 * Copyright (C) 2012 Dmitry Timoshkov
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #include <stdarg.h>
22 #include "windef.h"
23 #include "winbase.h"
24 #include "wingdi.h"
25 #include "winnls.h"
26 #include "winreg.h"
27 #include "wine/debug.h"
28 #include "wine/unicode.h"
30 WINE_DEFAULT_DEBUG_CHANNEL (gdiplus);
32 #include "objbase.h"
34 #include "gdiplus.h"
35 #include "gdiplus_private.h"
37 /* PANOSE is 10 bytes in size, need to pack the structure properly */
38 #include "pshpack2.h"
39 typedef struct
41 USHORT version;
42 SHORT xAvgCharWidth;
43 USHORT usWeightClass;
44 USHORT usWidthClass;
45 SHORT fsType;
46 SHORT ySubscriptXSize;
47 SHORT ySubscriptYSize;
48 SHORT ySubscriptXOffset;
49 SHORT ySubscriptYOffset;
50 SHORT ySuperscriptXSize;
51 SHORT ySuperscriptYSize;
52 SHORT ySuperscriptXOffset;
53 SHORT ySuperscriptYOffset;
54 SHORT yStrikeoutSize;
55 SHORT yStrikeoutPosition;
56 SHORT sFamilyClass;
57 PANOSE panose;
58 ULONG ulUnicodeRange1;
59 ULONG ulUnicodeRange2;
60 ULONG ulUnicodeRange3;
61 ULONG ulUnicodeRange4;
62 CHAR achVendID[4];
63 USHORT fsSelection;
64 USHORT usFirstCharIndex;
65 USHORT usLastCharIndex;
66 /* According to the Apple spec, original version didn't have the below fields,
67 * version numbers were taken from the OpenType spec.
69 /* version 0 (TrueType 1.5) */
70 USHORT sTypoAscender;
71 USHORT sTypoDescender;
72 USHORT sTypoLineGap;
73 USHORT usWinAscent;
74 USHORT usWinDescent;
75 /* version 1 (TrueType 1.66) */
76 ULONG ulCodePageRange1;
77 ULONG ulCodePageRange2;
78 /* version 2 (OpenType 1.2) */
79 SHORT sxHeight;
80 SHORT sCapHeight;
81 USHORT usDefaultChar;
82 USHORT usBreakChar;
83 USHORT usMaxContext;
84 } TT_OS2_V2;
86 typedef struct
88 ULONG Version;
89 SHORT Ascender;
90 SHORT Descender;
91 SHORT LineGap;
92 USHORT advanceWidthMax;
93 SHORT minLeftSideBearing;
94 SHORT minRightSideBearing;
95 SHORT xMaxExtent;
96 SHORT caretSlopeRise;
97 SHORT caretSlopeRun;
98 SHORT caretOffset;
99 SHORT reserved[4];
100 SHORT metricDataFormat;
101 USHORT numberOfHMetrics;
102 } TT_HHEA;
103 #include "poppack.h"
105 #ifdef WORDS_BIGENDIAN
106 #define GET_BE_WORD(x) (x)
107 #define GET_BE_DWORD(x) (x)
108 #else
109 #define GET_BE_WORD(x) MAKEWORD(HIBYTE(x), LOBYTE(x))
110 #define GET_BE_DWORD(x) MAKELONG(GET_BE_WORD(HIWORD(x)), GET_BE_WORD(LOWORD(x)));
111 #endif
113 #define MS_MAKE_TAG(ch0, ch1, ch2, ch3) \
114 ((DWORD)(BYTE)(ch0) | ((DWORD)(BYTE)(ch1) << 8) | \
115 ((DWORD)(BYTE)(ch2) << 16) | ((DWORD)(BYTE)(ch3) << 24))
116 #define MS_OS2_TAG MS_MAKE_TAG('O','S','/','2')
117 #define MS_HHEA_TAG MS_MAKE_TAG('h','h','e','a')
119 static GpStatus clone_font_family(const GpFontFamily *, GpFontFamily **);
121 static GpFontCollection installedFontCollection = {0};
123 /*******************************************************************************
124 * GdipCreateFont [GDIPLUS.@]
126 * Create a new font based off of a FontFamily
128 * PARAMS
129 * *fontFamily [I] Family to base the font off of
130 * emSize [I] Size of the font
131 * style [I] Bitwise OR of FontStyle enumeration
132 * unit [I] Unit emSize is measured in
133 * **font [I] the resulting Font object
135 * RETURNS
136 * SUCCESS: Ok
137 * FAILURE: InvalidParameter if fontfamily or font is NULL.
138 * FAILURE: FontFamilyNotFound if an invalid FontFamily is given
140 * NOTES
141 * UnitDisplay is unsupported.
142 * emSize is stored separately from lfHeight, to hold the fraction.
144 GpStatus WINGDIPAPI GdipCreateFont(GDIPCONST GpFontFamily *fontFamily,
145 REAL emSize, INT style, Unit unit, GpFont **font)
147 HFONT hfont;
148 OUTLINETEXTMETRICW otm;
149 LOGFONTW lfw;
150 HDC hdc;
151 GpStatus stat;
152 int ret;
154 if (!fontFamily || !font || emSize < 0.0)
155 return InvalidParameter;
157 TRACE("%p (%s), %f, %d, %d, %p\n", fontFamily,
158 debugstr_w(fontFamily->FamilyName), emSize, style, unit, font);
160 memset(&lfw, 0, sizeof(lfw));
162 stat = GdipGetFamilyName(fontFamily, lfw.lfFaceName, LANG_NEUTRAL);
163 if (stat != Ok) return stat;
165 lfw.lfHeight = -units_to_pixels(emSize, unit, fontFamily->dpi);
166 lfw.lfWeight = style & FontStyleBold ? FW_BOLD : FW_REGULAR;
167 lfw.lfItalic = style & FontStyleItalic;
168 lfw.lfUnderline = style & FontStyleUnderline;
169 lfw.lfStrikeOut = style & FontStyleStrikeout;
171 hfont = CreateFontIndirectW(&lfw);
172 hdc = CreateCompatibleDC(0);
173 SelectObject(hdc, hfont);
174 otm.otmSize = sizeof(otm);
175 ret = GetOutlineTextMetricsW(hdc, otm.otmSize, &otm);
176 DeleteDC(hdc);
177 DeleteObject(hfont);
179 if (!ret) return NotTrueTypeFont;
181 *font = GdipAlloc(sizeof(GpFont));
182 if (!*font) return OutOfMemory;
184 (*font)->unit = unit;
185 (*font)->emSize = emSize;
186 (*font)->otm = otm;
188 stat = clone_font_family(fontFamily, &(*font)->family);
189 if (stat != Ok)
191 GdipFree(*font);
192 return stat;
195 TRACE("<-- %p\n", *font);
197 return Ok;
200 /*******************************************************************************
201 * GdipCreateFontFromLogfontW [GDIPLUS.@]
203 GpStatus WINGDIPAPI GdipCreateFontFromLogfontW(HDC hdc,
204 GDIPCONST LOGFONTW *logfont, GpFont **font)
206 HFONT hfont, oldfont;
207 OUTLINETEXTMETRICW otm;
208 WCHAR facename[LF_FACESIZE];
209 GpStatus stat;
210 int ret;
212 TRACE("(%p, %p, %p)\n", hdc, logfont, font);
214 if (!hdc || !logfont || !font)
215 return InvalidParameter;
217 hfont = CreateFontIndirectW(logfont);
218 oldfont = SelectObject(hdc, hfont);
219 otm.otmSize = sizeof(otm);
220 ret = GetOutlineTextMetricsW(hdc, otm.otmSize, &otm);
221 GetTextFaceW(hdc, LF_FACESIZE, facename);
222 SelectObject(hdc, oldfont);
223 DeleteObject(hfont);
225 if (!ret) return NotTrueTypeFont;
227 *font = GdipAlloc(sizeof(GpFont));
228 if (!*font) return OutOfMemory;
230 (*font)->unit = UnitWorld;
231 (*font)->emSize = otm.otmTextMetrics.tmAscent;
232 (*font)->otm = otm;
234 stat = GdipCreateFontFamilyFromName(facename, NULL, &(*font)->family);
235 if (stat != Ok)
237 GdipFree(*font);
238 return NotTrueTypeFont;
241 TRACE("<-- %p\n", *font);
243 return Ok;
246 /*******************************************************************************
247 * GdipCreateFontFromLogfontA [GDIPLUS.@]
249 GpStatus WINGDIPAPI GdipCreateFontFromLogfontA(HDC hdc,
250 GDIPCONST LOGFONTA *lfa, GpFont **font)
252 LOGFONTW lfw;
254 TRACE("(%p, %p, %p)\n", hdc, lfa, font);
256 if(!lfa || !font)
257 return InvalidParameter;
259 memcpy(&lfw, lfa, FIELD_OFFSET(LOGFONTA,lfFaceName) );
261 if(!MultiByteToWideChar(CP_ACP, 0, lfa->lfFaceName, -1, lfw.lfFaceName, LF_FACESIZE))
262 return GenericError;
264 return GdipCreateFontFromLogfontW(hdc, &lfw, font);
267 /*******************************************************************************
268 * GdipDeleteFont [GDIPLUS.@]
270 GpStatus WINGDIPAPI GdipDeleteFont(GpFont* font)
272 TRACE("(%p)\n", font);
274 if(!font)
275 return InvalidParameter;
277 GdipDeleteFontFamily(font->family);
278 GdipFree(font);
280 return Ok;
283 /*******************************************************************************
284 * GdipCreateFontFromDC [GDIPLUS.@]
286 GpStatus WINGDIPAPI GdipCreateFontFromDC(HDC hdc, GpFont **font)
288 HFONT hfont;
289 LOGFONTW lfw;
291 TRACE("(%p, %p)\n", hdc, font);
293 if(!font)
294 return InvalidParameter;
296 hfont = GetCurrentObject(hdc, OBJ_FONT);
297 if(!hfont)
298 return GenericError;
300 if(!GetObjectW(hfont, sizeof(LOGFONTW), &lfw))
301 return GenericError;
303 return GdipCreateFontFromLogfontW(hdc, &lfw, font);
306 /*******************************************************************************
307 * GdipGetFamily [GDIPLUS.@]
309 * Returns the FontFamily for the specified Font
311 * PARAMS
312 * font [I] Font to request from
313 * family [O] Resulting FontFamily object
315 * RETURNS
316 * SUCCESS: Ok
317 * FAILURE: An element of GpStatus
319 GpStatus WINGDIPAPI GdipGetFamily(GpFont *font, GpFontFamily **family)
321 TRACE("%p %p\n", font, family);
323 if (!(font && family))
324 return InvalidParameter;
326 return GdipCloneFontFamily(font->family, family);
329 static REAL get_font_size(const GpFont *font)
331 return font->emSize;
334 /******************************************************************************
335 * GdipGetFontSize [GDIPLUS.@]
337 * Returns the size of the font in Units
339 * PARAMS
340 * *font [I] The font to retrieve size from
341 * *size [O] Pointer to hold retrieved value
343 * RETURNS
344 * SUCCESS: Ok
345 * FAILURE: InvalidParameter (font or size was NULL)
347 * NOTES
348 * Size returned is actually emSize -- not internal size used for drawing.
350 GpStatus WINGDIPAPI GdipGetFontSize(GpFont *font, REAL *size)
352 TRACE("(%p, %p)\n", font, size);
354 if (!(font && size)) return InvalidParameter;
356 *size = get_font_size(font);
357 TRACE("%s,%d => %f\n", debugstr_w(font->family->FamilyName), font->otm.otmTextMetrics.tmHeight, *size);
359 return Ok;
362 static INT get_font_style(const GpFont *font)
364 INT style;
366 if (font->otm.otmTextMetrics.tmWeight > FW_REGULAR)
367 style = FontStyleBold;
368 else
369 style = FontStyleRegular;
370 if (font->otm.otmTextMetrics.tmItalic)
371 style |= FontStyleItalic;
372 if (font->otm.otmTextMetrics.tmUnderlined)
373 style |= FontStyleUnderline;
374 if (font->otm.otmTextMetrics.tmStruckOut)
375 style |= FontStyleStrikeout;
377 return style;
380 /*******************************************************************************
381 * GdipGetFontStyle [GDIPLUS.@]
383 * Gets the font's style, returned in bitwise OR of FontStyle enumeration
385 * PARAMS
386 * font [I] font to request from
387 * style [O] resulting pointer to a FontStyle enumeration
389 * RETURNS
390 * SUCCESS: Ok
391 * FAILURE: InvalidParameter
393 GpStatus WINGDIPAPI GdipGetFontStyle(GpFont *font, INT *style)
395 TRACE("%p %p\n", font, style);
397 if (!(font && style))
398 return InvalidParameter;
400 *style = get_font_style(font);
401 TRACE("%s,%d => %d\n", debugstr_w(font->family->FamilyName), font->otm.otmTextMetrics.tmHeight, *style);
403 return Ok;
406 /*******************************************************************************
407 * GdipGetFontUnit [GDIPLUS.@]
409 * PARAMS
410 * font [I] Font to retrieve from
411 * unit [O] Return value
413 * RETURNS
414 * FAILURE: font or unit was NULL
415 * OK: otherwise
417 GpStatus WINGDIPAPI GdipGetFontUnit(GpFont *font, Unit *unit)
419 TRACE("(%p, %p)\n", font, unit);
421 if (!(font && unit)) return InvalidParameter;
423 *unit = font->unit;
424 TRACE("%s,%d => %d\n", debugstr_w(font->family->FamilyName), font->otm.otmTextMetrics.tmHeight, *unit);
426 return Ok;
429 /*******************************************************************************
430 * GdipGetLogFontA [GDIPLUS.@]
432 GpStatus WINGDIPAPI GdipGetLogFontA(GpFont *font, GpGraphics *graphics,
433 LOGFONTA *lfa)
435 GpStatus status;
436 LOGFONTW lfw;
438 TRACE("(%p, %p, %p)\n", font, graphics, lfa);
440 status = GdipGetLogFontW(font, graphics, &lfw);
441 if(status != Ok)
442 return status;
444 memcpy(lfa, &lfw, FIELD_OFFSET(LOGFONTA,lfFaceName) );
446 if(!WideCharToMultiByte(CP_ACP, 0, lfw.lfFaceName, -1, lfa->lfFaceName, LF_FACESIZE, NULL, NULL))
447 return GenericError;
449 return Ok;
452 /*******************************************************************************
453 * GdipGetLogFontW [GDIPLUS.@]
455 GpStatus WINGDIPAPI GdipGetLogFontW(GpFont *font, GpGraphics *graphics, LOGFONTW *lf)
457 REAL angle, rel_height, height;
458 GpMatrix matrix;
459 GpPointF pt[3];
461 TRACE("(%p, %p, %p)\n", font, graphics, lf);
463 if (!font || !graphics || !lf)
464 return InvalidParameter;
466 matrix = graphics->worldtrans;
468 if (font->unit == UnitPixel)
470 height = units_to_pixels(font->emSize, graphics->unit, graphics->yres);
471 if (graphics->unit != UnitDisplay)
472 GdipScaleMatrix(&matrix, graphics->scale, graphics->scale, MatrixOrderAppend);
474 else
476 if (graphics->unit == UnitDisplay || graphics->unit == UnitPixel)
477 height = units_to_pixels(font->emSize, font->unit, graphics->xres);
478 else
479 height = units_to_pixels(font->emSize, font->unit, graphics->yres);
482 pt[0].X = 0.0;
483 pt[0].Y = 0.0;
484 pt[1].X = 1.0;
485 pt[1].Y = 0.0;
486 pt[2].X = 0.0;
487 pt[2].Y = 1.0;
488 GdipTransformMatrixPoints(&matrix, pt, 3);
489 angle = -gdiplus_atan2((pt[1].Y - pt[0].Y), (pt[1].X - pt[0].X));
490 rel_height = sqrt((pt[2].Y - pt[0].Y) * (pt[2].Y - pt[0].Y)+
491 (pt[2].X - pt[0].X) * (pt[2].X - pt[0].X));
493 lf->lfHeight = -gdip_round(height * rel_height);
494 lf->lfWidth = 0;
495 lf->lfEscapement = lf->lfOrientation = gdip_round((angle / M_PI) * 1800.0);
496 if (lf->lfEscapement < 0)
498 lf->lfEscapement += 3600;
499 lf->lfOrientation += 3600;
501 lf->lfWeight = font->otm.otmTextMetrics.tmWeight;
502 lf->lfItalic = font->otm.otmTextMetrics.tmItalic ? 1 : 0;
503 lf->lfUnderline = font->otm.otmTextMetrics.tmUnderlined ? 1 : 0;
504 lf->lfStrikeOut = font->otm.otmTextMetrics.tmStruckOut ? 1 : 0;
505 lf->lfCharSet = font->otm.otmTextMetrics.tmCharSet;
506 lf->lfOutPrecision = OUT_DEFAULT_PRECIS;
507 lf->lfClipPrecision = CLIP_DEFAULT_PRECIS;
508 lf->lfQuality = DEFAULT_QUALITY;
509 lf->lfPitchAndFamily = 0;
510 strcpyW(lf->lfFaceName, font->family->FamilyName);
512 TRACE("=> %s,%d\n", debugstr_w(lf->lfFaceName), lf->lfHeight);
514 return Ok;
517 /*******************************************************************************
518 * GdipCloneFont [GDIPLUS.@]
520 GpStatus WINGDIPAPI GdipCloneFont(GpFont *font, GpFont **cloneFont)
522 GpStatus stat;
524 TRACE("(%p, %p)\n", font, cloneFont);
526 if(!font || !cloneFont)
527 return InvalidParameter;
529 *cloneFont = GdipAlloc(sizeof(GpFont));
530 if(!*cloneFont) return OutOfMemory;
532 **cloneFont = *font;
533 stat = GdipCloneFontFamily(font->family, &(*cloneFont)->family);
534 if (stat != Ok) GdipFree(*cloneFont);
536 return stat;
539 /*******************************************************************************
540 * GdipGetFontHeight [GDIPLUS.@]
541 * PARAMS
542 * font [I] Font to retrieve height from
543 * graphics [I] The current graphics context
544 * height [O] Resulting height
545 * RETURNS
546 * SUCCESS: Ok
547 * FAILURE: Another element of GpStatus
549 * NOTES
550 * Forwards to GdipGetFontHeightGivenDPI
552 GpStatus WINGDIPAPI GdipGetFontHeight(GDIPCONST GpFont *font,
553 GDIPCONST GpGraphics *graphics, REAL *height)
555 REAL dpi;
556 GpStatus stat;
557 REAL font_height;
559 TRACE("%p %p %p\n", font, graphics, height);
561 stat = GdipGetFontHeightGivenDPI(font, font->family->dpi, &font_height);
562 if (stat != Ok) return stat;
564 if (!graphics)
566 *height = font_height;
567 TRACE("%s,%d => %f\n",
568 debugstr_w(font->family->FamilyName), font->otm.otmTextMetrics.tmHeight, *height);
569 return Ok;
572 stat = GdipGetDpiY((GpGraphics *)graphics, &dpi);
573 if (stat != Ok) return stat;
575 *height = pixels_to_units(font_height, graphics->unit, dpi);
577 TRACE("%s,%d(unit %d) => %f\n",
578 debugstr_w(font->family->FamilyName), font->otm.otmTextMetrics.tmHeight, graphics->unit, *height);
579 return Ok;
582 /*******************************************************************************
583 * GdipGetFontHeightGivenDPI [GDIPLUS.@]
584 * PARAMS
585 * font [I] Font to retrieve DPI from
586 * dpi [I] DPI to assume
587 * height [O] Return value
589 * RETURNS
590 * SUCCESS: Ok
591 * FAILURE: InvalidParameter if font or height is NULL
593 * NOTES
594 * According to MSDN, the result is (lineSpacing)*(fontSize / emHeight)*dpi
595 * (for anything other than unit Pixel)
597 GpStatus WINGDIPAPI GdipGetFontHeightGivenDPI(GDIPCONST GpFont *font, REAL dpi, REAL *height)
599 GpStatus stat;
600 INT style;
601 UINT16 line_spacing, em_height;
602 REAL font_size;
604 if (!font || !height) return InvalidParameter;
606 TRACE("%p (%s), %f, %p\n", font,
607 debugstr_w(font->family->FamilyName), dpi, height);
609 font_size = units_to_pixels(get_font_size(font), font->unit, dpi);
610 style = get_font_style(font);
611 stat = GdipGetLineSpacing(font->family, style, &line_spacing);
612 if (stat != Ok) return stat;
613 stat = GdipGetEmHeight(font->family, style, &em_height);
614 if (stat != Ok) return stat;
616 *height = (REAL)line_spacing * font_size / (REAL)em_height;
618 TRACE("%s,%d => %f\n",
619 debugstr_w(font->family->FamilyName), font->otm.otmTextMetrics.tmHeight, *height);
621 return Ok;
624 /***********************************************************************
625 * Borrowed from GDI32:
627 * Elf is really an ENUMLOGFONTEXW, and ntm is a NEWTEXTMETRICEXW.
628 * We have to use other types because of the FONTENUMPROCW definition.
630 static INT CALLBACK is_font_installed_proc(const LOGFONTW *elf,
631 const TEXTMETRICW *ntm, DWORD type, LPARAM lParam)
633 if (type & RASTER_FONTTYPE)
634 return 1;
636 *(LOGFONTW *)lParam = *elf;
638 return 0;
641 struct font_metrics
643 WCHAR facename[LF_FACESIZE];
644 UINT16 em_height, ascent, descent, line_spacing; /* in font units */
645 int dpi;
648 static BOOL get_font_metrics(HDC hdc, struct font_metrics *fm)
650 OUTLINETEXTMETRICW otm;
651 TT_OS2_V2 tt_os2;
652 TT_HHEA tt_hori;
653 LONG size;
654 UINT16 line_gap;
656 otm.otmSize = sizeof(otm);
657 if (!GetOutlineTextMetricsW(hdc, otm.otmSize, &otm)) return FALSE;
659 GetTextFaceW(hdc, LF_FACESIZE, fm->facename);
661 fm->em_height = otm.otmEMSquare;
662 fm->dpi = GetDeviceCaps(hdc, LOGPIXELSY);
664 memset(&tt_hori, 0, sizeof(tt_hori));
665 if (GetFontData(hdc, MS_HHEA_TAG, 0, &tt_hori, sizeof(tt_hori)) != GDI_ERROR)
667 fm->ascent = GET_BE_WORD(tt_hori.Ascender);
668 fm->descent = -GET_BE_WORD(tt_hori.Descender);
669 TRACE("hhea: ascent %d, descent %d\n", fm->ascent, fm->descent);
670 line_gap = GET_BE_WORD(tt_hori.LineGap);
671 fm->line_spacing = fm->ascent + fm->descent + line_gap;
672 TRACE("line_gap %u, line_spacing %u\n", line_gap, fm->line_spacing);
673 if (fm->ascent + fm->descent != 0) return TRUE;
676 size = GetFontData(hdc, MS_OS2_TAG, 0, NULL, 0);
677 if (size == GDI_ERROR) return FALSE;
679 if (size > sizeof(tt_os2)) size = sizeof(tt_os2);
681 memset(&tt_os2, 0, sizeof(tt_os2));
682 if (GetFontData(hdc, MS_OS2_TAG, 0, &tt_os2, size) != size) return FALSE;
684 fm->ascent = GET_BE_WORD(tt_os2.usWinAscent);
685 fm->descent = GET_BE_WORD(tt_os2.usWinDescent);
686 TRACE("usWinAscent %u, usWinDescent %u\n", fm->ascent, fm->descent);
687 if (fm->ascent + fm->descent == 0)
689 fm->ascent = GET_BE_WORD(tt_os2.sTypoAscender);
690 fm->descent = GET_BE_WORD(tt_os2.sTypoDescender);
691 TRACE("sTypoAscender %u, sTypoDescender %u\n", fm->ascent, fm->descent);
693 line_gap = GET_BE_WORD(tt_os2.sTypoLineGap);
694 fm->line_spacing = fm->ascent + fm->descent + line_gap;
695 TRACE("line_gap %u, line_spacing %u\n", line_gap, fm->line_spacing);
696 return TRUE;
699 static GpStatus find_installed_font(const WCHAR *name, struct font_metrics *fm)
701 LOGFONTW lf;
702 HDC hdc = CreateCompatibleDC(0);
703 GpStatus ret = FontFamilyNotFound;
705 if(!EnumFontFamiliesW(hdc, name, is_font_installed_proc, (LPARAM)&lf))
707 HFONT hfont, old_font;
709 hfont = CreateFontIndirectW(&lf);
710 old_font = SelectObject(hdc, hfont);
711 ret = get_font_metrics(hdc, fm) ? Ok : NotTrueTypeFont;
712 SelectObject(hdc, old_font);
713 DeleteObject(hfont);
716 DeleteDC(hdc);
717 return ret;
720 /*******************************************************************************
721 * GdipCreateFontFamilyFromName [GDIPLUS.@]
723 * Creates a font family object based on a supplied name
725 * PARAMS
726 * name [I] Name of the font
727 * fontCollection [I] What font collection (if any) the font belongs to (may be NULL)
728 * FontFamily [O] Pointer to the resulting FontFamily object
730 * RETURNS
731 * SUCCESS: Ok
732 * FAILURE: FamilyNotFound if the requested FontFamily does not exist on the system
733 * FAILURE: Invalid parameter if FontFamily or name is NULL
735 * NOTES
736 * If fontCollection is NULL then the object is not part of any collection
740 GpStatus WINGDIPAPI GdipCreateFontFamilyFromName(GDIPCONST WCHAR *name,
741 GpFontCollection *fontCollection,
742 GpFontFamily **FontFamily)
744 GpStatus stat;
745 GpFontFamily* ffamily;
746 struct font_metrics fm;
748 TRACE("%s, %p %p\n", debugstr_w(name), fontCollection, FontFamily);
750 if (!(name && FontFamily))
751 return InvalidParameter;
752 if (fontCollection)
753 FIXME("No support for FontCollections yet!\n");
755 stat = find_installed_font(name, &fm);
756 if (stat != Ok) return stat;
758 ffamily = GdipAlloc(sizeof (GpFontFamily));
759 if (!ffamily) return OutOfMemory;
761 lstrcpyW(ffamily->FamilyName, fm.facename);
762 ffamily->em_height = fm.em_height;
763 ffamily->ascent = fm.ascent;
764 ffamily->descent = fm.descent;
765 ffamily->line_spacing = fm.line_spacing;
766 ffamily->dpi = fm.dpi;
768 *FontFamily = ffamily;
770 TRACE("<-- %p\n", ffamily);
772 return Ok;
775 static GpStatus clone_font_family(const GpFontFamily *family, GpFontFamily **clone)
777 *clone = GdipAlloc(sizeof(GpFontFamily));
778 if (!*clone) return OutOfMemory;
780 **clone = *family;
782 return Ok;
785 /*******************************************************************************
786 * GdipCloneFontFamily [GDIPLUS.@]
788 * Creates a deep copy of a Font Family object
790 * PARAMS
791 * FontFamily [I] Font to clone
792 * clonedFontFamily [O] The resulting cloned font
794 * RETURNS
795 * SUCCESS: Ok
797 GpStatus WINGDIPAPI GdipCloneFontFamily(GpFontFamily* FontFamily, GpFontFamily** clonedFontFamily)
799 GpStatus status;
801 if (!(FontFamily && clonedFontFamily)) return InvalidParameter;
803 TRACE("%p (%s), %p\n", FontFamily,
804 debugstr_w(FontFamily->FamilyName), clonedFontFamily);
806 status = clone_font_family(FontFamily, clonedFontFamily);
807 if (status != Ok) return status;
809 TRACE("<-- %p\n", *clonedFontFamily);
811 return Ok;
814 /*******************************************************************************
815 * GdipGetFamilyName [GDIPLUS.@]
817 * Returns the family name into name
819 * PARAMS
820 * *family [I] Family to retrieve from
821 * *name [O] WCHARS of the family name
822 * LANGID [I] charset
824 * RETURNS
825 * SUCCESS: Ok
826 * FAILURE: InvalidParameter if family is NULL
828 * NOTES
829 * If name is a NULL ptr, then both XP and Vista will crash (so we do as well)
831 GpStatus WINGDIPAPI GdipGetFamilyName (GDIPCONST GpFontFamily *family,
832 WCHAR *name, LANGID language)
834 static int lang_fixme;
836 if (family == NULL)
837 return InvalidParameter;
839 TRACE("%p, %p, %d\n", family, name, language);
841 if (language != LANG_NEUTRAL && !lang_fixme++)
842 FIXME("No support for handling of multiple languages!\n");
844 lstrcpynW (name, family->FamilyName, LF_FACESIZE);
846 return Ok;
850 /*****************************************************************************
851 * GdipDeleteFontFamily [GDIPLUS.@]
853 * Removes the specified FontFamily
855 * PARAMS
856 * *FontFamily [I] The family to delete
858 * RETURNS
859 * SUCCESS: Ok
860 * FAILURE: InvalidParameter if FontFamily is NULL.
863 GpStatus WINGDIPAPI GdipDeleteFontFamily(GpFontFamily *FontFamily)
865 if (!FontFamily)
866 return InvalidParameter;
867 TRACE("Deleting %p (%s)\n", FontFamily, debugstr_w(FontFamily->FamilyName));
869 GdipFree (FontFamily);
871 return Ok;
874 GpStatus WINGDIPAPI GdipGetCellAscent(GDIPCONST GpFontFamily *family,
875 INT style, UINT16* CellAscent)
877 if (!(family && CellAscent)) return InvalidParameter;
879 *CellAscent = family->ascent;
880 TRACE("%s => %u\n", debugstr_w(family->FamilyName), *CellAscent);
882 return Ok;
885 GpStatus WINGDIPAPI GdipGetCellDescent(GDIPCONST GpFontFamily *family,
886 INT style, UINT16* CellDescent)
888 TRACE("(%p, %d, %p)\n", family, style, CellDescent);
890 if (!(family && CellDescent)) return InvalidParameter;
892 *CellDescent = family->descent;
893 TRACE("%s => %u\n", debugstr_w(family->FamilyName), *CellDescent);
895 return Ok;
898 /*******************************************************************************
899 * GdipGetEmHeight [GDIPLUS.@]
901 * Gets the height of the specified family in EmHeights
903 * PARAMS
904 * family [I] Family to retrieve from
905 * style [I] (optional) style
906 * EmHeight [O] return value
908 * RETURNS
909 * SUCCESS: Ok
910 * FAILURE: InvalidParameter
912 GpStatus WINGDIPAPI GdipGetEmHeight(GDIPCONST GpFontFamily *family, INT style, UINT16* EmHeight)
914 if (!(family && EmHeight)) return InvalidParameter;
916 TRACE("%p (%s), %d, %p\n", family, debugstr_w(family->FamilyName), style, EmHeight);
918 *EmHeight = family->em_height;
919 TRACE("%s => %u\n", debugstr_w(family->FamilyName), *EmHeight);
921 return Ok;
925 /*******************************************************************************
926 * GdipGetLineSpacing [GDIPLUS.@]
928 * Returns the line spacing in design units
930 * PARAMS
931 * family [I] Family to retrieve from
932 * style [I] (Optional) font style
933 * LineSpacing [O] Return value
935 * RETURNS
936 * SUCCESS: Ok
937 * FAILURE: InvalidParameter (family or LineSpacing was NULL)
939 GpStatus WINGDIPAPI GdipGetLineSpacing(GDIPCONST GpFontFamily *family,
940 INT style, UINT16* LineSpacing)
942 TRACE("%p, %d, %p\n", family, style, LineSpacing);
944 if (!(family && LineSpacing))
945 return InvalidParameter;
947 if (style) FIXME("ignoring style\n");
949 *LineSpacing = family->line_spacing;
950 TRACE("%s => %u\n", debugstr_w(family->FamilyName), *LineSpacing);
952 return Ok;
955 static INT CALLBACK font_has_style_proc(const LOGFONTW *elf,
956 const TEXTMETRICW *ntm, DWORD type, LPARAM lParam)
958 INT fontstyle = FontStyleRegular;
960 if (!ntm) return 1;
962 if (ntm->tmWeight >= FW_BOLD) fontstyle |= FontStyleBold;
963 if (ntm->tmItalic) fontstyle |= FontStyleItalic;
964 if (ntm->tmUnderlined) fontstyle |= FontStyleUnderline;
965 if (ntm->tmStruckOut) fontstyle |= FontStyleStrikeout;
967 return (INT)lParam != fontstyle;
970 GpStatus WINGDIPAPI GdipIsStyleAvailable(GDIPCONST GpFontFamily* family,
971 INT style, BOOL* IsStyleAvailable)
973 HDC hdc;
975 TRACE("%p %d %p\n", family, style, IsStyleAvailable);
977 if (!(family && IsStyleAvailable))
978 return InvalidParameter;
980 *IsStyleAvailable = FALSE;
982 hdc = GetDC(0);
984 if(!EnumFontFamiliesW(hdc, family->FamilyName, font_has_style_proc, (LPARAM)style))
985 *IsStyleAvailable = TRUE;
987 ReleaseDC(0, hdc);
989 return Ok;
992 /*****************************************************************************
993 * GdipGetGenericFontFamilyMonospace [GDIPLUS.@]
995 * Obtains a serif family (Courier New on Windows)
997 * PARAMS
998 * **nativeFamily [I] Where the font will be stored
1000 * RETURNS
1001 * InvalidParameter if nativeFamily is NULL.
1002 * Ok otherwise.
1004 GpStatus WINGDIPAPI GdipGetGenericFontFamilyMonospace(GpFontFamily **nativeFamily)
1006 static const WCHAR CourierNew[] = {'C','o','u','r','i','e','r',' ','N','e','w','\0'};
1007 static const WCHAR LiberationMono[] = {'L','i','b','e','r','a','t','i','o','n',' ','M','o','n','o','\0'};
1008 GpStatus stat;
1010 if (nativeFamily == NULL) return InvalidParameter;
1012 stat = GdipCreateFontFamilyFromName(CourierNew, NULL, nativeFamily);
1014 if (stat == FontFamilyNotFound)
1015 stat = GdipCreateFontFamilyFromName(LiberationMono, NULL, nativeFamily);
1017 if (stat == FontFamilyNotFound)
1018 ERR("Missing 'Courier New' font\n");
1020 return stat;
1023 /*****************************************************************************
1024 * GdipGetGenericFontFamilySerif [GDIPLUS.@]
1026 * Obtains a serif family (Times New Roman on Windows)
1028 * PARAMS
1029 * **nativeFamily [I] Where the font will be stored
1031 * RETURNS
1032 * InvalidParameter if nativeFamily is NULL.
1033 * Ok otherwise.
1035 GpStatus WINGDIPAPI GdipGetGenericFontFamilySerif(GpFontFamily **nativeFamily)
1037 static const WCHAR TimesNewRoman[] = {'T','i','m','e','s',' ','N','e','w',' ','R','o','m','a','n','\0'};
1038 static const WCHAR LiberationSerif[] = {'L','i','b','e','r','a','t','i','o','n',' ','S','e','r','i','f','\0'};
1039 GpStatus stat;
1041 TRACE("(%p)\n", nativeFamily);
1043 if (nativeFamily == NULL) return InvalidParameter;
1045 stat = GdipCreateFontFamilyFromName(TimesNewRoman, NULL, nativeFamily);
1047 if (stat == FontFamilyNotFound)
1048 stat = GdipCreateFontFamilyFromName(LiberationSerif, NULL, nativeFamily);
1050 if (stat == FontFamilyNotFound)
1051 ERR("Missing 'Times New Roman' font\n");
1053 return stat;
1056 /*****************************************************************************
1057 * GdipGetGenericFontFamilySansSerif [GDIPLUS.@]
1059 * Obtains a serif family (Microsoft Sans Serif on Windows)
1061 * PARAMS
1062 * **nativeFamily [I] Where the font will be stored
1064 * RETURNS
1065 * InvalidParameter if nativeFamily is NULL.
1066 * Ok otherwise.
1068 GpStatus WINGDIPAPI GdipGetGenericFontFamilySansSerif(GpFontFamily **nativeFamily)
1070 GpStatus stat;
1071 static const WCHAR MicrosoftSansSerif[] = {'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f','\0'};
1072 static const WCHAR Tahoma[] = {'T','a','h','o','m','a','\0'};
1074 TRACE("(%p)\n", nativeFamily);
1076 if (nativeFamily == NULL) return InvalidParameter;
1078 stat = GdipCreateFontFamilyFromName(MicrosoftSansSerif, NULL, nativeFamily);
1080 if (stat == FontFamilyNotFound)
1081 /* FIXME: Microsoft Sans Serif is not installed on Wine. */
1082 stat = GdipCreateFontFamilyFromName(Tahoma, NULL, nativeFamily);
1084 return stat;
1087 /*****************************************************************************
1088 * GdipGetGenericFontFamilySansSerif [GDIPLUS.@]
1090 GpStatus WINGDIPAPI GdipNewPrivateFontCollection(GpFontCollection** fontCollection)
1092 TRACE("%p\n", fontCollection);
1094 if (!fontCollection)
1095 return InvalidParameter;
1097 *fontCollection = GdipAlloc(sizeof(GpFontCollection));
1098 if (!*fontCollection) return OutOfMemory;
1100 (*fontCollection)->FontFamilies = NULL;
1101 (*fontCollection)->count = 0;
1102 (*fontCollection)->allocated = 0;
1104 TRACE("<-- %p\n", *fontCollection);
1106 return Ok;
1109 /*****************************************************************************
1110 * GdipDeletePrivateFontCollection [GDIPLUS.@]
1112 GpStatus WINGDIPAPI GdipDeletePrivateFontCollection(GpFontCollection **fontCollection)
1114 INT i;
1116 TRACE("%p\n", fontCollection);
1118 if (!fontCollection)
1119 return InvalidParameter;
1121 for (i = 0; i < (*fontCollection)->count; i++) GdipFree((*fontCollection)->FontFamilies[i]);
1122 GdipFree(*fontCollection);
1124 return Ok;
1127 /*****************************************************************************
1128 * GdipPrivateAddFontFile [GDIPLUS.@]
1130 GpStatus WINGDIPAPI GdipPrivateAddFontFile(GpFontCollection* fontCollection,
1131 GDIPCONST WCHAR* filename)
1133 FIXME("stub: %p, %s\n", fontCollection, debugstr_w(filename));
1135 if (!(fontCollection && filename))
1136 return InvalidParameter;
1138 return NotImplemented;
1141 /* Copied from msi/font.c */
1143 typedef struct _tagTT_OFFSET_TABLE {
1144 USHORT uMajorVersion;
1145 USHORT uMinorVersion;
1146 USHORT uNumOfTables;
1147 USHORT uSearchRange;
1148 USHORT uEntrySelector;
1149 USHORT uRangeShift;
1150 } TT_OFFSET_TABLE;
1152 typedef struct _tagTT_TABLE_DIRECTORY {
1153 char szTag[4]; /* table name */
1154 ULONG uCheckSum; /* Check sum */
1155 ULONG uOffset; /* Offset from beginning of file */
1156 ULONG uLength; /* length of the table in bytes */
1157 } TT_TABLE_DIRECTORY;
1159 typedef struct _tagTT_NAME_TABLE_HEADER {
1160 USHORT uFSelector; /* format selector. Always 0 */
1161 USHORT uNRCount; /* Name Records count */
1162 USHORT uStorageOffset; /* Offset for strings storage,
1163 * from start of the table */
1164 } TT_NAME_TABLE_HEADER;
1166 #define NAME_ID_FULL_FONT_NAME 4
1167 #define NAME_ID_VERSION 5
1169 typedef struct _tagTT_NAME_RECORD {
1170 USHORT uPlatformID;
1171 USHORT uEncodingID;
1172 USHORT uLanguageID;
1173 USHORT uNameID;
1174 USHORT uStringLength;
1175 USHORT uStringOffset; /* from start of storage area */
1176 } TT_NAME_RECORD;
1178 #define SWAPWORD(x) MAKEWORD(HIBYTE(x), LOBYTE(x))
1179 #define SWAPLONG(x) MAKELONG(SWAPWORD(HIWORD(x)), SWAPWORD(LOWORD(x)))
1182 * Code based off of code located here
1183 * http://www.codeproject.com/gdi/fontnamefromfile.asp
1185 static WCHAR *load_ttf_name_id( const char *mem, DWORD_PTR size, DWORD id, WCHAR *ret, DWORD len )
1187 const TT_TABLE_DIRECTORY *tblDir;
1188 TT_OFFSET_TABLE ttOffsetTable;
1189 TT_NAME_TABLE_HEADER ttNTHeader;
1190 TT_NAME_RECORD ttRecord;
1191 DWORD ofs, pos;
1192 int i;
1194 if (sizeof(TT_OFFSET_TABLE) > size)
1195 return NULL;
1196 ttOffsetTable = *(TT_OFFSET_TABLE*)mem;
1197 ttOffsetTable.uNumOfTables = SWAPWORD(ttOffsetTable.uNumOfTables);
1198 ttOffsetTable.uMajorVersion = SWAPWORD(ttOffsetTable.uMajorVersion);
1199 ttOffsetTable.uMinorVersion = SWAPWORD(ttOffsetTable.uMinorVersion);
1201 if (ttOffsetTable.uMajorVersion != 1 || ttOffsetTable.uMinorVersion != 0)
1202 return NULL;
1204 pos = sizeof(ttOffsetTable);
1205 for (i = 0; i < ttOffsetTable.uNumOfTables; i++)
1207 tblDir = (const TT_TABLE_DIRECTORY*)&mem[pos];
1208 pos += sizeof(*tblDir);
1209 if (memcmp(tblDir->szTag,"name",4)==0)
1211 ofs = SWAPLONG(tblDir->uOffset);
1212 break;
1215 if (i >= ttOffsetTable.uNumOfTables)
1216 return NULL;
1218 pos = ofs + sizeof(ttNTHeader);
1219 if (pos > size)
1220 return NULL;
1221 ttNTHeader = *(TT_NAME_TABLE_HEADER*)&mem[ofs];
1222 ttNTHeader.uNRCount = SWAPWORD(ttNTHeader.uNRCount);
1223 ttNTHeader.uStorageOffset = SWAPWORD(ttNTHeader.uStorageOffset);
1224 for(i=0; i<ttNTHeader.uNRCount; i++)
1226 ttRecord = *(TT_NAME_RECORD*)&mem[pos];
1227 pos += sizeof(ttRecord);
1228 if (pos > size)
1229 return NULL;
1231 ttRecord.uNameID = SWAPWORD(ttRecord.uNameID);
1232 if (ttRecord.uNameID == id)
1234 const char *buf;
1236 ttRecord.uStringLength = SWAPWORD(ttRecord.uStringLength);
1237 ttRecord.uStringOffset = SWAPWORD(ttRecord.uStringOffset);
1238 if (ofs + ttRecord.uStringOffset + ttNTHeader.uStorageOffset + ttRecord.uStringLength > size)
1239 return NULL;
1240 buf = mem + ofs + ttRecord.uStringOffset + ttNTHeader.uStorageOffset;
1241 len = MultiByteToWideChar(CP_ACP, 0, buf, ttRecord.uStringLength, ret, len-1);
1242 ret[len] = 0;
1243 return ret;
1246 return NULL;
1249 static INT CALLBACK add_font_proc(const LOGFONTW *lfw, const TEXTMETRICW *ntm, DWORD type, LPARAM lParam);
1251 /*****************************************************************************
1252 * GdipPrivateAddMemoryFont [GDIPLUS.@]
1254 GpStatus WINGDIPAPI GdipPrivateAddMemoryFont(GpFontCollection* fontCollection,
1255 GDIPCONST void* memory, INT length)
1257 WCHAR buf[32], *name;
1258 DWORD count = 0;
1259 HANDLE font;
1260 TRACE("%p, %p, %d\n", fontCollection, memory, length);
1262 if (!fontCollection || !memory || !length)
1263 return InvalidParameter;
1265 name = load_ttf_name_id(memory, length, NAME_ID_FULL_FONT_NAME, buf, sizeof(buf)/sizeof(*buf));
1266 if (!name)
1267 return OutOfMemory;
1269 font = AddFontMemResourceEx((void*)memory, length, NULL, &count);
1270 TRACE("%s: %p/%u\n", debugstr_w(name), font, count);
1271 if (!font || !count)
1272 return InvalidParameter;
1274 if (count)
1276 HDC hdc;
1277 LOGFONTW lfw;
1279 hdc = GetDC(0);
1281 lfw.lfCharSet = DEFAULT_CHARSET;
1282 lstrcpyW(lfw.lfFaceName, name);
1283 lfw.lfPitchAndFamily = 0;
1285 if (!EnumFontFamiliesExW(hdc, &lfw, add_font_proc, (LPARAM)fontCollection, 0))
1287 ReleaseDC(0, hdc);
1288 return OutOfMemory;
1291 ReleaseDC(0, hdc);
1293 return Ok;
1296 /*****************************************************************************
1297 * GdipGetFontCollectionFamilyCount [GDIPLUS.@]
1299 GpStatus WINGDIPAPI GdipGetFontCollectionFamilyCount(
1300 GpFontCollection* fontCollection, INT* numFound)
1302 TRACE("%p, %p\n", fontCollection, numFound);
1304 if (!(fontCollection && numFound))
1305 return InvalidParameter;
1307 *numFound = fontCollection->count;
1308 return Ok;
1311 /*****************************************************************************
1312 * GdipGetFontCollectionFamilyList [GDIPLUS.@]
1314 GpStatus WINGDIPAPI GdipGetFontCollectionFamilyList(
1315 GpFontCollection* fontCollection, INT numSought,
1316 GpFontFamily* gpfamilies[], INT* numFound)
1318 INT i;
1319 GpStatus stat=Ok;
1321 TRACE("%p, %d, %p, %p\n", fontCollection, numSought, gpfamilies, numFound);
1323 if (!(fontCollection && gpfamilies && numFound))
1324 return InvalidParameter;
1326 memset(gpfamilies, 0, sizeof(*gpfamilies) * numSought);
1328 for (i = 0; i < numSought && i < fontCollection->count && stat == Ok; i++)
1330 stat = GdipCloneFontFamily(fontCollection->FontFamilies[i], &gpfamilies[i]);
1333 if (stat == Ok)
1334 *numFound = i;
1335 else
1337 int numToFree=i;
1338 for (i=0; i<numToFree; i++)
1340 GdipDeleteFontFamily(gpfamilies[i]);
1341 gpfamilies[i] = NULL;
1345 return stat;
1348 void free_installed_fonts(void)
1350 while (installedFontCollection.count)
1351 GdipDeleteFontFamily(installedFontCollection.FontFamilies[--installedFontCollection.count]);
1352 HeapFree(GetProcessHeap(), 0, installedFontCollection.FontFamilies);
1353 installedFontCollection.FontFamilies = NULL;
1354 installedFontCollection.allocated = 0;
1357 static INT CALLBACK add_font_proc(const LOGFONTW *lfw, const TEXTMETRICW *ntm,
1358 DWORD type, LPARAM lParam)
1360 GpFontCollection* fonts = (GpFontCollection*)lParam;
1361 int i;
1363 if (type == RASTER_FONTTYPE)
1364 return 1;
1366 /* skip duplicates */
1367 for (i=0; i<fonts->count; i++)
1368 if (strcmpiW(lfw->lfFaceName, fonts->FontFamilies[i]->FamilyName) == 0)
1369 return 1;
1371 if (fonts->allocated == fonts->count)
1373 INT new_alloc_count = fonts->allocated+50;
1374 GpFontFamily** new_family_list = HeapAlloc(GetProcessHeap(), 0, new_alloc_count*sizeof(void*));
1376 if (!new_family_list)
1377 return 0;
1379 memcpy(new_family_list, fonts->FontFamilies, fonts->count*sizeof(void*));
1380 HeapFree(GetProcessHeap(), 0, fonts->FontFamilies);
1381 fonts->FontFamilies = new_family_list;
1382 fonts->allocated = new_alloc_count;
1385 if (GdipCreateFontFamilyFromName(lfw->lfFaceName, NULL, &fonts->FontFamilies[fonts->count]) == Ok)
1386 fonts->count++;
1387 else
1388 return 0;
1390 return 1;
1393 GpStatus WINGDIPAPI GdipNewInstalledFontCollection(
1394 GpFontCollection** fontCollection)
1396 TRACE("(%p)\n",fontCollection);
1398 if (!fontCollection)
1399 return InvalidParameter;
1401 if (installedFontCollection.count == 0)
1403 HDC hdc;
1404 LOGFONTW lfw;
1406 hdc = GetDC(0);
1408 lfw.lfCharSet = DEFAULT_CHARSET;
1409 lfw.lfFaceName[0] = 0;
1410 lfw.lfPitchAndFamily = 0;
1412 if (!EnumFontFamiliesExW(hdc, &lfw, add_font_proc, (LPARAM)&installedFontCollection, 0))
1414 free_installed_fonts();
1415 ReleaseDC(0, hdc);
1416 return OutOfMemory;
1419 ReleaseDC(0, hdc);
1422 *fontCollection = &installedFontCollection;
1424 return Ok;