diff options
| author | nyamatongwe <unknown> | 2002-11-21 12:35:51 +0000 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2002-11-21 12:35:51 +0000 | 
| commit | 80a672aa76c64c58f5a7571879b83e1e44cd2db6 (patch) | |
| tree | f3b69c94fcefff4ff2b0828a740940b9d0b96fb6 /include/Platform.h | |
| parent | 882b4355011c56f17284981bab13ed74ed395284 (diff) | |
| download | scintilla-mirror-80a672aa76c64c58f5a7571879b83e1e44cd2db6.tar.gz | |
Patch from Biswa to add icons to autocompletion lists.
Diffstat (limited to 'include/Platform.h')
| -rw-r--r-- | include/Platform.h | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/include/Platform.h b/include/Platform.h index 7e521d63b..53b1dfecc 100644 --- a/include/Platform.h +++ b/include/Platform.h @@ -377,6 +377,7 @@ private:  	WindowID list;  	WindowID scroller;  	int current; +	void *pixhash;  #endif  	int desiredVisibleRows;  	unsigned int maxItemCharacters; @@ -393,13 +394,14 @@ public:  	void SetVisibleRows(int rows);  	PRectangle GetDesiredRect();  	void Clear(); -	void Append(char *s); +	void Append(char *s, int type = -1);  	int Length();  	void Select(int n);  	int GetSelection();  	int Find(const char *prefix);  	void GetValue(int n, char *value, int len);  	void Sort(); +	void SetTypeXpm(int type, const char **xpm_data);  	void SetDoubleClickAction(CallBackAction action, void *data) {  		doubleClickAction = action;  		doubleClickActionData = data; | 
