OSDN Git Service

Documentation: More on code assist
authorLeandro Melo <leandro.melo@nokia.com>
Fri, 27 May 2011 08:58:26 +0000 (10:58 +0200)
committerLeena Miettinen <riitta-leena.miettinen@nokia.com>
Fri, 27 May 2011 13:25:30 +0000 (15:25 +0200)
Change-Id: Icd4edd9fbd2067e46b1c8933d8e9139dafba3e67
Reviewed-on: http://codereview.qt.nokia.com/183
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@nokia.com>
doc/api/qtcreator-dev.qdoc
src/plugins/texteditor/codeassist/iassistproposal.cpp

index 1a14b85..9fafb63 100644 (file)
     \o \l{Creating Plugins}
     \o \l{Qt Creator Coding Rules}
     \o \l{Text Editors}
+    \o \l{CodeAssist} {Providing Code Assist}
     \endlist
 
     \section2 Other Custom Editors
index e082f6c..4eaa89d 100644 (file)
@@ -38,12 +38,16 @@ using namespace TextEditor;
     \group CodeAssist
     \title Code Assist for Editors
 
-    These classes are used to provide code assist support such as completions and refactoring
-    actions for editors.
+    Code assist is available in the form of completions and refactoring actions pop-ups
+    which are triggered under particular circumstances. This group contains the classes
+    used to provide such support.
 
     Completions can be of a variety of kind like function hints, snippets, and regular
     context-aware content. The later are usually represented by semantic proposals, but
-    it is also possible that they are simply plain text as supported in the fake vim mode.
+    it is also possible that they are simply plain text like in the fake vim mode.
+
+    Completions also have the possibility to run asynchronously in a separate thread and
+    then not blocking the GUI. This is the default behavior.
 */
 
 /*!