home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wxos2233.zip / wxOS2-2_3_3.zip / wxWindows-2.3.3 / include / wx / fontenc.h < prev    next >
C/C++ Source or Header  |  2002-08-08  |  5KB  |  134 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. // Name:        wx/fontenc.h
  3. // Purpose:     wxFontEncoding constants
  4. // Author:      Vadim Zeitlin
  5. // Modified by:
  6. // Created:     29.03.00
  7. // RCS-ID:      $Id: fontenc.h,v 1.10 2002/08/06 16:41:30 RR Exp $
  8. // Copyright:   (c) Vadim Zeitlin
  9. // Licence:     wxWindows license
  10. /////////////////////////////////////////////////////////////////////////////
  11.  
  12. #ifndef _WX_FONTENC_H_
  13. #define _WX_FONTENC_H_
  14.  
  15. #include "wx/string.h"
  16.  
  17. // font encodings
  18. enum wxFontEncoding
  19. {
  20.     wxFONTENCODING_SYSTEM = -1,     // system default
  21.     wxFONTENCODING_DEFAULT,         // current default encoding
  22.  
  23.     // ISO8859 standard defines a number of single-byte charsets
  24.     wxFONTENCODING_ISO8859_1,       // West European (Latin1)
  25.     wxFONTENCODING_ISO8859_2,       // Central and East European (Latin2)
  26.     wxFONTENCODING_ISO8859_3,       // Esperanto (Latin3)
  27.     wxFONTENCODING_ISO8859_4,       // Baltic (old) (Latin4)
  28.     wxFONTENCODING_ISO8859_5,       // Cyrillic
  29.     wxFONTENCODING_ISO8859_6,       // Arabic
  30.     wxFONTENCODING_ISO8859_7,       // Greek
  31.     wxFONTENCODING_ISO8859_8,       // Hebrew
  32.     wxFONTENCODING_ISO8859_9,       // Turkish (Latin5)
  33.     wxFONTENCODING_ISO8859_10,      // Variation of Latin4 (Latin6)
  34.     wxFONTENCODING_ISO8859_11,      // Thai
  35.     wxFONTENCODING_ISO8859_12,      // doesn't exist currently, but put it
  36.                                     // here anyhow to make all ISO8859
  37.                                     // consecutive numbers
  38.     wxFONTENCODING_ISO8859_13,      // Baltic (Latin7)
  39.     wxFONTENCODING_ISO8859_14,      // Latin8
  40.     wxFONTENCODING_ISO8859_15,      // Latin9 (a.k.a. Latin0, includes euro)
  41.     wxFONTENCODING_ISO8859_MAX,
  42.  
  43.     // Cyrillic charset soup (see http://czyborra.com/charsets/cyrillic.html)
  44.     wxFONTENCODING_KOI8,            // we don't support any of KOI8 variants
  45.     wxFONTENCODING_ALTERNATIVE,     // same as MS-DOS CP866
  46.     wxFONTENCODING_BULGARIAN,       // used under Linux in Bulgaria
  47.  
  48.     // what would we do without Microsoft? They have their own encodings
  49.         // for DOS
  50.     wxFONTENCODING_CP437,           // original MS-DOS codepage
  51.     wxFONTENCODING_CP850,           // CP437 merged with Latin1
  52.     wxFONTENCODING_CP852,           // CP437 merged with Latin2
  53.     wxFONTENCODING_CP855,           // another cyrillic encoding
  54.     wxFONTENCODING_CP866,           // and another one
  55.         // and for Windows
  56.     wxFONTENCODING_CP874,           // WinThai
  57.     wxFONTENCODING_CP932,           // Japanese (shift-JIS)
  58.     wxFONTENCODING_CP936,           // Chinese simplified (GB)
  59.     wxFONTENCODING_CP949,           // Korean (Hangul charset)
  60.     wxFONTENCODING_CP950,           // Chinese (traditional - Big5)
  61.     wxFONTENCODING_CP1250,          // WinLatin2
  62.     wxFONTENCODING_CP1251,          // WinCyrillic
  63.     wxFONTENCODING_CP1252,          // WinLatin1
  64.     wxFONTENCODING_CP1253,          // WinGreek (8859-7)
  65.     wxFONTENCODING_CP1254,          // WinTurkish
  66.     wxFONTENCODING_CP1255,          // WinHebrew
  67.     wxFONTENCODING_CP1256,          // WinArabic
  68.     wxFONTENCODING_CP1257,          // WinBaltic (same as Latin 7)
  69.     wxFONTENCODING_CP12_MAX,
  70.  
  71.     wxFONTENCODING_UTF7,            // UTF-7 Unicode encoding
  72.     wxFONTENCODING_UTF8,            // UTF-8 Unicode encoding
  73.  
  74.     wxFONTENCODING_UNICODE,         // Unicode - currently used only by
  75.                                     // wxEncodingConverter class
  76.  
  77.     wxFONTENCODING_MAX
  78. };
  79.  
  80. // ----------------------------------------------------------------------------
  81. // types
  82. // ----------------------------------------------------------------------------
  83.  
  84. #if wxUSE_GUI
  85.  
  86. // This private structure specifies all the parameters needed to create a font
  87. // with the given encoding on this platform.
  88. //
  89. // Under X, it contains the last 2 elements of the font specifications
  90. // (registry and encoding).
  91. //
  92. // Under Windows, it contains a number which is one of predefined CHARSET_XXX
  93. // values.
  94. //
  95. // Under all platforms it also contains a facename string which should be
  96. // used, if not empty, to create fonts in this encoding (this is the only way
  97. // to create a font of non-standard encoding (like KOI8) under Windows - the
  98. // facename specifies the encoding then)
  99.  
  100. struct WXDLLEXPORT wxNativeEncodingInfo
  101. {
  102.     wxString facename;          // may be empty meaning "any"
  103.     wxFontEncoding encoding;    // so that we know what this struct represents
  104.  
  105. #if defined(__WXMSW__) || defined(__WXPM__) || defined(__WXMAC__)
  106.     wxNativeEncodingInfo()
  107.         : facename()
  108.         , encoding(wxFONTENCODING_SYSTEM)
  109.         , charset(0) /* ANSI_CHARSET */
  110.     { }
  111.  
  112.     int      charset;
  113. #elif defined(_WX_X_FONTLIKE)
  114.     wxString xregistry,
  115.              xencoding;
  116. #elif defined(__WXGTK20__)
  117.     // No way to specify this in Pango as this
  118.     // seems to be handled internally.
  119. #elif defined(__WXMGL__)
  120.     int      mglEncoding;
  121. #else
  122.     #error "Unsupported toolkit"
  123. #endif
  124.  
  125.     // this struct is saved in config by wxFontMapper, so it should know to
  126.     // serialise itself (implemented in platform-specific code)
  127.     bool FromString(const wxString& s);
  128.     wxString ToString() const;
  129. };
  130.  
  131. #endif // wxUSE_GUI
  132.  
  133. #endif // _WX_FONTENC_H_
  134.