Delay the automatic completion.

This commit is contained in:
Roberto Raggi
2010-07-19 14:06:00 +02:00
parent ecdee3271c
commit a0faf279d5
4 changed files with 46 additions and 5 deletions

View File

@@ -496,6 +496,7 @@ signals:
void requestQuickFix(TextEditor::ITextEditable *editor);
private:
void maybeRequestAutoCompletion(const QChar &ch);
void indentOrUnindent(bool doIndent);
void handleHomeKey(bool anchor);
void handleBackspaceKey();
@@ -527,13 +528,17 @@ private:
void universalHelper(); // test function for development
// parentheses matcher
private slots:
// auto completion
void _q_requestAutoCompletion();
// parentheses matcher
void _q_matchParentheses();
void _q_highlightBlocks();
void slotSelectionChanged();
void _q_animateUpdate(int position, QPointF lastPos, QRectF rect);
void doFoo();
};