diff options
author | nyamatongwe <unknown> | 2005-03-25 05:08:20 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2005-03-25 05:08:20 +0000 |
commit | 3ab465e5e5e653cc00298c2cca632deea54e0ff0 (patch) | |
tree | 8f02abc2d55e64b836a1b459e1bb9268f6f291f3 /src/AutoComplete.h | |
parent | 2fa9d1fb2f3bb0e4a3ecd57202a13c6dae67fbb2 (diff) | |
download | scintilla-mirror-3ab465e5e5e653cc00298c2cca632deea54e0ff0.tar.gz |
Patch from Blair McGlashan for autocompletion on Windows to
* Set maximum width of list
* set maximum height of list
* better calculate width
* use ellipsis when text is truncated to fit window
* use popup window so it can extend past parent window
* disallow resizing too small
* draw to bottom edge when resized so last item not full line high
* improve time to display by by 90%
Minor tweaks by me to fix warnings, layout etc.
Diffstat (limited to 'src/AutoComplete.h')
-rw-r--r-- | src/AutoComplete.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/AutoComplete.h b/src/AutoComplete.h index ee5a2de4c..10577ca38 100644 --- a/src/AutoComplete.h +++ b/src/AutoComplete.h @@ -35,7 +35,7 @@ public: bool Active(); /// Display the auto completion list positioned to be near a character position - void Start(Window &parent, int ctrlID, int position, + void Start(Window &parent, int ctrlID, int position, Point location, int startLen_, int lineHeight, bool unicodeMode); /// The stop chars are characters which, when typed, cause the auto completion list to disappear |