1 /////////////////////////////////////////////////////////////////////////////
2 // Name: mgl/fontutil.cpp
3 // Purpose: Font helper functions for MGL
4 // Author: Vaclav Slavik
7 // Copyright: (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com)
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "fontutil.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
25 #include "wx/fontutil.h"
26 #include "wx/fontmap.h"
27 #include "wx/tokenzr.h"
32 #include "wx/listimpl.cpp"
33 #include "wx/sysopt.h"
34 #include "wx/mgl/private.h"
38 // ============================================================================
40 // ============================================================================
42 // ----------------------------------------------------------------------------
43 // wxNativeEncodingInfo
44 // ----------------------------------------------------------------------------
46 // convert to/from the string representation: format is
47 // encoding[;facename]
48 bool wxNativeEncodingInfo::FromString(const wxString
& s
)
50 wxStringTokenizer
tokenizer(s
, _T(";"));
52 wxString encid
= tokenizer
.GetNextToken();
54 if ( !encid
.ToLong(&enc
) )
56 encoding
= (wxFontEncoding
)enc
;
59 facename
= tokenizer
.GetNextToken();
64 wxString
wxNativeEncodingInfo::ToString() const
70 s
<< _T(';') << facename
;
76 // ----------------------------------------------------------------------------
78 // ----------------------------------------------------------------------------
80 bool wxGetNativeFontEncoding(wxFontEncoding encoding
,
81 wxNativeEncodingInfo
*info
)
83 wxCHECK_MSG( info
, FALSE
, _T("bad pointer in wxGetNativeFontEncoding") );
85 if ( encoding
== wxFONTENCODING_DEFAULT
)
87 encoding
= wxFont::GetDefaultEncoding();
92 case wxFONTENCODING_ISO8859_1
:
93 case wxFONTENCODING_ISO8859_2
:
94 case wxFONTENCODING_ISO8859_3
:
95 case wxFONTENCODING_ISO8859_4
:
96 case wxFONTENCODING_ISO8859_5
:
97 case wxFONTENCODING_ISO8859_6
:
98 case wxFONTENCODING_ISO8859_7
:
99 case wxFONTENCODING_ISO8859_8
:
100 case wxFONTENCODING_ISO8859_9
:
101 case wxFONTENCODING_ISO8859_10
:
102 case wxFONTENCODING_ISO8859_11
:
103 case wxFONTENCODING_ISO8859_13
:
104 case wxFONTENCODING_ISO8859_14
:
105 case wxFONTENCODING_ISO8859_15
:
106 info
->mglEncoding
= MGL_ENCODING_ISO8859_1
+
107 (encoding
- wxFONTENCODING_ISO8859_1
);
110 case wxFONTENCODING_KOI8
:
111 info
->mglEncoding
= MGL_ENCODING_KOI8
;
114 case wxFONTENCODING_CP1250
:
115 case wxFONTENCODING_CP1251
:
116 case wxFONTENCODING_CP1252
:
117 case wxFONTENCODING_CP1253
:
118 case wxFONTENCODING_CP1254
:
119 case wxFONTENCODING_CP1255
:
120 case wxFONTENCODING_CP1256
:
121 case wxFONTENCODING_CP1257
:
122 info
->mglEncoding
= MGL_ENCODING_CP1250
+
123 (encoding
- wxFONTENCODING_CP1250
);
126 case wxFONTENCODING_SYSTEM
:
127 info
->mglEncoding
= MGL_ENCODING_ASCII
;
131 // encoding not known to MGL
135 info
->encoding
= encoding
;
140 bool wxTestFontEncoding(const wxNativeEncodingInfo
& info
)
142 if ( !info
.facename
)
145 wxMGLFontFamily
*family
= wxTheFontsManager
->GetFamily(info
.facename
);
148 if ( family
->GetInfo()->fontLibType
== MGL_BITMAPFONT_LIB
)
149 return (info
.mglEncoding
== MGL_ENCODING_ASCII
||
150 info
.mglEncoding
== MGL_ENCODING_ISO8859_1
||
151 info
.mglEncoding
== MGL_ENCODING_ISO8859_15
||
152 info
.mglEncoding
== MGL_ENCODING_CP1252
);
158 // ----------------------------------------------------------------------------
159 // wxFontFamily, wxMGLFontInstance, wxMGLFontLibrary
160 // ----------------------------------------------------------------------------
162 WX_DECLARE_LIST(wxMGLFontInstance
, wxMGLFontInstanceList
);
163 WX_DEFINE_LIST(wxMGLFontInstanceList
);
164 WX_DEFINE_LIST(wxMGLFontFamilyList
);
166 wxMGLFontInstance::wxMGLFontInstance(wxMGLFontLibrary
*fontLib
,
167 float pt
, bool slant
, bool aa
)
175 float slantAngle
= m_slant
? 15.0 : 0.0;
177 wxLogTrace("mgl_font", "loading instance of '%s' slant=%i pt=%0.1f aa=%i",
178 m_fontLib
->GetMGLfont_lib_t()->name
, m_slant
, m_pt
, m_aa
);
179 m_font
= MGL_loadFontInstance(m_fontLib
->GetMGLfont_lib_t(),
180 m_pt
, slantAngle
, 0.0, aa
);
181 wxASSERT_MSG( m_font
, wxT("Cannot create font instance.") );
184 wxMGLFontInstance::~wxMGLFontInstance()
186 wxLogTrace("mgl_font", "unloading instance of '%s' slant=%i pt=%0.1f aa=%i",
187 m_fontLib
->GetMGLfont_lib_t()->name
, m_slant
, m_pt
, m_aa
);
189 MGL_unloadFontInstance(m_font
);
192 wxMGLFontLibrary::wxMGLFontLibrary(const wxString
& filename
, int type
,
193 wxMGLFontFamily
*parentFamily
)
195 m_family
= parentFamily
;
197 m_fileName
= filename
;
201 m_instances
= new wxMGLFontInstanceList
;
202 m_instances
->DeleteContents(TRUE
);
205 wxMGLFontLibrary::~wxMGLFontLibrary()
207 wxLogTrace("mgl_font", "font library dtor '%s'", m_fileName
.mb_str());
211 void wxMGLFontLibrary::IncRef()
213 wxLogTrace("mgl_font", "incRef(%u) '%s'", m_refs
, m_fileName
.c_str());
216 wxLogTrace("mgl_font", "opening library '%s'", m_fileName
.mb_str());
217 m_fontLib
= MGL_openFontLib(m_fileName
.mb_str());
221 void wxMGLFontLibrary::DecRef()
223 wxLogTrace("mgl_font", "decRef(%u) '%s'", m_refs
, m_fileName
.c_str());
226 wxLogTrace("mgl_font", "killing instances of '%s'", m_fileName
.mb_str());
227 m_instances
->Clear();
228 wxLogTrace("mgl_font", "closing library '%s'", m_fileName
.mb_str());
229 MGL_closeFontLib(m_fontLib
);
234 static int gs_antialiasingThreshold
= -1;
236 wxMGLFontInstance
*wxMGLFontLibrary::GetFontInstance(wxFont
*font
,
237 float scale
, bool aa
)
239 wxASSERT_MSG(m_refs
> 0 && m_fontLib
, wxT("font library not loaded!"));
244 float pt
= (float)font
->GetPointSize() * scale
;
246 if ( gs_antialiasingThreshold
== -1 )
248 gs_antialiasingThreshold
= 10;
249 #if wxUSE_SYSTEM_OPTIONS
250 if ( wxSystemOptions::HasOption(wxT("mgl.aa-threshold")) )
251 gs_antialiasingThreshold
=
252 wxSystemOptions::GetOptionInt(wxT("mgl.aa-threshold"));
253 wxLogTrace("mgl_font", "AA threshold set to %i", gs_antialiasingThreshold
);
257 // Small characters don't look good when antialiased with the algorithm
258 // that FreeType uses (mere 2x2 supersampling), so lets disable it AA
259 // completely for small fonts.
260 if ( pt
<= gs_antialiasingThreshold
)
263 antialiased
= (m_fontLib
->fontLibType
== MGL_BITMAPFONT_LIB
) ? FALSE
: aa
;
265 slant
= (((m_type
& wxFONTFACE_ITALIC
) == 0) &&
266 (font
->GetStyle() == wxSLANT
|| font
->GetStyle() == wxITALIC
));
268 // FIXME_MGL -- MGL does not yet support slant, although the API is there
271 wxLogTrace("mgl_font", "requested instance of '%s' slant=%i pt=%0.1f aa=%i",
272 m_fileName
.mb_str(), slant
, pt
, antialiased
);
274 wxMGLFontInstance
*i
;
275 wxMGLFontInstanceList::Node
*node
;
277 for (node
= m_instances
->GetFirst(); node
; node
= node
->GetNext())
280 if ( i
->GetPt() == pt
&& i
->GetSlant() == slant
&&
281 i
->GetAA() == antialiased
)
283 wxLogTrace("mgl_font", " got from cache: slant=%i pt=%0.1f aa=%i",
284 i
->GetSlant(), i
->GetPt(), i
->GetAA());
289 i
= new wxMGLFontInstance(this, pt
, slant
, antialiased
);
290 m_instances
->Append(i
);
295 wxMGLFontFamily::wxMGLFontFamily(const font_info_t
*info
)
297 m_name
= info
->familyName
;
300 if ( info
->regularFace
[0] == '\0' )
301 m_fontLibs
[wxFONTFACE_REGULAR
] = NULL
;
303 m_fontLibs
[wxFONTFACE_REGULAR
] =
304 new wxMGLFontLibrary(info
->regularFace
, wxFONTFACE_REGULAR
, this);
306 if ( info
->italicFace
[0] == '\0' )
307 m_fontLibs
[wxFONTFACE_ITALIC
] = NULL
;
309 m_fontLibs
[wxFONTFACE_ITALIC
] =
310 new wxMGLFontLibrary(info
->italicFace
, wxFONTFACE_ITALIC
, this);
312 if ( info
->boldFace
[0] == '\0' )
313 m_fontLibs
[wxFONTFACE_BOLD
] = NULL
;
315 m_fontLibs
[wxFONTFACE_BOLD
] =
316 new wxMGLFontLibrary(info
->boldFace
, wxFONTFACE_BOLD
, this);
318 if ( info
->boldItalicFace
[0] == '\0' )
319 m_fontLibs
[wxFONTFACE_BOLD_ITALIC
] = NULL
;
321 m_fontLibs
[wxFONTFACE_BOLD_ITALIC
] =
322 new wxMGLFontLibrary(info
->boldItalicFace
, wxFONTFACE_BOLD_ITALIC
, this);
324 wxLogTrace("mgl_font", "new family '%s' (r=%s, i=%s, b=%s, bi=%s)\n",
325 info
->familyName
, info
->regularFace
, info
->italicFace
,
326 info
->boldFace
, info
->boldItalicFace
);
329 wxMGLFontFamily::~wxMGLFontFamily()
331 for (size_t i
= 0; i
< wxFONTFACE_MAX
; i
++)
332 delete m_fontLibs
[i
];
335 bool wxMGLFontFamily::HasFace(int type
) const
337 return (m_fontLibs
[type
] != NULL
);
341 // ----------------------------------------------------------------------------
343 // ----------------------------------------------------------------------------
345 wxMGLFontLibrary
*wxFontsManager::GetFontLibrary(wxFont
*font
)
347 wxMGLFontFamily
*family
;
349 wxString facename
= font
->GetFaceName();
351 if ( !facename
.IsEmpty() )
352 family
= GetFamily(facename
);
359 switch (font
->GetFamily())
362 facename
= wxT("Script");
365 facename
= wxT("Charter");
368 facename
= wxT("Times");
372 facename
= wxT("Courier");
375 facename
= wxT("Helvetica");
379 facename
= wxT("Helvetica");
383 family
= GetFamily(facename
);
386 if ( m_list
->GetFirst() )
387 family
= m_list
->GetFirst()->GetData();
389 wxFAIL_MSG(wxT("Fatal error, no fonts available!"));
393 type
= wxFONTFACE_REGULAR
;
395 if ( font
->GetWeight() == wxBOLD
)
396 type
|= wxFONTFACE_BOLD
;
398 // FIXME_MGL -- this should read "if ( font->GetStyle() == wxITALIC )",
399 // but since MGL does not yet support slant, we try to display it with
400 // italic face (better than nothing...)
401 if ( font
->GetStyle() == wxITALIC
|| font
->GetStyle() == wxSLANT
)
403 if ( family
->HasFace(type
| wxFONTFACE_ITALIC
) )
404 type
|= wxFONTFACE_ITALIC
;
406 if ( !family
->HasFace(type
) )
408 for (int i
= 0; i
< wxFONTFACE_MAX
; i
++)
409 if ( family
->HasFace(i
) )
416 return family
->GetLibrary(type
);
419 static ibool MGLAPI
enum_callback(const font_info_t
*info
, void *cookie
)
421 wxFontsManager
*db
= (wxFontsManager
*)cookie
;
426 wxFontsManager::wxFontsManager()
428 m_hash
= new wxHashTable(wxKEY_STRING
);
429 m_hash
->DeleteContents(FALSE
);
430 m_list
= new wxMGLFontFamilyList
;
431 m_list
->DeleteContents(TRUE
);
432 MGL_enumerateFonts(enum_callback
, (void*)this);
435 wxFontsManager::~wxFontsManager()
441 void wxFontsManager::AddFamily(const font_info_t
*info
)
443 wxMGLFontFamily
*f
= new wxMGLFontFamily(info
);
444 m_hash
->Put(f
->GetName().Lower(), f
);
448 wxMGLFontFamily
*wxFontsManager::GetFamily(const wxString
& name
) const
450 return (wxMGLFontFamily
*)m_hash
->Get(name
.Lower());
454 wxFontsManager
*wxTheFontsManager
= NULL
;