From 17856a0bc15aa9b8755109ee3615bdc4bbf1ecb7 Mon Sep 17 00:00:00 2001
From: nyamatongwe SCI_STYLESETCHARACTERSET(SCE_C_STRING, SC_CHARSET_RUSSIAN) would ensure that
strings in Russian would display correctly in C and C++ (SCE_C_STRING is the style
number used by the C and C++ lexer to display literal strings; it has the value 6). This
- feature currently only works fully on Windows.
The character sets supported on Windows are:
SC_CHARSET_ANSI, SC_CHARSET_ARABIC, SC_CHARSET_BALTIC,
@@ -2019,13 +2019,16 @@ struct TextToFind {
SC_CHARSET_EASTEUROPE, SC_CHARSET_GB2312,
SC_CHARSET_GREEK, SC_CHARSET_HANGUL, SC_CHARSET_HEBREW,
SC_CHARSET_JOHAB, SC_CHARSET_MAC, SC_CHARSET_OEM,
+ SC_CHARSET_RUSSIAN (code page 1251),
SC_CHARSET_SHIFTJIS, SC_CHARSET_SYMBOL, SC_CHARSET_THAI,
SC_CHARSET_TURKISH, and SC_CHARSET_VIETNAMESE.
The character sets supported on GTK+ are:
- SC_CHARSET_ANSI, SC_CHARSET_EASTEUROPE,
- SC_CHARSET_GB2312, SC_CHARSET_HANGUL, and
- SC_CHARSET_SHIFTJIS.
SC_CHARSET_ANSI, SC_CHARSET_CYRILLIC (code page 1251),
+ SC_CHARSET_EASTEUROPE,
+ SC_CHARSET_GB2312, SC_CHARSET_HANGUL,
+ SC_CHARSET_RUSSIAN (KOI8-R), SC_CHARSET_SHIFTJIS, and
+ SC_CHARSET_8859_15.
SCI_STYLESETCASE(int styleNumber, int caseMode)
The value of caseMode determines how text is displayed. You can set upper case
--
cgit v1.2.3