diff options
author | nyamatongwe <devnull@localhost> | 2008-07-27 08:17:23 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2008-07-27 08:17:23 +0000 |
commit | b295c7a668ccf0374ef8ff7cf2fd592903d67455 (patch) | |
tree | bd3759d875fdd15341bbd0d4ec325c164b814b55 /include | |
parent | 8967b23bcad9622e11787d77708cf157b24e7dd4 (diff) | |
download | scintilla-mirror-b295c7a668ccf0374ef8ff7cf2fd592903d67455.tar.gz |
Property to set interpratation of keys to always use Unicode.
Diffstat (limited to 'include')
-rw-r--r-- | include/Scintilla.h | 2 | ||||
-rw-r--r-- | include/Scintilla.iface | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index b1e6e3504..7dca10ae4 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -669,6 +669,8 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SCI_GETPOSITIONCACHE 2515 #define SCI_COPYALLOWLINE 2519 #define SCI_GETCHARACTERPOINTER 2520 +#define SCI_SETKEYSUNICODE 2521 +#define SCI_GETKEYSUNICODE 2522 #define SCI_STARTRECORD 3001 #define SCI_STOPRECORD 3002 #define SCI_SETLEXER 4001 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 949452efb..c8759e591 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1804,6 +1804,12 @@ fun void CopyAllowLine=2519(,) # characters in the document. get int GetCharacterPointer=2520(,) +# Always interpret keyboard input as Unicode +set void SetKeysUnicode=2521(bool keysUnicode,) + +# Are keys always interpreted as Unicode? +get bool GetKeysUnicode=2522(,) + # Start notifying the container of all key presses and commands. fun void StartRecord=3001(,) |