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