new encoding constants

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25275 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2004-01-21 02:15:31 +00:00
parent 49234978d5
commit f0cd63d2af
3 changed files with 22 additions and 0 deletions

View File

@@ -153,6 +153,14 @@ enum wxFontEncoding
wxFONTENCODING_UTF32BE, // UTF-32 Big Endian Unicode encoding
wxFONTENCODING_UTF32LE, // UTF-32 Little Endian Unicode encoding
wxFONTENCODING_MACROMAN, // Mac Roman encoding
wxFONTENCODING_MACCENTRALEUR, // Mac Roman Central Europe encoding
wxFONTENCODING_MACHEBREW, // Mac Hebrew encoding
wxFONTENCODING_MACGREEK, // Mac Greek encoding
wxFONTENCODING_MACARABIC, // Mac Arabic encoding
wxFONTENCODING_MACTURKISH, // Mac Turkish encoding
wxFONTENCODING_MACCYRILLIC, // Mac Cyrillic encoding
wxFONTENCODING_MAX, // highest enumerated encoding value

View File

@@ -94,6 +94,13 @@
%rename(FONTENCODING_UTF16LE) wxFONTENCODING_UTF16LE;
%rename(FONTENCODING_UTF32BE) wxFONTENCODING_UTF32BE;
%rename(FONTENCODING_UTF32LE) wxFONTENCODING_UTF32LE;
%rename(FONTENCODING_MACROMAN) wxFONTENCODING_MACROMAN;
%rename(FONTENCODING_MACCENTRALEUR) wxFONTENCODING_MACCENTRALEUR;
%rename(FONTENCODING_MACHEBREW) wxFONTENCODING_MACHEBREW;
%rename(FONTENCODING_MACGREEK) wxFONTENCODING_MACGREEK;
%rename(FONTENCODING_MACARABIC) wxFONTENCODING_MACARABIC;
%rename(FONTENCODING_MACTURKISH) wxFONTENCODING_MACTURKISH;
%rename(FONTENCODING_MACCYRILLIC) wxFONTENCODING_MACCYRILLIC;
%rename(FONTENCODING_MAX) wxFONTENCODING_MAX;
%rename(FONTENCODING_UTF16) wxFONTENCODING_UTF16;
%rename(FONTENCODING_UTF32) wxFONTENCODING_UTF32;