Skip to content
Snippets Groups Projects
  1. Jul 20, 2012
  2. Jul 19, 2012
  3. Jul 17, 2012
  4. Jun 29, 2012
  5. Jun 20, 2012
  6. Mar 29, 2012
    • Erik Verbruggen's avatar
      [C++] Rewrite of the preprocessor. · 60db5736
      Erik Verbruggen authored
      
      This rewrite fixes a couple of issues with the pre-processor. It now
      supports:
      - macros in macro bodies
      - stringification of parameters [cpp.stringize]
      - the concatenation operator [cpp.concat]
      - #include MACRO_HERE
      - defined() inside macro bodies used in pp-conditions.
      
      Change-Id: Ifdb78041fb6afadf44f939a4bd66ce2832b8601f
      Reviewed-by: default avatarRoberto Raggi <roberto.raggi@nokia.com>
      60db5736
  7. Mar 13, 2012
  8. Feb 23, 2012
  9. Feb 20, 2012
  10. Feb 15, 2012
  11. Feb 10, 2012
    • Leandro Melo's avatar
      Improve code-assist API isSortable · 70b64280
      Leandro Melo authored
      
      Now IGenericProposalModel::isSortable also takes the current prefix
      as a parameter. This is particularly useful for cases like in the C++
      completion: For global completions it will only sort if there's
      already a content prefix - Notice, however, that the "sorting threshold"
      for a maximum number of items is still kept in IGenericProposalModel::sort.
      
      Task-number: QTCREATORBUG-6404
      Change-Id: I3c2f282aa565287b8b4989930b6a27093862ef25
      Reviewed-by: default avatarRoberto Raggi <roberto.raggi@nokia.com>
      70b64280
  12. Jan 26, 2012
  13. Jan 24, 2012
  14. Jan 13, 2012
  15. Nov 10, 2011
    • hjk's avatar
      more Id type fixes · 82f55736
      hjk authored
      
      Change-Id: I3720946ba5485696822976567d83b4d6cb1fb283
      
      x
      
      Change-Id: Iab58bc34bc56371405d132315573b484a533b77c
      Reviewed-by: default avatarhjk <qthjk@ovi.com>
      82f55736
  16. Nov 03, 2011
  17. 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
  18. Sep 12, 2011
  19. Sep 08, 2011
  20. Sep 07, 2011
  21. Aug 08, 2011
  22. May 26, 2011
  23. May 20, 2011
  24. May 19, 2011
  25. 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
  26. May 06, 2011
  27. Apr 13, 2011
  28. 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
  29. Feb 21, 2011
  30. Jan 19, 2011
  31. Jan 12, 2011
Loading