From 2fb4ff4b1bc1a473d80260455c80d7ec19c62616 Mon Sep 17 00:00:00 2001 From: Neil Date: Fri, 13 Mar 2015 09:17:40 +1100 Subject: Scintilla is now always a wide character window so remove vestiges of narrow character window support. --- doc/ScintillaDoc.html | 12 ++++-------- doc/ScintillaHistory.html | 4 ++++ 2 files changed, 8 insertions(+), 8 deletions(-) (limited to 'doc') diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 3fefd22e9..b75d3c399 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -3214,8 +3214,6 @@ struct Sci_TextToFind { SCI_GETCODEPAGE
SCI_SETIMEINTERACTION(int imeInteraction)
SCI_GETIMEINTERACTION
- SCI_SETKEYSUNICODE(bool keysUnicode)
- SCI_GETKEYSUNICODE
SCI_SETWORDCHARS(<unused>, const char *characters)
SCI_GETWORDCHARS(<unused>, char *characters)
SCI_SETWHITESPACECHARS(<unused>, const char *characters)
@@ -3343,12 +3341,6 @@ struct Sci_TextToFind { and the inline behaviour with SCI_SETIMEINTERACTION(SC_IME_INLINE). Scintilla may ignore this call in some cases. For example, the inline behaviour might only be supported for some languages.

-

SCI_SETKEYSUNICODE(bool keysUnicode)
- SCI_GETKEYSUNICODE
- 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.

-

SCI_SETWORDCHARS(<unused>, const char *characters)
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 @@ -7614,6 +7606,10 @@ EM_FORMATRANGE SCI_GETUSEPALETTE Deprecated
Scintilla no longer supports palette mode. The last version to support palettes was 2.29. Any calls to these methods should be removed.

+ +

SCI_SETKEYSUNICODE(bool keysUnicode) Deprecated
+ SCI_GETKEYSUNICODE Deprecated
+ On Windows, Scintilla no longer supports narrow character windows so input is always treated as Unicode.

The following are features that should be removed from calling code but are still defined to avoid breaking callers.

diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index f2b2b2acf..bcdc60933 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -488,6 +488,10 @@ Released 8 March 2015.
  • + Scintilla on Windows is now always a wide character window so SCI_SETKEYSUNICODE has no effect + and SCI_GETKEYSUNICODE always returns true. These APIs are deprecated and should not be called. +
  • +
  • Verilog folder fixes bug with `end completing an `if* instead of `endif.
  • -- cgit v1.2.3