diff options
author | nyamatongwe <unknown> | 2000-04-10 13:52:17 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-04-10 13:52:17 +0000 |
commit | b8d276f517d68af5d173597c37fb9111c985de80 (patch) | |
tree | b8af678dd9e189e517668330c92aeab3ff5f0115 /src/AutoComplete.h | |
parent | ff3e9e7e239217ae5247b1519090a5137e056f80 (diff) | |
download | scintilla-mirror-b8d276f517d68af5d173597c37fb9111c985de80.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(); |