diff options
author | nyamatongwe <unknown> | 2008-07-27 08:17:23 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2008-07-27 08:17:23 +0000 |
commit | 5846f322feaf16de1e146530769ffd42f752f057 (patch) | |
tree | bd3759d875fdd15341bbd0d4ec325c164b814b55 /doc/ScintillaDoc.html | |
parent | 74bf9b9fc6186ad580d333823fb0bfb9db43f083 (diff) | |
download | scintilla-mirror-5846f322feaf16de1e146530769ffd42f752f057.tar.gz |
Property to set interpratation of keys to always use Unicode.
Diffstat (limited to 'doc/ScintillaDoc.html')
-rw-r--r-- | doc/ScintillaDoc.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index cb4728e06..ee4e1670d 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -2431,6 +2431,8 @@ struct TextToFind { <a class="message" href="#SCI_GETTWOPHASEDRAW">SCI_GETTWOPHASEDRAW</a><br /> <a class="message" href="#SCI_SETCODEPAGE">SCI_SETCODEPAGE(int codePage)</a><br /> <a class="message" href="#SCI_GETCODEPAGE">SCI_GETCODEPAGE</a><br /> + <a class="message" href="#SCI_SETKEYSUNICODE">SCI_SETKEYSUNICODE(bool keysUnicode)</a><br /> + <a class="message" href="#SCI_GETKEYSUNICODE">SCI_GETKEYSUNICODE</a><br /> <a class="message" href="#SCI_SETWORDCHARS">SCI_SETWORDCHARS(<unused>, const char *chars)</a><br /> <a class="message" href="#SCI_SETWHITESPACECHARS">SCI_SETWHITESPACECHARS(<unused>, const char @@ -2527,6 +2529,12 @@ struct TextToFind { <p>Setting <code>codePage</code> to a non-zero value that is not <code>SC_CP_UTF8</code> is operating system dependent.</p> + <p><b id="SCI_SETKEYSUNICODE">SCI_SETKEYSUNICODE(bool keysUnicode)</b><br /> + <b id="SCI_GETKEYSUNICODE">SCI_GETKEYSUNICODE</b><br /> + On Windows, character keys are normally handled differently depending on whether Scintilla is a wide + or narrow character window with character messages treated as Unicode when wide and as 8 bit otherwise. + Set this property to always treat as Unicode. This option is needed for Delphi.</p> + <p><b id="SCI_SETWORDCHARS">SCI_SETWORDCHARS(<unused>, const char *chars)</b><br /> Scintilla has several functions that operate on words, which are defined to be contiguous sequences of characters from a particular set of characters. This message defines which |