14 skipped lines |
15 | | 15 | | char stopChars[256]; |
|
16 | | 16 | | char fillUpChars[256]; |
|
|
18 | | char typesep; // Type separator | | 18 | | char typesep; // Type seperator |
|
|
|
13 skipped lines |
|
|
37 | | 37 | | /// Display the auto completion list positioned to be near a character position |
|
38 | | void Start(Window &parent, int ctrlID, int position, | | 38 | | void Start(Window &parent, int ctrlID, int position, Point location, |
39 | | 39 | | int startLen_, int lineHeight, bool unicodeMode); |
|
|
41 | | 41 | | /// The stop chars are characters which, when typed, cause the auto completion list to disappear |
|
8 skipped lines |
50 | | 50 | | void SetSeparator(char separator_); |
|
51 | | 51 | | char GetSeparator(); |
|
|
53 | | /// The typesep character is used for separating the word from the type | | 53 | | /// The typesep character is used for seperating the word from the type |
54 | | 54 | | void SetTypesep(char separator_); |
|
|
|
57 | | 57 | | /// The list string contains a sequence of words separated by the separator character |
|
58 | | 58 | | void SetList(const char *list); |
|
|
60 | | void Show(); | | 60 | | void Show(bool show); |
|
|
63 | | 63 | | /// Move the current list element by delta, scrolling appropriately |
|
8 skipped lines |