]>
git.saurik.com Git - wxWidgets.git/blob - src/palmos/fontutil.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/palmos/fontutil.cpp
3 // Purpose: font-related helper functions
4 // Author: William Osborne - minimal working wxPalmOS port
8 // Copyright: (c) William Osborne
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
28 #include "wx/string.h"
31 #include "wx/encinfo.h"
34 #include "wx/fontutil.h"
35 #include "wx/fontmap.h"
37 #include "wx/tokenzr.h"
39 #ifndef HANGUL_CHARSET
40 # define HANGUL_CHARSET 129
43 // ============================================================================
45 // ============================================================================
47 // ----------------------------------------------------------------------------
48 // wxNativeEncodingInfo
49 // ----------------------------------------------------------------------------
51 // ----------------------------------------------------------------------------
53 // ----------------------------------------------------------------------------
55 bool wxGetNativeFontEncoding(wxFontEncoding encoding
,
56 wxNativeEncodingInfo
*info
)
61 bool wxTestFontEncoding(const wxNativeEncodingInfo
& info
)
66 // ----------------------------------------------------------------------------
67 // wxFontEncoding <-> CHARSET_XXX
68 // ----------------------------------------------------------------------------
70 wxFontEncoding
wxGetFontEncFromCharSet(int cs
)
72 return wxFONTENCODING_SYSTEM
;