From ad0162453e48fb729d1793eca40ac137e1e3451e Mon Sep 17 00:00:00 2001 From: Neil Date: Sat, 17 Jul 2021 14:54:31 +1000 Subject: Add SCI_AUTOCSETOPTIONS to allow choosing a non-resizeable autocompletion list on Win32. This also avoids a header rectangle above the list. --- doc/ScintillaDoc.html | 40 +++++++++++++++++++++++++++++++++++++++- doc/ScintillaHistory.html | 5 +++++ 2 files changed, 44 insertions(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 03fe95ea9..531fca5aa 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -128,7 +128,7 @@

Scintilla Documentation

-

Last edited 25 June 2021 NH

+

Last edited 17 July 2021 NH

Scintilla 5 has moved the lexers from Scintilla into a new Lexilla project.
@@ -5741,6 +5741,8 @@ struct Sci_TextToFind { SCI_AUTOCSETDROPRESTOFWORD(bool dropRestOfWord)
SCI_AUTOCGETDROPRESTOFWORD → bool
+ SCI_AUTOCSETOPTIONS(int options)
+ SCI_AUTOCGETOPTIONS → int
SCI_REGISTERIMAGE(int type, const char *xpmData)
SCI_REGISTERRGBAIMAGE(int type, const char *pixels)
SCI_CLEARREGISTEREDIMAGES
@@ -5887,6 +5889,42 @@ struct Sci_TextToFind { When an item is selected, any word characters following the caret are first erased if dropRestOfWord is set true. The default is false.

+

SCI_AUTOCSETOPTIONS(int options)
+ SCI_AUTOCGETOPTIONS → int
+ Set options for autocompletion from the following list.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
SymbolValuePurpose
SC_AUTOCOMPLETE_NORMAL0Display autocompletion using default settings.
SC_AUTOCOMPLETE_FIXED_SIZE1On Win32 only, use a fixed size list instead of one that can be resized by the user. + This also avoids a header rectangle above the list.
+

SCI_REGISTERIMAGE(int type, const char *xpmData)
SCI_REGISTERRGBAIMAGE(int type, const char *pixels)
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index 84710410d..8fddafc03 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -590,6 +590,11 @@ Feature #1370.

  • + Add SCI_AUTOCSETOPTIONS to allow choosing a non-resizeable autocompletion list + on Win32. + Feature #1284. +
  • +
  • On Win32, when technology is changed, buffering is set to a reasonable value for the technology: on for GDI and off for Direct2D as Direct2D performs its own buffering. Feature #1400. -- cgit v1.2.3