diff options
author | nyamatongwe <devnull@localhost> | 2000-04-10 13:52:17 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2000-04-10 13:52:17 +0000 |
commit | 0deaa9b95af06c01fa0e6714ad73b41ed22ae5c7 (patch) | |
tree | b8af678dd9e189e517668330c92aeab3ff5f0115 /src/AutoComplete.h | |
parent | dba48e020c0a68a84f4f5f11d5600bba90598da3 (diff) | |
download | scintilla-mirror-0deaa9b95af06c01fa0e6714ad73b41ed22ae5c7.tar.gz |
Added get/set of separator character used when setting auto-completion list.
Message for selecting an element of the autocompletion list.
Diffstat (limited to 'src/AutoComplete.h')
-rw-r--r-- | src/AutoComplete.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/AutoComplete.h b/src/AutoComplete.h index 10216027b..e4f8ade0d 100644 --- a/src/AutoComplete.h +++ b/src/AutoComplete.h @@ -9,6 +9,7 @@ class AutoComplete { bool active; char stopChars[256]; + char separator; public: ListBox lb; int posStart; @@ -27,7 +28,11 @@ public: void SetStopChars(const char *stopChars_); bool IsStopChar(char ch); - // The list string contains a sequence of words separated by spaces + // The separator character is used when interpreting the list in SetList + void SetSeparator(char separator_); + char GetSeparator(); + + // The list string contains a sequence of words separated by the separator character int SetList(const char *list); void Show(); |