gdiplus: Don't create a font if there is no facename.
[wine] / dlls / gdiplus / font.c
1 /*
2  * Copyright (C) 2007 Google (Evan Stade)
3  *
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.
8  *
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.
13  *
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
17  */
18
19 #include <stdarg.h>
20
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"
28
29 WINE_DEFAULT_DEBUG_CHANNEL (gdiplus);
30
31 #include "objbase.h"
32
33 #include "gdiplus.h"
34 #include "gdiplus_private.h"
35
36 static const REAL mm_per_inch = 25.4;
37 static const REAL inch_per_point = 1.0/72.0;
38
39 static inline REAL get_dpi (void)
40 {
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);
48
49     return dpi;
50 }
51
52 static inline REAL point_to_pixel (REAL point)
53 {
54     return point * get_dpi() * inch_per_point;
55 }
56
57 static inline REAL inch_to_pixel (REAL inch)
58 {
59     return inch * get_dpi();
60 }
61
62 static inline REAL document_to_pixel (REAL doc)
63 {
64     return doc * (get_dpi() / 300.0); /* Per MSDN */
65 }
66
67 static inline REAL mm_to_pixel (REAL mm)
68 {
69     return mm * (get_dpi() / mm_per_inch);
70 }
71
72 /*******************************************************************************
73  * GdipCreateFont [GDIPLUS.@]
74  *
75  * Create a new font based off of a FontFamily
76  *
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
83  *
84  * RETURNS
85  *  SUCCESS: Ok
86  *  FAILURE: InvalidParameter if fontfamily or font is NULL.
87  *  FAILURE: FontFamilyNotFound if an invalid FontFamily is given
88  *
89  * NOTES
90  *  UnitDisplay is unsupported.
91  *  emSize is stored separately from lfHeight, to hold the fraction.
92  */
93 GpStatus WINGDIPAPI GdipCreateFont(GDIPCONST GpFontFamily *fontFamily,
94                         REAL emSize, INT style, Unit unit, GpFont **font)
95 {
96     WCHAR facename[LF_FACESIZE];
97     LOGFONTW* lfw;
98     const NEWTEXTMETRICW* tmw;
99     GpStatus stat;
100
101     if (!fontFamily || !font)
102         return InvalidParameter;
103
104     TRACE("%p (%s), %f, %d, %d, %p\n", fontFamily,
105             debugstr_w(fontFamily->FamilyName), emSize, style, unit, font);
106
107     stat = GdipGetFamilyName (fontFamily, facename, 0);
108     if (stat != Ok) return stat;
109     *font = GdipAlloc(sizeof(GpFont));
110
111     tmw = &fontFamily->tmw;
112     lfw = &((*font)->lfw);
113     ZeroMemory(&(*lfw), sizeof(*lfw));
114
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);
122
123     switch (unit)
124     {
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;
145     }
146
147     lfw->lfHeight *= -1;
148
149     lfw->lfWeight = style & FontStyleBold ? 700 : 400;
150     lfw->lfItalic = style & FontStyleItalic;
151     lfw->lfUnderline = style & FontStyleUnderline;
152     lfw->lfStrikeOut = style & FontStyleStrikeout;
153
154     (*font)->unit = unit;
155     (*font)->emSize = emSize;
156
157     return Ok;
158 }
159
160 /*******************************************************************************
161  * GdipCreateFontFromLogfontW [GDIPLUS.@]
162  */
163 GpStatus WINGDIPAPI GdipCreateFontFromLogfontW(HDC hdc,
164     GDIPCONST LOGFONTW *logfont, GpFont **font)
165 {
166     HFONT hfont, oldfont;
167     TEXTMETRICW textmet;
168
169     if(!logfont || !font)
170         return InvalidParameter;
171
172     if (logfont->lfFaceName[0] == 0)
173         return NotTrueTypeFont;
174
175     *font = GdipAlloc(sizeof(GpFont));
176     if(!*font)  return OutOfMemory;
177
178     memcpy((*font)->lfw.lfFaceName, logfont->lfFaceName, LF_FACESIZE *
179            sizeof(WCHAR));
180     (*font)->lfw.lfHeight = logfont->lfHeight;
181     (*font)->lfw.lfItalic = logfont->lfItalic;
182     (*font)->lfw.lfUnderline = logfont->lfUnderline;
183     (*font)->lfw.lfStrikeOut = logfont->lfStrikeOut;
184
185     (*font)->emSize = logfont->lfHeight;
186     (*font)->unit = UnitPixel;
187
188     hfont = CreateFontIndirectW(&(*font)->lfw);
189     oldfont = SelectObject(hdc, hfont);
190     GetTextMetricsW(hdc, &textmet);
191
192     (*font)->lfw.lfHeight = -textmet.tmHeight;
193     (*font)->lfw.lfWeight = textmet.tmWeight;
194
195     SelectObject(hdc, oldfont);
196     DeleteObject(hfont);
197
198     return Ok;
199 }
200
201 /*******************************************************************************
202  * GdipCreateFontFromLogfontA [GDIPLUS.@]
203  */
204 GpStatus WINGDIPAPI GdipCreateFontFromLogfontA(HDC hdc,
205     GDIPCONST LOGFONTA *lfa, GpFont **font)
206 {
207     LOGFONTW lfw;
208
209     if(!lfa || !font)
210         return InvalidParameter;
211
212     memcpy(&lfw, lfa, FIELD_OFFSET(LOGFONTA,lfFaceName) );
213
214     if(!MultiByteToWideChar(CP_ACP, 0, lfa->lfFaceName, -1, lfw.lfFaceName, LF_FACESIZE))
215         return GenericError;
216
217     GdipCreateFontFromLogfontW(hdc, &lfw, font);
218
219     return Ok;
220 }
221
222 /*******************************************************************************
223  * GdipDeleteFont [GDIPLUS.@]
224  */
225 GpStatus WINGDIPAPI GdipDeleteFont(GpFont* font)
226 {
227     if(!font)
228         return InvalidParameter;
229
230     GdipFree(font);
231
232     return Ok;
233 }
234
235 /*******************************************************************************
236  * GdipCreateFontFromDC [GDIPLUS.@]
237  */
238 GpStatus WINGDIPAPI GdipCreateFontFromDC(HDC hdc, GpFont **font)
239 {
240     HFONT hfont;
241     LOGFONTW lfw;
242
243     if(!font)
244         return InvalidParameter;
245
246     hfont = (HFONT)GetCurrentObject(hdc, OBJ_FONT);
247     if(!hfont)
248         return GenericError;
249
250     if(!GetObjectW(hfont, sizeof(LOGFONTW), &lfw))
251         return GenericError;
252
253     return GdipCreateFontFromLogfontW(hdc, &lfw, font);
254 }
255
256 /*******************************************************************************
257  * GdipGetFamily [GDIPLUS.@]
258  *
259  * Returns the FontFamily for the specified Font
260  *
261  * PARAMS
262  *  font    [I] Font to request from
263  *  family  [O] Resulting FontFamily object
264  *
265  * RETURNS
266  *  SUCCESS: Ok
267  *  FAILURE: An element of GpStatus
268  */
269 GpStatus WINGDIPAPI GdipGetFamily(GpFont *font, GpFontFamily **family)
270 {
271     TRACE("%p %p\n", font, family);
272
273     if (!(font && family))
274         return InvalidParameter;
275
276     return GdipCreateFontFamilyFromName(font->lfw.lfFaceName, NULL, family);
277 }
278
279 /******************************************************************************
280  * GdipGetFontSize [GDIPLUS.@]
281  *
282  * Returns the size of the font in Units
283  *
284  * PARAMS
285  *  *font       [I] The font to retrieve size from
286  *  *size       [O] Pointer to hold retrieved value
287  *
288  * RETURNS
289  *  SUCCESS: Ok
290  *  FAILURE: InvalidParamter (font or size was NULL)
291  *
292  * NOTES
293  *  Size returned is actually emSize -- not internal size used for drawing.
294  */
295 GpStatus WINGDIPAPI GdipGetFontSize(GpFont *font, REAL *size)
296 {
297     if (!(font && size)) return InvalidParameter;
298
299     *size = font->emSize;
300
301     return Ok;
302 }
303
304 /*******************************************************************************
305  * GdipGetFontStyle [GDIPLUS.@]
306  *
307  * Gets the font's style, returned in bitwise OR of FontStyle enumeration
308  *
309  * PARAMS
310  *  font    [I] font to request from
311  *  style   [O] resulting pointer to a FontStyle enumeration
312  *
313  * RETURNS
314  *  SUCCESS: Ok
315  *  FAILURE: InvalidParameter
316  */
317 GpStatus WINGDIPAPI GdipGetFontStyle(GpFont *font, INT *style)
318 {
319     TRACE("%p %p\n", font, style);
320
321     if (!(font && style))
322         return InvalidParameter;
323
324     if (font->lfw.lfWeight > 400)
325         *style = FontStyleBold;
326     else
327         *style = 0;
328     if (font->lfw.lfItalic)
329         *style |= FontStyleItalic;
330     if (font->lfw.lfUnderline)
331         *style |= FontStyleUnderline;
332     if (font->lfw.lfStrikeOut)
333         *style |= FontStyleStrikeout;
334
335     return Ok;
336 }
337
338 /*******************************************************************************
339  * GdipGetFontUnit  [GDIPLUS.@]
340  *
341  * PARAMS
342  *  font    [I] Font to retrieve from
343  *  unit    [O] Return value
344  *
345  * RETURNS
346  *  FAILURE: font or unit was NULL
347  *  OK: otherwise
348  */
349 GpStatus WINGDIPAPI GdipGetFontUnit(GpFont *font, Unit *unit)
350 {
351     if (!(font && unit)) return InvalidParameter;
352
353     *unit = font->unit;
354
355     return Ok;
356 }
357
358 /*******************************************************************************
359  * GdipGetLogFontW [GDIPLUS.@]
360  */
361 GpStatus WINGDIPAPI GdipGetLogFontW(GpFont *font, GpGraphics *graphics,
362     LOGFONTW *lfw)
363 {
364     /* FIXME: use graphics */
365     if(!font || !graphics || !lfw)
366         return InvalidParameter;
367
368     *lfw = font->lfw;
369
370     return Ok;
371 }
372
373 /*******************************************************************************
374  * GdipCloneFont [GDIPLUS.@]
375  */
376 GpStatus WINGDIPAPI GdipCloneFont(GpFont *font, GpFont **cloneFont)
377 {
378     if(!font || !cloneFont)
379         return InvalidParameter;
380
381     *cloneFont = GdipAlloc(sizeof(GpFont));
382     if(!*cloneFont)    return OutOfMemory;
383
384     **cloneFont = *font;
385
386     return Ok;
387 }
388
389 /*******************************************************************************
390  * GdipGetFontHeight [GDIPLUS.@]
391  * PARAMS
392  *  font        [I] Font to retrieve height from
393  *  graphics    [I] The current graphics context
394  *  height      [O] Resulting height
395  * RETURNS
396  *  SUCCESS: Ok
397  *  FAILURE: Another element of GpStatus
398  *
399  * NOTES
400  *  Forwards to GdipGetFontHeightGivenDPI
401  */
402 GpStatus WINGDIPAPI GdipGetFontHeight(GDIPCONST GpFont *font,
403         GDIPCONST GpGraphics *graphics, REAL *height)
404 {
405     REAL dpi;
406
407     TRACE("%p %p %p\n", font, graphics, height);
408
409     dpi = GetDeviceCaps(graphics->hdc, LOGPIXELSY);
410
411     return GdipGetFontHeightGivenDPI(font, dpi, height);
412 }
413
414 /*******************************************************************************
415  * GdipGetFontHeightGivenDPI [GDIPLUS.@]
416  * PARAMS
417  *  font        [I] Font to retrieve DPI from
418  *  dpi         [I] DPI to assume
419  *  height      [O] Return value
420  *
421  * RETURNS
422  *  SUCCESS: Ok
423  *  FAILURE: InvalidParameter if font or height is NULL
424  *
425  * NOTES
426  *  According to MSDN, the result is (lineSpacing)*(fontSize / emHeight)*dpi
427  *  (for anything other than unit Pixel)
428  */
429 GpStatus WINGDIPAPI GdipGetFontHeightGivenDPI(GDIPCONST GpFont *font, REAL dpi, REAL *height)
430 {
431     if (!(font && height)) return InvalidParameter;
432
433     FIXME("%p (%s), %f, %p\n", font,
434             debugstr_w(font->lfw.lfFaceName), dpi, height);
435
436     return NotImplemented;
437 }
438
439 /***********************************************************************
440  * Borrowed from GDI32:
441  *
442  * Elf is really an ENUMLOGFONTEXW, and ntm is a NEWTEXTMETRICEXW.
443  *     We have to use other types because of the FONTENUMPROCW definition.
444  */
445 static INT CALLBACK is_font_installed_proc(const LOGFONTW *elf,
446                             const TEXTMETRICW *ntm, DWORD type, LPARAM lParam)
447 {
448     if (!ntm)
449     {
450         return 1;
451     }
452
453     *(NEWTEXTMETRICW*)lParam = *(const NEWTEXTMETRICW*)ntm;
454
455     return 0;
456 }
457
458 static BOOL find_installed_font(const WCHAR *name, NEWTEXTMETRICW *ntm)
459 {
460     HDC hdc = GetDC(0);
461     BOOL ret = FALSE;
462
463     if(!EnumFontFamiliesW(hdc, name, is_font_installed_proc, (LPARAM)ntm))
464         ret = TRUE;
465
466     ReleaseDC(0, hdc);
467     return ret;
468 }
469
470 /*******************************************************************************
471  * GdipCreateFontFamilyFromName [GDIPLUS.@]
472  *
473  * Creates a font family object based on a supplied name
474  *
475  * PARAMS
476  *  name               [I] Name of the font
477  *  fontCollection     [I] What font collection (if any) the font belongs to (may be NULL)
478  *  FontFamily         [O] Pointer to the resulting FontFamily object
479  *
480  * RETURNS
481  *  SUCCESS: Ok
482  *  FAILURE: FamilyNotFound if the requested FontFamily does not exist on the system
483  *  FAILURE: Invalid parameter if FontFamily or name is NULL
484  *
485  * NOTES
486  *   If fontCollection is NULL then the object is not part of any collection
487  *
488  */
489
490 GpStatus WINGDIPAPI GdipCreateFontFamilyFromName(GDIPCONST WCHAR *name,
491                                         GpFontCollection *fontCollection,
492                                         GpFontFamily **FontFamily)
493 {
494     GpFontFamily* ffamily;
495     NEWTEXTMETRICW ntm;
496
497     TRACE("%s, %p %p\n", debugstr_w(name), fontCollection, FontFamily);
498
499     if (!(name && FontFamily))
500         return InvalidParameter;
501     if (fontCollection)
502         FIXME("No support for FontCollections yet!\n");
503
504     if (!find_installed_font(name, &ntm))
505         return FontFamilyNotFound;
506
507     ffamily = GdipAlloc(sizeof (GpFontFamily));
508     if (!ffamily) return OutOfMemory;
509
510     ffamily->tmw = ntm;
511     lstrcpynW(ffamily->FamilyName, name, LF_FACESIZE);
512
513     *FontFamily = ffamily;
514
515     return Ok;
516 }
517
518 /*******************************************************************************
519  * GdipCloneFontFamily [GDIPLUS.@]
520  *
521  * Creates a deep copy of a Font Family object
522  *
523  * PARAMS
524  *  FontFamily          [I] Font to clone
525  *  clonedFontFamily    [O] The resulting cloned font
526  *
527  * RETURNS
528  *  SUCCESS: Ok
529  */
530 GpStatus WINGDIPAPI GdipCloneFontFamily(GpFontFamily* FontFamily, GpFontFamily** clonedFontFamily)
531 {
532     if (!(FontFamily && clonedFontFamily)) return InvalidParameter;
533
534     TRACE("stub: %p (%s), %p\n", FontFamily,
535             debugstr_w(FontFamily->FamilyName), clonedFontFamily);
536
537     *clonedFontFamily = GdipAlloc(sizeof(GpFontFamily));
538     if (!*clonedFontFamily) return OutOfMemory;
539
540     (*clonedFontFamily)->tmw = FontFamily->tmw;
541     lstrcpyW((*clonedFontFamily)->FamilyName, FontFamily->FamilyName);
542
543     return Ok;
544 }
545
546 /*******************************************************************************
547  * GdipGetFamilyName [GDIPLUS.@]
548  *
549  * Returns the family name into name
550  *
551  * PARAMS
552  *  *family     [I] Family to retrieve from
553  *  *name       [O] WCHARS of the family name
554  *  LANGID      [I] charset
555  *
556  * RETURNS
557  *  SUCCESS: Ok
558  *  FAILURE: InvalidParameter if family is NULL
559  *
560  * NOTES
561  *   If name is a NULL ptr, then both XP and Vista will crash (so we do as well)
562  */
563 GpStatus WINGDIPAPI GdipGetFamilyName (GDIPCONST GpFontFamily *family,
564                                        WCHAR *name, LANGID language)
565 {
566     if (family == NULL)
567          return InvalidParameter;
568
569     TRACE("%p, %p, %d\n", family, name, language);
570
571     if (language != LANG_NEUTRAL)
572         FIXME("No support for handling of multiple languages!\n");
573
574     lstrcpynW (name, family->FamilyName, LF_FACESIZE);
575
576     return Ok;
577 }
578
579
580 /*****************************************************************************
581  * GdipDeleteFontFamily [GDIPLUS.@]
582  *
583  * Removes the specified FontFamily
584  *
585  * PARAMS
586  *  *FontFamily         [I] The family to delete
587  *
588  * RETURNS
589  *  SUCCESS: Ok
590  *  FAILURE: InvalidParameter if FontFamily is NULL.
591  *
592  */
593 GpStatus WINGDIPAPI GdipDeleteFontFamily(GpFontFamily *FontFamily)
594 {
595     if (!FontFamily)
596         return InvalidParameter;
597     TRACE("Deleting %p (%s)\n", FontFamily, debugstr_w(FontFamily->FamilyName));
598
599     GdipFree (FontFamily);
600
601     return Ok;
602 }
603
604 GpStatus WINGDIPAPI GdipGetCellAscent(GDIPCONST GpFontFamily *family,
605         INT style, UINT16* CellAscent)
606 {
607     if (!(family && CellAscent)) return InvalidParameter;
608
609     *CellAscent = family->tmw.tmAscent;
610
611     return Ok;
612 }
613
614 GpStatus WINGDIPAPI GdipGetCellDescent(GDIPCONST GpFontFamily *family,
615         INT style, UINT16* CellDescent)
616 {
617     if (!(family && CellDescent)) return InvalidParameter;
618
619     *CellDescent = family->tmw.tmDescent;
620
621     return Ok;
622 }
623
624 /*******************************************************************************
625  * GdipGetEmHeight [GDIPLUS.@]
626  *
627  * Gets the height of the specified family in EmHeights
628  *
629  * PARAMS
630  *  family      [I] Family to retrieve from
631  *  style       [I] (optional) style
632  *  EmHeight    [O] return value
633  *
634  * RETURNS
635  *  SUCCESS: Ok
636  *  FAILURE: InvalidParameter
637  */
638 GpStatus WINGDIPAPI GdipGetEmHeight(GDIPCONST GpFontFamily *family, INT style, UINT16* EmHeight)
639 {
640     if (!(family && EmHeight)) return InvalidParameter;
641
642     TRACE("%p (%s), %d, %p, stub!\n", family,
643             debugstr_w(family->FamilyName), style, EmHeight);
644
645     *EmHeight = family->tmw.ntmSizeEM;
646
647     return Ok;
648 }
649
650
651 /*******************************************************************************
652  * GdipGetLineSpacing [GDIPLUS.@]
653  *
654  * Returns the line spacing in design units
655  *
656  * PARAMS
657  *  family      [I] Family to retrieve from
658  *  style       [I] (Optional) font style
659  *  LineSpacing [O] Return value
660  *
661  * RETURNS
662  *  SUCCESS: Ok
663  *  FAILURE: InvalidParameter (family or LineSpacing was NULL)
664  */
665 GpStatus WINGDIPAPI GdipGetLineSpacing(GDIPCONST GpFontFamily *family,
666         INT style, UINT16* LineSpacing)
667 {
668     if (!(family && LineSpacing)) return InvalidParameter;
669
670     FIXME("stub!\n");
671
672     return NotImplemented;
673 }
674
675 GpStatus WINGDIPAPI GdipIsStyleAvailable(GDIPCONST GpFontFamily* family,
676         INT style, BOOL* IsStyleAvailable)
677 {
678     FIXME("%p %d %p stub!\n", family, style, IsStyleAvailable);
679
680     if (!(family && IsStyleAvailable))
681         return InvalidParameter;
682
683     return NotImplemented;
684 }
685
686 /*****************************************************************************
687  * GdipGetGenericFontFamilyMonospace [GDIPLUS.@]
688  *
689  * Obtains a serif family (Courier New on Windows)
690  *
691  * PARAMS
692  *  **nativeFamily         [I] Where the font will be stored
693  *
694  * RETURNS
695  *  InvalidParameter if nativeFamily is NULL.
696  *  Ok otherwise.
697  */
698 GpStatus WINGDIPAPI GdipGetGenericFontFamilyMonospace(GpFontFamily **nativeFamily)
699 {
700     static const WCHAR CourierNew[] = {'C','o','u','r','i','e','r',' ','N','e','w','\0'};
701
702     if (nativeFamily == NULL) return InvalidParameter;
703
704     return GdipCreateFontFamilyFromName(CourierNew, NULL, nativeFamily);
705 }
706
707 /*****************************************************************************
708  * GdipGetGenericFontFamilySerif [GDIPLUS.@]
709  *
710  * Obtains a serif family (Times New Roman on Windows)
711  *
712  * PARAMS
713  *  **nativeFamily         [I] Where the font will be stored
714  *
715  * RETURNS
716  *  InvalidParameter if nativeFamily is NULL.
717  *  Ok otherwise.
718  */
719 GpStatus WINGDIPAPI GdipGetGenericFontFamilySerif(GpFontFamily **nativeFamily)
720 {
721     static const WCHAR TimesNewRoman[] = {'T','i','m','e','s',' ','N','e','w',' ','R','o','m','a','n','\0'};
722
723     if (nativeFamily == NULL) return InvalidParameter;
724
725     return GdipCreateFontFamilyFromName(TimesNewRoman, NULL, nativeFamily);
726 }
727
728 /*****************************************************************************
729  * GdipGetGenericFontFamilySansSerif [GDIPLUS.@]
730  *
731  * Obtains a serif family (Microsoft Sans Serif on Windows)
732  *
733  * PARAMS
734  *  **nativeFamily         [I] Where the font will be stored
735  *
736  * RETURNS
737  *  InvalidParameter if nativeFamily is NULL.
738  *  Ok otherwise.
739  */
740 GpStatus WINGDIPAPI GdipGetGenericFontFamilySansSerif(GpFontFamily **nativeFamily)
741 {
742     /* FIXME: On Windows this is called Microsoft Sans Serif, this shouldn't
743      * affect anything */
744     static const WCHAR MSSansSerif[] = {'M','S',' ','S','a','n','s',' ','S','e','r','i','f','\0'};
745
746     if (nativeFamily == NULL) return InvalidParameter;
747
748     return GdipCreateFontFamilyFromName(MSSansSerif, NULL, nativeFamily);
749 }
750
751 /*****************************************************************************
752  * GdipGetGenericFontFamilySansSerif [GDIPLUS.@]
753  */
754 GpStatus WINGDIPAPI GdipNewPrivateFontCollection(GpFontCollection** fontCollection)
755 {
756     FIXME("stub %p\n", fontCollection);
757
758     if (!fontCollection)
759         return InvalidParameter;
760
761     return NotImplemented;
762 }
763
764 /*****************************************************************************
765  * GdipDeletePrivateFontCollection [GDIPLUS.@]
766  */
767 GpStatus WINGDIPAPI GdipDeletePrivateFontCollection(GpFontCollection **fontCollection)
768 {
769     FIXME("stub %p\n", fontCollection);
770
771     if (!fontCollection)
772         return InvalidParameter;
773
774     return NotImplemented;
775 }
776
777 /*****************************************************************************
778  * GdipPrivateAddFontFile [GDIPLUS.@]
779  */
780 GpStatus WINGDIPAPI GdipPrivateAddFontFile(GpFontCollection* fontCollection,
781         GDIPCONST WCHAR* filename)
782 {
783     FIXME("stub: %p, %s\n", fontCollection, debugstr_w(filename));
784
785     if (!(fontCollection && filename))
786         return InvalidParameter;
787
788     return NotImplemented;
789 }
790
791 /*****************************************************************************
792  * GdipGetFontCollectionFamilyCount [GDIPLUS.@]
793  */
794 GpStatus WINGDIPAPI GdipGetFontCollectionFamilyCount(
795         GpFontCollection* fontCollection, INT* numFound)
796 {
797     FIXME("stub: %p, %p\n", fontCollection, numFound);
798
799     if (!(fontCollection && numFound))
800         return InvalidParameter;
801
802     return NotImplemented;
803 }
804
805 /*****************************************************************************
806  * GdipGetFontCollectionFamilyList [GDIPLUS.@]
807  */
808 GpStatus WINGDIPAPI GdipGetFontCollectionFamilyList(
809         GpFontCollection* fontCollection, INT numSought,
810         GpFontFamily* gpfamilies[], INT* numFound)
811 {
812     FIXME("stub: %p, %d, %p, %p\n", fontCollection, numSought, gpfamilies,
813             numFound);
814
815     if (!(fontCollection && gpfamilies && numFound))
816         return InvalidParameter;
817
818     return NotImplemented;
819 }