]> git.saurik.com Git - wxWidgets.git/blame - src/mac/carbon/fontenum.cpp
Include wx/icon.h according to precompiled headers of wx/wx.h (with other minor clean...
[wxWidgets.git] / src / mac / carbon / fontenum.cpp
Content-type: text/html ]> git.saurik.com Git - wxWidgets.git/blame - src/mac/carbon/fontenum.cpp


500 - Internal Server Error

Malformed UTF-8 character (fatal) at /usr/lib/x86_64-linux-gnu/perl5/5.40/HTML/Entities.pm line 485, <$fd> line 279.
CommitLineData
ee6b1d97 1///////////////////////////////////////////////////////////////////////////////
1089fc00 2// Name: src/mac/carbon/fontenum.cpp
ee6b1d97
SC
3// Purpose: wxFontEnumerator class for MacOS
4// Author: Stefan Csomor
1089fc00 5// Modified by:
ee6b1d97
SC
6// Created: 04/01/98
7// RCS-ID: $Id$
8// Copyright: (c) Stefan Csomor
65571936 9// Licence: wxWindows licence
ee6b1d97
SC
10///////////////////////////////////////////////////////////////////////////////
11
ee6b1d97
SC
12// For compilers that support precompilation, includes "wx.h".
13#include "wx/wxprec.h"
14
179e085f
RN
15#if wxUSE_FONTMAP
16
88a7a4e1
WS
17#include "wx/fontenum.h"
18
ee6b1d97 19#ifndef WX_PRECOMP
88a7a4e1
WS
20 #include "wx/font.h"
21 #include "wx/intl.h"
ee6b1d97
SC
22#endif
23
5b781a67 24#include "wx/fontutil.h"
ee6b1d97 25#include "wx/fontmap.h"
b12ce1d3 26#include "wx/encinfo.h"
ee6b1d97 27
76a5e5d2
SC
28#include "wx/mac/private.h"
29
ee6b1d97 30// ----------------------------------------------------------------------------
753d02e8 31// wxFontEnumerator
ee6b1d97
SC
32// ----------------------------------------------------------------------------
33
753d02e8
SC
34bool wxFontEnumerator::EnumerateFacenames(wxFontEncoding encoding,
35 bool fixedWidthOnly)
ee6b1d97 36{
753d02e8
SC
37 //
38 // From Apple's QA 1471 http://developer.apple.com/qa/qa2006/qa1471.html
39 //
40
41 ATSFontFamilyIterator theFontFamilyIterator = NULL;
42 ATSFontFamilyRef theATSFontFamilyRef = 0;
43 OSStatus status = noErr;
44
45 wxArrayString fontFamilies ;
46
47 // Create the iterator
48 status = ATSFontFamilyIteratorCreate(kATSFontContextLocal, nil,nil,
49 kATSOptionFlagsUnRestrictedScope,
50 &theFontFamilyIterator );
51
52 wxUint32 macEncoding = wxMacGetSystemEncFromFontEnc(encoding) ;
53
54 while (status == noErr)
e40298d5 55 {
753d02e8
SC
56 // Get the next font in the iteration.
57 status = ATSFontFamilyIteratorNext( theFontFamilyIterator, &theATSFontFamilyRef );
58 if(status == noErr)
e40298d5 59 {
753d02e8
SC
60 // added CS : avoid showing fonts that won't be displayable
61 FMFontStyle intrinsicStyle = 0 ;
62 FMFont fontInstance ;
63 FMFontFamily fmFamily = FMGetFontFamilyFromATSFontFamilyRef( theATSFontFamilyRef );
64 status = FMGetFontFromFontFamilyInstance( fmFamily , 0 , &fontInstance , &intrinsicStyle);
65 if ( status != noErr )
66 {
67 status = noErr;
68 continue ;
69 }
70
71 if ( encoding != wxFONTENCODING_SYSTEM )
72 {
73 TextEncoding fontFamiliyEncoding = ATSFontFamilyGetEncoding(theATSFontFamilyRef) ;
74 if ( fontFamiliyEncoding != macEncoding )
75 continue ;
76 }
77
78 // TODO: determine fixed widths ...
79
80 CFStringRef theName = NULL;
81 ATSFontFamilyGetName(theATSFontFamilyRef, kATSOptionFlagsDefault, &theName);
82 wxMacCFStringHolder cfName(theName) ;
83 fontFamilies.Add(cfName.AsString(wxLocale::GetSystemEncoding()));
e40298d5 84 }
753d02e8 85