diff options
author | nyamatongwe <unknown> | 2001-01-28 12:13:38 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-01-28 12:13:38 +0000 |
commit | bd2fc92a257da4f630a9e55a6e4ac735e3a29470 (patch) | |
tree | e0ae00f0e767a9771c77fdb4764263dea1ceaa43 /doc/ScintillaDoc.html | |
parent | 6cc47f75fb2bf23cc3f733faa48886990cc1f041 (diff) | |
download | scintilla-mirror-bd2fc92a257da4f630a9e55a6e4ac735e3a29470.tar.gz |
Updating documentation to include additions for 1.35.
Diffstat (limited to 'doc/ScintillaDoc.html')
-rw-r--r-- | doc/ScintillaDoc.html | 23 |
1 files changed, 22 insertions, 1 deletions
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 </pre> <p> Scintilla maintains a selection which stretches between two points, the anchor and the @@ -652,7 +653,7 @@ SCI_INDICGETFORE(int indicatornumber) Autocompletion </h3> <pre> -SCI_AUTOCSHOW(int lenEntered;,char *list) +SCI_AUTOCSHOW(int lenEntered,char *list) SCI_AUTOCCANCEL SCI_AUTOCACTIVE SCI_AUTOCPOSSTART @@ -692,6 +693,19 @@ SCI_AUTOCGETIGNORECASE word being completed. </p> <h3> + User lists + </h3> +<pre> +SCI_USERLISTSHOW(int listType,char *list) +</pre> + <p> + 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. + </p> + <h3> Calltips </h3> <pre> @@ -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. </p> +<pre> +SCN_USERLISTSELECTION +</pre> + <p> + User has selected an item in a user list. + The list type is available in wParam and the text chosen in text. + </p> <h3> Edit messages currently supported by Scintilla which will be removed in the future. </h3> |