]>
git.saurik.com Git - wxWidgets.git/blob - src/stc/scintilla/src/AutoComplete.h
e4f8ade0d8da534c0481e788e1376a0238720748
1 // Scintilla source code edit control
2 // AutoComplete.h - defines the auto completion list box
3 // Copyright 1998-2000 by Neil Hodgson <neilh@scintilla.org>
4 // The License.txt file describes the conditions under which this software may be distributed.
21 // Is the auto completion list displayed?
24 // Display the auto completion list positioned to be near a character position
25 void Start(Window
&parent
, int ctrlID
, int position
, int startLen_
);
27 // The stop chars are characters which, when typed, cause the auto completion list to disappear
28 void SetStopChars(const char *stopChars_
);
29 bool IsStopChar(char ch
);
31 // The separator character is used when interpreting the list in SetList
32 void SetSeparator(char separator_
);
35 // The list string contains a sequence of words separated by the separator character
36 int SetList(const char *list
);
41 // Move the current list element by delta, scrolling appropriately
44 // Select a list element that starts with word as the current element
45 void Select(const char *word
);