1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: declares wxNativeEncodingInfo struct
4 // Author: Vadim Zeitlin
6 // Created: 19.09.2003 (extracted from wx/fontenc.h)
8 // Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_ENCINFO_H_
13 #define _WX_ENCINFO_H_
15 #include "wx/string.h"
17 // ----------------------------------------------------------------------------
18 // wxNativeEncodingInfo contains all encoding parameters for this platform
19 // ----------------------------------------------------------------------------
21 // This private structure specifies all the parameters needed to create a font
22 // with the given encoding on this platform.
24 // Under X, it contains the last 2 elements of the font specifications
25 // (registry and encoding).
27 // Under Windows, it contains a number which is one of predefined CHARSET_XXX
30 // Under all platforms it also contains a facename string which should be
31 // used, if not empty, to create fonts in this encoding (this is the only way
32 // to create a font of non-standard encoding (like KOI8) under Windows - the
33 // facename specifies the encoding then)
35 struct WXDLLEXPORT wxNativeEncodingInfo
37 wxString facename
; // may be empty meaning "any"
38 wxFontEncoding encoding
; // so that we know what this struct represents
40 #if defined(__WXMSW__) || defined(__WXPM__) || defined(__WXMAC__) || defined(__WXCOCOA__) // FIXME: __WXCOCOA__
41 wxNativeEncodingInfo()
43 , encoding(wxFONTENCODING_SYSTEM
)
44 , charset(0) /* ANSI_CHARSET */
48 #elif defined(_WX_X_FONTLIKE)
51 #elif defined(__WXGTK20__)
52 // No way to specify this in Pango as this
53 // seems to be handled internally.
54 #elif defined(__WXMGL__)
57 #error "Unsupported toolkit"
60 // this struct is saved in config by wxFontMapper, so it should know to
61 // serialise itself (implemented in platform-specific code)
62 bool FromString(const wxString
& s
);
63 wxString
ToString() const;
66 #endif // _WX_ENCINFO_H_