diff options
| author | nyamatongwe <unknown> | 2000-08-18 10:45:24 +0000 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2000-08-18 10:45:24 +0000 | 
| commit | 74537dd24ba7943e79652b06f4b752be2035bcea (patch) | |
| tree | c5d0492dca4b04bf79e1ef367a7190df8472bc3f /src/AutoComplete.h | |
| parent | d15b65e7fba53354b9a044ba5d8232d256b58d5e (diff) | |
| download | scintilla-mirror-74537dd24ba7943e79652b06f4b752be2035bcea.tar.gz | |
Added in most of Ferdinand Prantl's changes except for regular expression
search.
Some bits not quite done as well.
Diffstat (limited to 'src/AutoComplete.h')
| -rw-r--r-- | src/AutoComplete.h | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/src/AutoComplete.h b/src/AutoComplete.h index 37795fce6..434679f93 100644 --- a/src/AutoComplete.h +++ b/src/AutoComplete.h @@ -9,8 +9,10 @@  class AutoComplete {  	bool active;  	char stopChars[256]; +	char fillUpChars[256];  	char separator;  public: +	bool ignoreCase;  	ListBox lb;  	int posStart;  	int startLen; @@ -30,6 +32,10 @@ public:  	void SetStopChars(const char *stopChars_);  	bool IsStopChar(char ch); +	// The fillup chars are characters which, when typed, fill up the selected word +	void SetFillUpChars(const char *fillUpChars_); +	bool IsFillUpChar(char ch); +  	// The separator character is used when interpreting the list in SetList  	void SetSeparator(char separator_);  	char GetSeparator();  | 
