Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Create type hierarchy widget; Refactor code from C++ hover into a simple ↵ | Leandro Melo | 2010-08-13 | 1 | -386/+23 | |
| | | | | | | reusable model. Hierarchy information removed from tooltips now. | |||||
* | Merged ScopedSymbol and Scope. | Roberto Raggi | 2010-08-11 | 1 | -6/+6 | |
| | ||||||
* | Fix potential endless recursion in C++ hover handler. | Leandro Melo | 2010-08-05 | 1 | -19/+28 | |
| | | | | | | | | To catch cases of invalid code like this: struct A : B {}; struct B : A {}; Reviewed-by: Roberto Raggi | |||||
* | Create a base hover handler. | Leandro Melo | 2010-08-03 | 1 | -188/+61 | |
| | ||||||
* | Color tip for QML; Start of a bit more extensible tooltip class. | Leandro Melo | 2010-08-02 | 1 | -4/+4 | |
| | ||||||
* | C++ tooltip: Make sure to get the correct list of base classes. | Leandro Melo | 2010-07-28 | 1 | -5/+14 | |
| | ||||||
* | C++ tooltip: Resolve variable declarations to their named types. | Leandro Melo | 2010-07-27 | 1 | -51/+91 | |
| | ||||||
* | C++ tooltip: Integration with Qt docs always on (for showing brief ↵ | Leandro Melo | 2010-07-22 | 1 | -66/+65 | |
| | | | | | | descriptions). The old integration option is now used to switch to extended descriptions. | |||||
* | C++ tooltip: Integration with qdocs now only with 4.7 html marks. | Leandro Melo | 2010-07-22 | 1 | -36/+33 | |
| | ||||||
* | Get rid of the deprecated method Overview::setShowFullQualifiedNames(). | Roberto Raggi | 2010-07-21 | 1 | -2/+0 | |
| | ||||||
* | C++ tooltip: Arrow diagrams to show inheritance. | Leandro Melo | 2010-07-20 | 1 | -30/+190 | |
| | ||||||
* | C++ tooltip: Changes in formatting extracted html. | Leandro Melo | 2010-07-20 | 1 | -11/+6 | |
| | ||||||
* | Fixes: Completing switch statements with enums in namespaces or classes. | con | 2010-07-19 | 1 | -8/+2 | |
| | | | | | | We need to add the fully qualified name to the case statements. Reviewed-by: Roberto Raggi | |||||
* | Some adjustments signed/unsigned | Thorbjørn Lindeijer | 2010-07-14 | 1 | -6/+6 | |
| | ||||||
* | C++ tooltip: Fixing name qualification. | Leandro Melo | 2010-07-14 | 1 | -24/+25 | |
| | | | | To conform with recent changes that affected LookupContext::fullyQualifiedName. | |||||
* | Yet another include purging spree. | Friedemann Kleint | 2010-07-13 | 1 | -2/+2 | |
| | ||||||
* | C++ tooltip: Option to integrate Qt docs into tooltips. | Leandro Melo | 2010-07-13 | 1 | -1/+5 | |
| | ||||||
* | C++ tooltip: Display macro tooltip only if hover is actually over the macro ↵ | Leandro Melo | 2010-07-13 | 1 | -6/+7 | |
| | | | | name. | |||||
* | Re-write of cpp hover handler and tooltip integration with qtdocs. | Leandro Melo | 2010-07-12 | 1 | -191/+273 | |
| | ||||||
* | Removed the TokenCache. | Erik Verbruggen | 2010-07-02 | 1 | -1/+1 | |
| | ||||||
* | Merge remote branch 'origin/2.0' | con | 2010-06-30 | 1 | -3/+5 | |
|\ | | | | | | | | | | | | | | | | | | | | | Conflicts: doc/qtcreator.qdoc share/qtcreator/gdbmacros/dumper.py src/libs/qmljs/qmljs-lib.pri src/plugins/debugger/breakhandler.cpp src/plugins/projectexplorer/projectexplorer.h src/plugins/qt4projectmanager/qt-maemo/maemopackagecreationstep.cpp src/plugins/qt4projectmanager/qt-maemo/maemopackagecreationstep.h | |||||
| * | Fixed unwanted line breaks in tool tips. | Robert Loehning | 2010-06-25 | 1 | -3/+5 | |
| | | | | | | | | Task-number: QTCREATORBUG-1169 | |||||
* | | Introduced token caching to prevent repetetive tokenizing. | Erik Verbruggen | 2010-06-14 | 1 | -1/+1 | |
| | | | | | | | | | | | | Also removed TokenUnderCursor as it's functionality is in the token cache. Reviewed-by: ckamm | |||||
* | | Merge remote branch 'origin/2.0' | con | 2010-06-11 | 1 | -26/+4 | |
|\ \ | |/ | | | | | | | | | | | | | | | | | | | Conflicts: doc/qtcreator.qdoc src/plugins/projectexplorer/taskwindow.h src/plugins/qmldesigner/designercore/model/modelmerger.cpp src/plugins/qmljseditor/qmljshoverhandler.h src/plugins/qt4projectmanager/Qt4ProjectManager.pluginspec src/plugins/qt4projectmanager/qt-maemo/maemopackagecreationwidget.cpp src/plugins/subversion/subversionplugin.cpp | |||||
| * | Move help manager into core. | kh1 | 2010-06-11 | 1 | -26/+4 | |
| | | | | | | | | | | | | | | | | - lessens open file handles - improves help plugin startup further Task-number: QTCREATORBUG-337 Reviewed-by: ck | |||||
* | | Revert "Introduced a token cache for the C++ editor." | Erik Verbruggen | 2010-06-04 | 1 | -1/+1 | |
| | | | | | | | | This reverts commit c2393df02332618c8cf6159d9d6f6a40041ced89. | |||||
* | | Fixed hidden parameters. | Erik Verbruggen | 2010-06-04 | 1 | -4/+4 | |
| | | ||||||
* | | Introduced a token cache for the C++ editor. | Erik Verbruggen | 2010-06-04 | 1 | -1/+1 | |
| | | | | | | | | | | This should speed things up a bit, because before, the line was tokenized at least 3 times. | |||||
* | | Merge remote branch 'origin/2.0' | hjk | 2010-06-02 | 1 | -7/+8 | |
|\ \ | |/ | | | | | | | | | | | Conflicts: doc/qtcreator.qdoc src/plugins/debugger/debuggermanager.cpp src/plugins/texteditor/basetexteditor.cpp | |||||
| * | Fixed context help for Qt includes | Thorbjørn Lindeijer | 2010-06-01 | 1 | -7/+8 | |
| | | | | | | | | | | | | | | | | Was broken in 915a07bdbbd5dc65332369a117acde58793a165d, which caused help links only to be resolved for expressions under the cursor. Task-number: QTCREATORBUG-159 Reviewed-by: ckamm | |||||
* | | Reenabled the tooltip. | Roberto Raggi | 2010-05-14 | 1 | -120/+29 | |
| | | ||||||
* | | Improved LookupItem and get rid of some deprecated code. | Roberto Raggi | 2010-05-14 | 1 | -5/+12 | |
| | | ||||||
* | | Try to use the new LookupContext. | Roberto Raggi | 2010-05-05 | 1 | -4/+9 | |
| | | ||||||
* | | Deprecated the current LookupContext. | Roberto Raggi | 2010-05-05 | 1 | -1/+1 | |
|/ | ||||||
* | Only escape the code tooltip when it is used as rich text | Thorbjørn Lindeijer | 2010-04-21 | 1 | -7/+3 | |
| | | | | | | Since the fix in 01a0ec161cf5e814b53151a040afc2ac1acd69f8, sometimes & would turn up in the tooltips due to them being escaped but not interpreted as HTML. | |||||
* | Fixed unwanted wrapping of code editor tooltips | Thorbjørn Lindeijer | 2010-04-15 | 1 | -1/+1 | |
| | | | | | | | | | Turns out the <nobr> actually caused wrapping in some cases because the tag made the QToolTip turn on its wrapping feature due to the text being rich text. So avoid adding it to plain text tooltips unnecessarily. Reviewed-by: hunger Task-number: QTCREATORBUG-1169 | |||||
* | CppEditor: Fix context sensitive help for namespaced libraries. | Christian Kamm | 2010-04-06 | 1 | -8/+26 | |
| | | | | | | | | If the generated documentation doesn't contain the namespace name, we failed to look up the correct help page. Task-number: QTCREATORBUG-946 Reviewed-by: Erik Verbruggen | |||||
* | Fixes: Tooltips for hover help didn't show up anymore. | con | 2010-03-23 | 1 | -1/+1 | |
| | | | | Reviewed-by: Thorbjørn | |||||
* | Avoid pulling in the svg plugin. | con | 2010-03-05 | 1 | -1/+1 | |
| | ||||||
* | Long live the king! | hjk | 2010-03-05 | 1 | -1/+1 | |
| | ||||||
* | Set auto save filter to false, it triggers an unnecessary db write. | kh1 | 2010-03-04 | 1 | -1/+1 | |
| | ||||||
* | Fix some code scanning issues. | Friedemann Kleint | 2010-02-01 | 1 | -1/+1 | |
| | | | | foreach()-Loops. | |||||
* | Initial work on the new CPlusPlus::Snapshot. | Roberto Raggi | 2009-12-07 | 1 | -1/+1 | |
| | | | | Encapsulate the details. | |||||
* | Use const names. | Roberto Raggi | 2009-12-01 | 1 | -6/+6 | |
| | ||||||
* | Use const literals. | Roberto Raggi | 2009-12-01 | 1 | -2/+2 | |
| | ||||||
* | some tuning of the layer extra selections | mae | 2009-11-30 | 1 | -0/+7 | |
| | | | | Remove overlap. Add extra selection tooltips for the cpp hover handler. | |||||
* | Get rid off QPair<FullySpecifiedType, Symbol *>. Use LookupItem intead. | Roberto Raggi | 2009-11-17 | 1 | -6/+5 | |
| | ||||||
* | Check for null scope when hovering. | Christian Kamm | 2009-10-26 | 1 | -1/+2 | |
| | | | | | | | Fixes a segfault when hovering over QtCleanUpFunction in qcoreapplication.h. Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com> | |||||
* | Fixed possible crash when building the helpId | Roberto Raggi | 2009-10-14 | 1 | -1/+1 | |
| | ||||||
* | Prefer Classes to constructors when building the `help id' | Roberto Raggi | 2009-10-09 | 1 | -1/+12 | |
| |