Skip to content
Snippets Groups Projects
  1. Oct 17, 2011
    • Yuchen Deng's avatar
      C++: Improve completion assist · 4ea9c219
      Yuchen Deng authored
      
      Avoid inserting characters that are already there.
      e.g.
      int testFly() {}
      te|Fly()
      When triggers a completion, the code will changed to:
      testFly()|
      But in before, the code will changed to:
      testFly()|Fly()
      
      Notice:  Character of '|' show the cursor position.
      
      Change-Id: I6c111e30356b2549aebc6fbea05608e70d6ab41f
      Merge-request: 398
      Reviewed-by: default avatarLeandro T. C. Melo <leandro.melo@nokia.com>
      4ea9c219
  2. Sep 12, 2011
  3. Sep 08, 2011
  4. Sep 07, 2011
  5. Aug 08, 2011
  6. May 26, 2011
  7. May 20, 2011
  8. May 19, 2011
  9. May 18, 2011
    • Leandro Melo's avatar
      c++ editor: Fix automatic completion for includes · 0dc44994
      Leandro Melo authored
      Reviewed-by: Roberto Raggi
      0dc44994
    • Leandro Melo's avatar
      C++ editor: Remove scanning/caching of includes · ab40e9c7
      Leandro Melo authored
      With the completion now in a separate thread this should
      no longer be necessary.
      
      Reviewed-by: Roberto Raggi
      ab40e9c7
    • Leandro Melo's avatar
      New code assist API · bec4f024
      Leandro Melo authored
      This is a re-work of our completion engine. Primary goals are:
      
      - Allow the computation to run in a separate thread so the GUI is not locked.
      - Support a model-based approach. QStrings are still needed (filtering, etc), but
      internal structures are free to use more efficient representations.
      - Unifiy all kinds of *assist* into a more reusable and extensible framework.
      - Remove unnecessary dependencies on the text editor so we have more generic
      and easily "plugable" components (still things to be resolved).
      bec4f024
  10. May 06, 2011
  11. Apr 13, 2011
  12. Feb 22, 2011
    • hjk's avatar
      texteditor: merge ITextEditable into ITextEditor · f576ad9f
      hjk authored
      rename BastTextEditor->BaseTextEditorWidget, BaseTextEditorEditable->BaseTextEditor
      rename BaseTextEditor{,Widget} subclasses
      rename editableInterface->editorInterface
      rename createEditableInterface->createEditor
      minor cleanups after renamings
      f576ad9f
  13. Feb 21, 2011
  14. Jan 19, 2011
  15. Jan 12, 2011
  16. Jan 07, 2011
  17. Dec 20, 2010
  18. Dec 17, 2010
  19. Dec 16, 2010
  20. Dec 14, 2010
  21. Dec 08, 2010
  22. Dec 06, 2010
  23. Nov 08, 2010
  24. Sep 27, 2010
  25. Sep 24, 2010
  26. Sep 15, 2010
  27. Sep 02, 2010
  28. Aug 26, 2010
  29. Aug 11, 2010
Loading