From bd2fc92a257da4f630a9e55a6e4ac735e3a29470 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Sun, 28 Jan 2001 12:13:38 +0000 Subject: Updating documentation to include additions for 1.35. --- doc/ScintillaDoc.html | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) (limited to 'doc/ScintillaDoc.html') diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 36868b308..1ed2a6783 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -198,6 +198,7 @@ SCI_LINESONSCREEN SCI_SELECTIONISRECTANGLE SCI_SETHSCROLLBAR(bool visible) SCI_GETHSCROLLBAR +SCI_MOVECARETINSIDEVIEW

Scintilla maintains a selection which stretches between two points, the anchor and the @@ -652,7 +653,7 @@ SCI_INDICGETFORE(int indicatornumber) Autocompletion

-SCI_AUTOCSHOW(int lenEntered;,char *list)
+SCI_AUTOCSHOW(int lenEntered,char *list)
 SCI_AUTOCCANCEL
 SCI_AUTOCACTIVE
 SCI_AUTOCPOSSTART
@@ -691,6 +692,19 @@ SCI_AUTOCGETIGNORECASE
       a false argument, the list is not cancelled until the caret moves before the first character of the 
       word being completed.
     

+

+ User lists +

+
+SCI_USERLISTSHOW(int listType,char *list)
+
+

+ User lists are similar to auto completion but do not insert text when an item is selected, + instead notifying the container with a SCN_USERLISTSELECTION. + The listType parameter is returned to the container and + can be used to differentiate between different types of list such as between a list of + buffers and a list of keywords. +

Calltips

@@ -1140,6 +1154,13 @@ SCN_PAINTED Painting has just been done. Useful when you want to update some other widgets based on a change in Scintilla, but want to have the paint occur first to appear more responsive.

+
+SCN_USERLISTSELECTION
+
+

+ User has selected an item in a user list. + The list type is available in wParam and the text chosen in text. +

Edit messages currently supported by Scintilla which will be removed in the future.

-- cgit v1.2.3