scintilla: Update scintilla with changeset 3662:1d1c06df8a2f using gtk+3
[anjuta-extras.git] / plugins / scintilla / scintilla / AutoComplete.h
blobf48cb0551952d42c732f269d1370d61a35f07088
1 // Scintilla source code edit control
2 /** @file AutoComplete.h
3 ** Defines the auto completion list box.
4 **/
5 // Copyright 1998-2003 by Neil Hodgson <neilh@scintilla.org>
6 // The License.txt file describes the conditions under which this software may be distributed.
8 #ifndef AUTOCOMPLETE_H
9 #define AUTOCOMPLETE_H
11 #ifdef SCI_NAMESPACE
12 namespace Scintilla {
13 #endif
15 /**
17 class AutoComplete {
18 bool active;
19 char stopChars[256];
20 char fillUpChars[256];
21 char separator;
22 char typesep; // Type seperator
24 public:
25 bool ignoreCase;
26 bool chooseSingle;
27 ListBox *lb;
28 int posStart;
29 int startLen;
30 /// Should autocompletion be canceled if editor's currentPos <= startPos?
31 bool cancelAtStartPos;
32 bool autoHide;
33 bool dropRestOfWord;
35 AutoComplete();
36 ~AutoComplete();
38 /// Is the auto completion list displayed?
39 bool Active() const;
41 /// Display the auto completion list positioned to be near a character position
42 void Start(Window &parent, int ctrlID, int position, Point location,
43 int startLen_, int lineHeight, bool unicodeMode);
45 /// The stop chars are characters which, when typed, cause the auto completion list to disappear
46 void SetStopChars(const char *stopChars_);
47 bool IsStopChar(char ch);
49 /// The fillup chars are characters which, when typed, fill up the selected word
50 void SetFillUpChars(const char *fillUpChars_);
51 bool IsFillUpChar(char ch);
53 /// The separator character is used when interpreting the list in SetList
54 void SetSeparator(char separator_);
55 char GetSeparator() const;
57 /// The typesep character is used for seperating the word from the type
58 void SetTypesep(char separator_);
59 char GetTypesep() const;
61 /// The list string contains a sequence of words separated by the separator character
62 void SetList(const char *list);
64 void Show(bool show);
65 void Cancel();
67 /// Move the current list element by delta, scrolling appropriately
68 void Move(int delta);
70 /// Select a list element that starts with word as the current element
71 void Select(const char *word);
74 #ifdef SCI_NAMESPACE
76 #endif
78 #endif