cfgmgr32: Forward CM_Locate_DevNodeA/W to setupapi.
[wine/wine64.git] / dlls / gdiplus / font.c
blob22fd393694928ec9b59ce13c24c6926784aff124
1 /*
2 * Copyright (C) 2007 Google (Evan Stade)
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #include <stdarg.h>
21 #include "windef.h"
22 #include "winbase.h"
23 #include "wingdi.h"
24 #include "winnls.h"
25 #include "winreg.h"
26 #include "wine/debug.h"
27 #include "wine/unicode.h"
29 WINE_DEFAULT_DEBUG_CHANNEL (gdiplus);
31 #include "objbase.h"
33 #include "gdiplus.h"
34 #include "gdiplus_private.h"
36 static const REAL mm_per_inch = 25.4;
37 static const REAL inch_per_point = 1.0/72.0;
39 static inline REAL get_dpi (void)
41 REAL dpi;
42 GpGraphics *graphics;
43 HDC hdc = GetDC(0);
44 GdipCreateFromHDC (hdc, &graphics);
45 GdipGetDpiX(graphics, &dpi);
46 GdipDeleteGraphics(graphics);
47 ReleaseDC (0, hdc);
49 return dpi;
52 static inline REAL point_to_pixel (REAL point)
54 return point * get_dpi() * inch_per_point;
57 static inline REAL inch_to_pixel (REAL inch)
59 return inch * get_dpi();
62 static inline REAL document_to_pixel (REAL doc)
64 return doc * (get_dpi() / 300.0); /* Per MSDN */
67 static inline REAL mm_to_pixel (REAL mm)
69 return mm * (get_dpi() / mm_per_inch);
72 /*******************************************************************************
73 * GdipCreateFont [GDIPLUS.@]
75 * Create a new font based off of a FontFamily
77 * PARAMS
78 * *fontFamily [I] Family to base the font off of
79 * emSize [I] Size of the font
80 * style [I] Bitwise OR of FontStyle enumeration
81 * unit [I] Unit emSize is measured in
82 * **font [I] the resulting Font object
84 * RETURNS
85 * SUCCESS: Ok
86 * FAILURE: InvalidParameter if fontfamily or font is NULL.
87 * FAILURE: FontFamilyNotFound if an invalid FontFamily is given
89 * NOTES
90 * UnitDisplay is unsupported.
91 * emSize is stored separately from lfHeight, to hold the fraction.
93 GpStatus WINGDIPAPI GdipCreateFont(GDIPCONST GpFontFamily *fontFamily,
94 REAL emSize, INT style, Unit unit, GpFont **font)
96 WCHAR facename[LF_FACESIZE];
97 LOGFONTW* lfw;
98 const NEWTEXTMETRICW* tmw;
99 GpStatus stat;
101 if (!fontFamily || !font)
102 return InvalidParameter;
104 TRACE("%p (%s), %f, %d, %d, %p\n", fontFamily,
105 debugstr_w(fontFamily->FamilyName), emSize, style, unit, font);
107 stat = GdipGetFamilyName (fontFamily, facename, 0);
108 if (stat != Ok) return stat;
109 *font = GdipAlloc(sizeof(GpFont));
111 tmw = &fontFamily->tmw;
112 lfw = &((*font)->lfw);
113 ZeroMemory(&(*lfw), sizeof(*lfw));
115 lfw->lfWeight = tmw->tmWeight;
116 lfw->lfItalic = tmw->tmItalic;
117 lfw->lfUnderline = tmw->tmUnderlined;
118 lfw->lfStrikeOut = tmw->tmStruckOut;
119 lfw->lfCharSet = tmw->tmCharSet;
120 lfw->lfPitchAndFamily = tmw->tmPitchAndFamily;
121 lstrcpynW(lfw->lfFaceName, facename, LF_FACESIZE);
123 switch (unit)
125 case UnitWorld:
126 /* FIXME: Figure out when World != Pixel */
127 lfw->lfHeight = emSize; break;
128 case UnitDisplay:
129 FIXME("Unknown behavior for UnitDisplay! Please report!\n");
130 /* FIXME: Figure out how this works...
131 * MSDN says that if "DISPLAY" is a monitor, then pixel should be
132 * used. That's not what I got. Tests on Windows revealed no output,
133 * and the tests in tests/font crash windows */
134 lfw->lfHeight = 0; break;
135 case UnitPixel:
136 lfw->lfHeight = emSize; break;
137 case UnitPoint:
138 lfw->lfHeight = point_to_pixel(emSize); break;
139 case UnitInch:
140 lfw->lfHeight = inch_to_pixel(emSize); break;
141 case UnitDocument:
142 lfw->lfHeight = document_to_pixel(emSize); break;
143 case UnitMillimeter:
144 lfw->lfHeight = mm_to_pixel(emSize); break;
147 lfw->lfHeight *= -1;
149 lfw->lfWeight = style & FontStyleBold ? 700 : 400;
150 lfw->lfItalic = style & FontStyleItalic;
151 lfw->lfUnderline = style & FontStyleUnderline;
152 lfw->lfStrikeOut = style & FontStyleStrikeout;
154 (*font)->unit = unit;
155 (*font)->emSize = emSize;
156 (*font)->height = tmw->ntmSizeEM;
157 (*font)->line_spacing = tmw->tmAscent + tmw->tmDescent + tmw->tmExternalLeading;
159 return Ok;
162 /*******************************************************************************
163 * GdipCreateFontFromLogfontW [GDIPLUS.@]
165 GpStatus WINGDIPAPI GdipCreateFontFromLogfontW(HDC hdc,
166 GDIPCONST LOGFONTW *logfont, GpFont **font)
168 HFONT hfont, oldfont;
169 TEXTMETRICW textmet;
171 TRACE("(%p, %p, %p)\n", hdc, logfont, font);
173 if(!logfont || !font)
174 return InvalidParameter;
176 if (logfont->lfFaceName[0] == 0)
177 return NotTrueTypeFont;
179 *font = GdipAlloc(sizeof(GpFont));
180 if(!*font) return OutOfMemory;
182 memcpy((*font)->lfw.lfFaceName, logfont->lfFaceName, LF_FACESIZE *
183 sizeof(WCHAR));
184 (*font)->lfw.lfHeight = logfont->lfHeight;
185 (*font)->lfw.lfItalic = logfont->lfItalic;
186 (*font)->lfw.lfUnderline = logfont->lfUnderline;
187 (*font)->lfw.lfStrikeOut = logfont->lfStrikeOut;
189 (*font)->emSize = logfont->lfHeight;
190 (*font)->unit = UnitPixel;
192 hfont = CreateFontIndirectW(&(*font)->lfw);
193 oldfont = SelectObject(hdc, hfont);
194 GetTextMetricsW(hdc, &textmet);
196 (*font)->lfw.lfHeight = -textmet.tmHeight;
197 (*font)->lfw.lfWeight = textmet.tmWeight;
198 (*font)->lfw.lfCharSet = textmet.tmCharSet;
200 (*font)->height = 1; /* FIXME: need NEWTEXTMETRIC.ntmSizeEM here */
201 (*font)->line_spacing = textmet.tmAscent + textmet.tmDescent + textmet.tmExternalLeading;
203 SelectObject(hdc, oldfont);
204 DeleteObject(hfont);
206 return Ok;
209 /*******************************************************************************
210 * GdipCreateFontFromLogfontA [GDIPLUS.@]
212 GpStatus WINGDIPAPI GdipCreateFontFromLogfontA(HDC hdc,
213 GDIPCONST LOGFONTA *lfa, GpFont **font)
215 LOGFONTW lfw;
217 TRACE("(%p, %p, %p)\n", hdc, lfa, font);
219 if(!lfa || !font)
220 return InvalidParameter;
222 memcpy(&lfw, lfa, FIELD_OFFSET(LOGFONTA,lfFaceName) );
224 if(!MultiByteToWideChar(CP_ACP, 0, lfa->lfFaceName, -1, lfw.lfFaceName, LF_FACESIZE))
225 return GenericError;
227 GdipCreateFontFromLogfontW(hdc, &lfw, font);
229 return Ok;
232 /*******************************************************************************
233 * GdipDeleteFont [GDIPLUS.@]
235 GpStatus WINGDIPAPI GdipDeleteFont(GpFont* font)
237 TRACE("(%p)\n", font);
239 if(!font)
240 return InvalidParameter;
242 GdipFree(font);
244 return Ok;
247 /*******************************************************************************
248 * GdipCreateFontFromDC [GDIPLUS.@]
250 GpStatus WINGDIPAPI GdipCreateFontFromDC(HDC hdc, GpFont **font)
252 HFONT hfont;
253 LOGFONTW lfw;
255 TRACE("(%p, %p)\n", hdc, font);
257 if(!font)
258 return InvalidParameter;
260 hfont = GetCurrentObject(hdc, OBJ_FONT);
261 if(!hfont)
262 return GenericError;
264 if(!GetObjectW(hfont, sizeof(LOGFONTW), &lfw))
265 return GenericError;
267 return GdipCreateFontFromLogfontW(hdc, &lfw, font);
270 /*******************************************************************************
271 * GdipGetFamily [GDIPLUS.@]
273 * Returns the FontFamily for the specified Font
275 * PARAMS
276 * font [I] Font to request from
277 * family [O] Resulting FontFamily object
279 * RETURNS
280 * SUCCESS: Ok
281 * FAILURE: An element of GpStatus
283 GpStatus WINGDIPAPI GdipGetFamily(GpFont *font, GpFontFamily **family)
285 TRACE("%p %p\n", font, family);
287 if (!(font && family))
288 return InvalidParameter;
290 return GdipCreateFontFamilyFromName(font->lfw.lfFaceName, NULL, family);
293 /******************************************************************************
294 * GdipGetFontSize [GDIPLUS.@]
296 * Returns the size of the font in Units
298 * PARAMS
299 * *font [I] The font to retrieve size from
300 * *size [O] Pointer to hold retrieved value
302 * RETURNS
303 * SUCCESS: Ok
304 * FAILURE: InvalidParamter (font or size was NULL)
306 * NOTES
307 * Size returned is actually emSize -- not internal size used for drawing.
309 GpStatus WINGDIPAPI GdipGetFontSize(GpFont *font, REAL *size)
311 TRACE("(%p, %p)\n", font, size);
313 if (!(font && size)) return InvalidParameter;
315 *size = font->emSize;
317 return Ok;
320 /*******************************************************************************
321 * GdipGetFontStyle [GDIPLUS.@]
323 * Gets the font's style, returned in bitwise OR of FontStyle enumeration
325 * PARAMS
326 * font [I] font to request from
327 * style [O] resulting pointer to a FontStyle enumeration
329 * RETURNS
330 * SUCCESS: Ok
331 * FAILURE: InvalidParameter
333 GpStatus WINGDIPAPI GdipGetFontStyle(GpFont *font, INT *style)
335 TRACE("%p %p\n", font, style);
337 if (!(font && style))
338 return InvalidParameter;
340 if (font->lfw.lfWeight > 400)
341 *style = FontStyleBold;
342 else
343 *style = 0;
344 if (font->lfw.lfItalic)
345 *style |= FontStyleItalic;
346 if (font->lfw.lfUnderline)
347 *style |= FontStyleUnderline;
348 if (font->lfw.lfStrikeOut)
349 *style |= FontStyleStrikeout;
351 return Ok;
354 /*******************************************************************************
355 * GdipGetFontUnit [GDIPLUS.@]
357 * PARAMS
358 * font [I] Font to retrieve from
359 * unit [O] Return value
361 * RETURNS
362 * FAILURE: font or unit was NULL
363 * OK: otherwise
365 GpStatus WINGDIPAPI GdipGetFontUnit(GpFont *font, Unit *unit)
367 TRACE("(%p, %p)\n", font, unit);
369 if (!(font && unit)) return InvalidParameter;
371 *unit = font->unit;
373 return Ok;
376 /*******************************************************************************
377 * GdipGetLogFontW [GDIPLUS.@]
379 GpStatus WINGDIPAPI GdipGetLogFontW(GpFont *font, GpGraphics *graphics,
380 LOGFONTW *lfw)
382 TRACE("(%p, %p, %p)\n", font, graphics, lfw);
384 /* FIXME: use graphics */
385 if(!font || !graphics || !lfw)
386 return InvalidParameter;
388 *lfw = font->lfw;
390 return Ok;
393 /*******************************************************************************
394 * GdipCloneFont [GDIPLUS.@]
396 GpStatus WINGDIPAPI GdipCloneFont(GpFont *font, GpFont **cloneFont)
398 TRACE("(%p, %p)\n", font, cloneFont);
400 if(!font || !cloneFont)
401 return InvalidParameter;
403 *cloneFont = GdipAlloc(sizeof(GpFont));
404 if(!*cloneFont) return OutOfMemory;
406 **cloneFont = *font;
408 return Ok;
411 /*******************************************************************************
412 * GdipGetFontHeight [GDIPLUS.@]
413 * PARAMS
414 * font [I] Font to retrieve height from
415 * graphics [I] The current graphics context
416 * height [O] Resulting height
417 * RETURNS
418 * SUCCESS: Ok
419 * FAILURE: Another element of GpStatus
421 * NOTES
422 * Forwards to GdipGetFontHeightGivenDPI
424 GpStatus WINGDIPAPI GdipGetFontHeight(GDIPCONST GpFont *font,
425 GDIPCONST GpGraphics *graphics, REAL *height)
427 REAL dpi;
429 TRACE("%p %p %p\n", font, graphics, height);
431 dpi = GetDeviceCaps(graphics->hdc, LOGPIXELSY);
433 return GdipGetFontHeightGivenDPI(font, dpi, height);
436 /*******************************************************************************
437 * GdipGetFontHeightGivenDPI [GDIPLUS.@]
438 * PARAMS
439 * font [I] Font to retrieve DPI from
440 * dpi [I] DPI to assume
441 * height [O] Return value
443 * RETURNS
444 * SUCCESS: Ok
445 * FAILURE: InvalidParameter if font or height is NULL
447 * NOTES
448 * According to MSDN, the result is (lineSpacing)*(fontSize / emHeight)*dpi
449 * (for anything other than unit Pixel)
451 GpStatus WINGDIPAPI GdipGetFontHeightGivenDPI(GDIPCONST GpFont *font, REAL dpi, REAL *height)
453 REAL font_height;
455 TRACE("%p (%s), %f, %p\n", font,
456 debugstr_w(font->lfw.lfFaceName), dpi, height);
458 if (!(font && height)) return InvalidParameter;
460 font_height = font->line_spacing * (font->emSize / font->height);
462 switch (font->unit)
464 case UnitPixel:
465 *height = font_height;
466 break;
467 case UnitPoint:
468 *height = font_height * dpi * inch_per_point;
469 break;
470 case UnitInch:
471 *height = font_height * dpi;
472 break;
473 case UnitDocument:
474 *height = font_height * (dpi / 300.0);
475 break;
476 case UnitMillimeter:
477 *height = font_height * (dpi / mm_per_inch);
478 break;
479 default:
480 FIXME("Unhandled unit type: %d\n", font->unit);
481 return NotImplemented;
484 return Ok;
487 /***********************************************************************
488 * Borrowed from GDI32:
490 * Elf is really an ENUMLOGFONTEXW, and ntm is a NEWTEXTMETRICEXW.
491 * We have to use other types because of the FONTENUMPROCW definition.
493 static INT CALLBACK is_font_installed_proc(const LOGFONTW *elf,
494 const TEXTMETRICW *ntm, DWORD type, LPARAM lParam)
496 if (!ntm)
498 return 1;
501 *(NEWTEXTMETRICW*)lParam = *(const NEWTEXTMETRICW*)ntm;
503 return 0;
506 static BOOL find_installed_font(const WCHAR *name, NEWTEXTMETRICW *ntm)
508 HDC hdc = GetDC(0);
509 BOOL ret = FALSE;
511 if(!EnumFontFamiliesW(hdc, name, is_font_installed_proc, (LPARAM)ntm))
512 ret = TRUE;
514 ReleaseDC(0, hdc);
515 return ret;
518 /*******************************************************************************
519 * GdipCreateFontFamilyFromName [GDIPLUS.@]
521 * Creates a font family object based on a supplied name
523 * PARAMS
524 * name [I] Name of the font
525 * fontCollection [I] What font collection (if any) the font belongs to (may be NULL)
526 * FontFamily [O] Pointer to the resulting FontFamily object
528 * RETURNS
529 * SUCCESS: Ok
530 * FAILURE: FamilyNotFound if the requested FontFamily does not exist on the system
531 * FAILURE: Invalid parameter if FontFamily or name is NULL
533 * NOTES
534 * If fontCollection is NULL then the object is not part of any collection
538 GpStatus WINGDIPAPI GdipCreateFontFamilyFromName(GDIPCONST WCHAR *name,
539 GpFontCollection *fontCollection,
540 GpFontFamily **FontFamily)
542 GpFontFamily* ffamily;
543 NEWTEXTMETRICW ntm;
545 TRACE("%s, %p %p\n", debugstr_w(name), fontCollection, FontFamily);
547 if (!(name && FontFamily))
548 return InvalidParameter;
549 if (fontCollection)
550 FIXME("No support for FontCollections yet!\n");
552 if (!find_installed_font(name, &ntm))
553 return FontFamilyNotFound;
555 ffamily = GdipAlloc(sizeof (GpFontFamily));
556 if (!ffamily) return OutOfMemory;
558 ffamily->tmw = ntm;
559 lstrcpynW(ffamily->FamilyName, name, LF_FACESIZE);
561 *FontFamily = ffamily;
563 return Ok;
566 /*******************************************************************************
567 * GdipCloneFontFamily [GDIPLUS.@]
569 * Creates a deep copy of a Font Family object
571 * PARAMS
572 * FontFamily [I] Font to clone
573 * clonedFontFamily [O] The resulting cloned font
575 * RETURNS
576 * SUCCESS: Ok
578 GpStatus WINGDIPAPI GdipCloneFontFamily(GpFontFamily* FontFamily, GpFontFamily** clonedFontFamily)
580 if (!(FontFamily && clonedFontFamily)) return InvalidParameter;
582 TRACE("stub: %p (%s), %p\n", FontFamily,
583 debugstr_w(FontFamily->FamilyName), clonedFontFamily);
585 *clonedFontFamily = GdipAlloc(sizeof(GpFontFamily));
586 if (!*clonedFontFamily) return OutOfMemory;
588 (*clonedFontFamily)->tmw = FontFamily->tmw;
589 lstrcpyW((*clonedFontFamily)->FamilyName, FontFamily->FamilyName);
591 return Ok;
594 /*******************************************************************************
595 * GdipGetFamilyName [GDIPLUS.@]
597 * Returns the family name into name
599 * PARAMS
600 * *family [I] Family to retrieve from
601 * *name [O] WCHARS of the family name
602 * LANGID [I] charset
604 * RETURNS
605 * SUCCESS: Ok
606 * FAILURE: InvalidParameter if family is NULL
608 * NOTES
609 * If name is a NULL ptr, then both XP and Vista will crash (so we do as well)
611 GpStatus WINGDIPAPI GdipGetFamilyName (GDIPCONST GpFontFamily *family,
612 WCHAR *name, LANGID language)
614 if (family == NULL)
615 return InvalidParameter;
617 TRACE("%p, %p, %d\n", family, name, language);
619 if (language != LANG_NEUTRAL)
620 FIXME("No support for handling of multiple languages!\n");
622 lstrcpynW (name, family->FamilyName, LF_FACESIZE);
624 return Ok;
628 /*****************************************************************************
629 * GdipDeleteFontFamily [GDIPLUS.@]
631 * Removes the specified FontFamily
633 * PARAMS
634 * *FontFamily [I] The family to delete
636 * RETURNS
637 * SUCCESS: Ok
638 * FAILURE: InvalidParameter if FontFamily is NULL.
641 GpStatus WINGDIPAPI GdipDeleteFontFamily(GpFontFamily *FontFamily)
643 if (!FontFamily)
644 return InvalidParameter;
645 TRACE("Deleting %p (%s)\n", FontFamily, debugstr_w(FontFamily->FamilyName));
647 GdipFree (FontFamily);
649 return Ok;
652 GpStatus WINGDIPAPI GdipGetCellAscent(GDIPCONST GpFontFamily *family,
653 INT style, UINT16* CellAscent)
655 if (!(family && CellAscent)) return InvalidParameter;
657 *CellAscent = family->tmw.tmAscent;
659 return Ok;
662 GpStatus WINGDIPAPI GdipGetCellDescent(GDIPCONST GpFontFamily *family,
663 INT style, UINT16* CellDescent)
665 TRACE("(%p, %d, %p)\n", family, style, CellDescent);
667 if (!(family && CellDescent)) return InvalidParameter;
669 *CellDescent = family->tmw.tmDescent;
671 return Ok;
674 /*******************************************************************************
675 * GdipGetEmHeight [GDIPLUS.@]
677 * Gets the height of the specified family in EmHeights
679 * PARAMS
680 * family [I] Family to retrieve from
681 * style [I] (optional) style
682 * EmHeight [O] return value
684 * RETURNS
685 * SUCCESS: Ok
686 * FAILURE: InvalidParameter
688 GpStatus WINGDIPAPI GdipGetEmHeight(GDIPCONST GpFontFamily *family, INT style, UINT16* EmHeight)
690 if (!(family && EmHeight)) return InvalidParameter;
692 TRACE("%p (%s), %d, %p\n", family, debugstr_w(family->FamilyName), style, EmHeight);
694 *EmHeight = family->tmw.ntmSizeEM;
696 return Ok;
700 /*******************************************************************************
701 * GdipGetLineSpacing [GDIPLUS.@]
703 * Returns the line spacing in design units
705 * PARAMS
706 * family [I] Family to retrieve from
707 * style [I] (Optional) font style
708 * LineSpacing [O] Return value
710 * RETURNS
711 * SUCCESS: Ok
712 * FAILURE: InvalidParameter (family or LineSpacing was NULL)
714 GpStatus WINGDIPAPI GdipGetLineSpacing(GDIPCONST GpFontFamily *family,
715 INT style, UINT16* LineSpacing)
717 TRACE("%p, %d, %p\n", family, style, LineSpacing);
719 if (!(family && LineSpacing))
720 return InvalidParameter;
722 if (style) FIXME("ignoring style\n");
724 *LineSpacing = family->tmw.tmAscent + family->tmw.tmDescent + family->tmw.tmExternalLeading;
726 return Ok;
729 GpStatus WINGDIPAPI GdipIsStyleAvailable(GDIPCONST GpFontFamily* family,
730 INT style, BOOL* IsStyleAvailable)
732 FIXME("%p %d %p stub!\n", family, style, IsStyleAvailable);
734 if (!(family && IsStyleAvailable))
735 return InvalidParameter;
737 return NotImplemented;
740 /*****************************************************************************
741 * GdipGetGenericFontFamilyMonospace [GDIPLUS.@]
743 * Obtains a serif family (Courier New on Windows)
745 * PARAMS
746 * **nativeFamily [I] Where the font will be stored
748 * RETURNS
749 * InvalidParameter if nativeFamily is NULL.
750 * Ok otherwise.
752 GpStatus WINGDIPAPI GdipGetGenericFontFamilyMonospace(GpFontFamily **nativeFamily)
754 static const WCHAR CourierNew[] = {'C','o','u','r','i','e','r',' ','N','e','w','\0'};
756 if (nativeFamily == NULL) return InvalidParameter;
758 return GdipCreateFontFamilyFromName(CourierNew, NULL, nativeFamily);
761 /*****************************************************************************
762 * GdipGetGenericFontFamilySerif [GDIPLUS.@]
764 * Obtains a serif family (Times New Roman on Windows)
766 * PARAMS
767 * **nativeFamily [I] Where the font will be stored
769 * RETURNS
770 * InvalidParameter if nativeFamily is NULL.
771 * Ok otherwise.
773 GpStatus WINGDIPAPI GdipGetGenericFontFamilySerif(GpFontFamily **nativeFamily)
775 static const WCHAR TimesNewRoman[] = {'T','i','m','e','s',' ','N','e','w',' ','R','o','m','a','n','\0'};
777 TRACE("(%p)\n", nativeFamily);
779 if (nativeFamily == NULL) return InvalidParameter;
781 return GdipCreateFontFamilyFromName(TimesNewRoman, NULL, nativeFamily);
784 /*****************************************************************************
785 * GdipGetGenericFontFamilySansSerif [GDIPLUS.@]
787 * Obtains a serif family (Microsoft Sans Serif on Windows)
789 * PARAMS
790 * **nativeFamily [I] Where the font will be stored
792 * RETURNS
793 * InvalidParameter if nativeFamily is NULL.
794 * Ok otherwise.
796 GpStatus WINGDIPAPI GdipGetGenericFontFamilySansSerif(GpFontFamily **nativeFamily)
798 /* FIXME: On Windows this is called Microsoft Sans Serif, this shouldn't
799 * affect anything */
800 static const WCHAR MSSansSerif[] = {'M','S',' ','S','a','n','s',' ','S','e','r','i','f','\0'};
802 TRACE("(%p)\n", nativeFamily);
804 if (nativeFamily == NULL) return InvalidParameter;
806 return GdipCreateFontFamilyFromName(MSSansSerif, NULL, nativeFamily);
809 /*****************************************************************************
810 * GdipGetGenericFontFamilySansSerif [GDIPLUS.@]
812 GpStatus WINGDIPAPI GdipNewPrivateFontCollection(GpFontCollection** fontCollection)
814 TRACE("%p\n", fontCollection);
816 if (!fontCollection)
817 return InvalidParameter;
819 *fontCollection = GdipAlloc(sizeof(GpFontCollection));
820 if (!*fontCollection) return OutOfMemory;
822 (*fontCollection)->FontFamilies = NULL;
823 (*fontCollection)->count = 0;
824 return Ok;
827 /*****************************************************************************
828 * GdipDeletePrivateFontCollection [GDIPLUS.@]
830 GpStatus WINGDIPAPI GdipDeletePrivateFontCollection(GpFontCollection **fontCollection)
832 INT i;
834 TRACE("%p\n", fontCollection);
836 if (!fontCollection)
837 return InvalidParameter;
839 for (i = 0; i < (*fontCollection)->count; i++) GdipFree((*fontCollection)->FontFamilies[i]);
840 GdipFree(*fontCollection);
842 return Ok;
845 /*****************************************************************************
846 * GdipPrivateAddFontFile [GDIPLUS.@]
848 GpStatus WINGDIPAPI GdipPrivateAddFontFile(GpFontCollection* fontCollection,
849 GDIPCONST WCHAR* filename)
851 FIXME("stub: %p, %s\n", fontCollection, debugstr_w(filename));
853 if (!(fontCollection && filename))
854 return InvalidParameter;
856 return NotImplemented;
859 /*****************************************************************************
860 * GdipPrivateAddMemoryFont [GDIPLUS.@]
862 GpStatus WINGDIPAPI GdipPrivateAddMemoryFont(GpFontCollection* fontCollection,
863 GDIPCONST void* memory, INT length)
865 FIXME("%p, %p, %d\n", fontCollection, memory, length);
867 if (!(fontCollection && memory && length))
868 return InvalidParameter;
870 return Ok;
873 /*****************************************************************************
874 * GdipGetFontCollectionFamilyCount [GDIPLUS.@]
876 GpStatus WINGDIPAPI GdipGetFontCollectionFamilyCount(
877 GpFontCollection* fontCollection, INT* numFound)
879 TRACE("%p, %p\n", fontCollection, numFound);
881 if (!(fontCollection && numFound))
882 return InvalidParameter;
884 *numFound = fontCollection->count;
885 return Ok;
888 /*****************************************************************************
889 * GdipGetFontCollectionFamilyList [GDIPLUS.@]
891 GpStatus WINGDIPAPI GdipGetFontCollectionFamilyList(
892 GpFontCollection* fontCollection, INT numSought,
893 GpFontFamily* gpfamilies[], INT* numFound)
895 INT i;
897 TRACE("%p, %d, %p, %p\n", fontCollection, numSought, gpfamilies, numFound);
899 if (!(fontCollection && gpfamilies && numFound))
900 return InvalidParameter;
902 for (i = 0; i < numSought && i < fontCollection->count; i++)
904 gpfamilies[i] = fontCollection->FontFamilies[i];
906 *numFound = i;
907 return Ok;
910 GpStatus WINGDIPAPI GdipNewInstalledFontCollection(
911 GpFontCollection** fontCollection)
913 FIXME("stub: %p\n",fontCollection);
915 if (!fontCollection)
916 return InvalidParameter;
918 return NotImplemented;