Allow certain characters to also trigger the completion

Now you can type characters like ., ( and : to complete the selected
item, depending on the type of the completion item.

Task-number: QTCREATORBUG-271
Reviewed-by: Roberto Raggi
This commit is contained in:
Thorbjørn Lindeijer
2010-07-09 15:12:44 +02:00
parent 6ee1027eaa
commit b4cecd6ec8
10 changed files with 125 additions and 17 deletions

View File

@@ -78,7 +78,8 @@ public:
int startCompletion(TextEditor::ITextEditable *editor);
void completions(QList<TextEditor::CompletionItem> *completions);
void complete(const TextEditor::CompletionItem &item);
bool typedCharCompletes(const TextEditor::CompletionItem &item, QChar typedChar);
void complete(const TextEditor::CompletionItem &item, QChar typedChar);
bool partiallyComplete(const QList<TextEditor::CompletionItem> &completionItems);
void cleanup();