summaryrefslogtreecommitdiff
path: root/src/plugins/cpptools/cpptoolsplugin.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch '1.3' of git@scm.dev.nokia.troll.no:creator/mainline into 1.3con2009-10-051-4/+4
|\ | | | | | | | | | | | | Conflicts: src/plugins/cpptools/cppfindreferences.cpp src/plugins/cpptools/cpptoolsplugin.cpp src/plugins/texteditor/basefilefind.cpp
| * Rename namespace Core::Utils into UtilsFriedemann Kleint2009-10-051-4/+4
| | | | | | | | | | Also move Designer::Internal::FormWindowEditor -> Designer::FormWindowEditor.
* | Refactor search result window for use of many items and checked state.con2009-10-051-22/+22
|/
* long live the kinghjk2009-08-141-1/+1
|
* Do the scanning for include files in the backgroundThorbjørn Lindeijer2009-07-241-0/+5
| | | | | | In order to speed up completion for include statements. Reviewed-by: Daniel Molkentin <daniel.molkentin@nokia.com>
* Removing some unused semicolons after Q_UNUSEDAlessandro Portale2009-07-131-2/+2
| | | | There were both variants, with and without extra semicolon.
* Update license headers and sales contact details.Jason McDonald2009-06-171-2/+2
| | | | Reviewed-by: Trust Me
* Search the function callsRoberto Raggi2009-06-091-0/+56
|
* More work on `Quick Fix'.Roberto Raggi2009-06-091-0/+4
|
* Integrate merge-request #567 into branch 'master'con2009-06-041-0/+2
|\ | | | | | | | | | | | | | | Christian Hoenig (1): Implement CppCurrentDocumentFilter for symbols in current document Request-url: http://gitorious.org/qt-creator/qt-creator/merge_requests/567 Reviewed-by: con <qtc-committer@nokia.com>
| * Implement CppCurrentDocumentFilter for symbols in current documentChristian Hoenig2009-05-301-0/+2
| |
* | Introduced CppTools::Internal::SemanticSearch.Roberto Raggi2009-06-031-177/+5
| |
* | Store the original C++ Document when searching.Roberto Raggi2009-06-021-1/+2
| |
* | Oops! use the right overload of QString::indexOf :-)Roberto Raggi2009-06-021-1/+1
| |
* | Initial support for semantic searches.Roberto Raggi2009-06-021-2/+240
|/
* Renamed braces to bracketsThorbjørn Lindeijer2009-05-261-2/+2
| | | | | Since we're automatically inserting several kinds of brackets, but not braces ({ }).
* Switch header source between .h and .mm files.con2009-05-041-2/+7
|
* Made cpp file suffixes take effect after restart.Friedemann Kleint2009-04-291-3/+10
| | | | | | | | | In CppTools, keep cpp file settings in plugin and settings page via shared pointer and apply to mime DB in extensionsInitialized() (after CppEditor has loaded and registered the mime types). Task-number: 252299
* Fixes: Introduce a cpp settingspage containing file naming conventions ↵Friedemann Kleint2009-03-181-0/+2
| | | | | | | | | (lower case and suffixes). Reorder VCS settings pages. Task: 241959, 248085 RevBy: Optics/Naming checked by con Details: Give IOptionPage an id() to differentiate from trName(). Make showOptionsDialog return a bool (applied) and give it an optional parent. Change Cpp and form class wizards, give them a Configure... button to change those settings.
* Fixed switching header/source with additional dots in the filenameThorbjørn Lindeijer2009-03-161-1/+1
| | | | | For example when a file was called test.something.cpp, it would search for test.h instead of test.something.h.
* Fixes: simplify ProjectExplorerPlugin::instance() accesshjk2009-03-041-2/+1
|
* Fixes: change file license headers to include LGPLhjk2009-02-251-21/+17
|
* Fixes: some less caching of the ICore singleton pointerhjk2009-01-281-1/+1
|
* Avoid going through ICore when it's not necessaryThorbjørn Lindeijer2009-01-211-1/+1
| | | | | Many singletons have their own instance() method, in which case there is no need to use ICore::instance() to get access to them.
* replace ExtensionSystem::PluginManager::instance()->getObject<Core::ICore>() ↵hjk2009-01-201-21/+19
| | | | by Core::ICore::instance()
* Remove #include <extensionsystem/pluginmanager.h> from icore.h, ahjk2009-01-191-1/+2
| | | | forward declaration is sufficient.
* Fixes: - ICommand --> Commandcon2009-01-141-1/+1
| | | | Details: - Naming convention
* Fixes: - IActionContainer --> ActionContainercon2009-01-141-2/+2
| | | | Details: - Conform to naming convention
* Bump year in licence header.Daniel Molkentin2009-01-131-1/+1
|
* Fixes: - Rename ActionManagerInterface --> ActionManagercon2009-01-131-2/+2
| | | | Details: - To make it conform to naming convention.
* Fixes: - Switch Header/Source sometimes uses wrong filecon2009-01-061-2/+3
| | | | | | Task: - 237723 Details: - Look in the same directory first, then go through project's files.
* Merge branch '0.9.1-beta'dt2008-12-171-1/+1
|
* Added option to disable completion of common prefixThorbjørn Lindeijer2008-12-161-0/+2
| | | | Some people don't like this.
* Moved the CppHoverHandler to the CppEditor pluginThorbjørn Lindeijer2008-12-161-1/+0
| | | | | It used to be in CppTools, but since the hover handler only makes sense in the context of the C++ editor, this is a better place.
* Fixed saving of code completion settingsThorbjørn Lindeijer2008-12-151-1/+1
| | | | Save settings instead of crashing. Sorry about that!
* Added configuration options for code completionThorbjørn Lindeijer2008-12-151-3/+34
| | | | | It is now possible to choose between case-sensitive or case-insensitive completion. Also, you can now disable the automatic insertion of braces.
* Renamed cpptools.cpp to cpptoolsplugin.cppThorbjørn Lindeijer2008-12-151-0/+261
To match the class name, CppToolsPlugin.