Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Add `Find References' of a symbol to the context menu only when the ↵ | Roberto Raggi | 2009-09-23 | 1 | -7/+8 | |
| | | | | environment variable QTCREATOR_REFERENCES is defined. | |||||
* | Find references | Roberto Raggi | 2009-09-23 | 1 | -0/+16 | |
| | ||||||
* | long live the king | hjk | 2009-08-14 | 1 | -1/+1 | |
| | ||||||
* | Made `Rename Symbol under Cursor' a command/action. | Roberto Raggi | 2009-08-04 | 1 | -0/+16 | |
| | ||||||
* | extend cpp editor's context menu with auto-indent and un-comment-selection | mae | 2009-07-22 | 1 | -0/+10 | |
| | | | | (user request) | |||||
* | Register C++ header and source file icons by mime type | Thorbjørn Lindeijer | 2009-07-15 | 1 | -28/+14 | |
| | | | | | Makes sure that all files recognized by the CppEditorFactory get the proper icon. | |||||
* | Have the file tree use the native icons on Mac OS X. | Norwegian Rock Cat | 2009-07-14 | 1 | -6/+18 | |
| | | | | Also synchronized suffixes to match what is in the xml file. | |||||
* | Fixes: Set icons for .hpp and .c files | Jens Bache-Wiig | 2009-07-14 | 1 | -0/+4 | |
| | | | | | | Details: Added one new purple icon for .c files and registered the same icon for .hpp extensions. | |||||
* | Update license headers and sales contact details. | Jason McDonald | 2009-06-17 | 1 | -2/+2 | |
| | | | | Reviewed-by: Trust Me | |||||
* | More work on `Quick Fix'. | Roberto Raggi | 2009-06-09 | 1 | -0/+5 | |
| | ||||||
* | Rely on lazy instantiation of text editor actions | Thorbjørn Lindeijer | 2009-05-26 | 1 | -1/+0 | |
| | | | | | | | | The actions are already lazily instantiated in TextEditorActionHandler::setupActions(), so there should be no need to call initializeActions() in all plugins on startup. Only the main text editor plugin will still initialize its actions, to make sure the menu items are there. | |||||
* | Make strings consistant, part. descriptions in the 'New' wizard. | Daniel Molkentin | 2009-05-25 | 1 | -2/+2 | |
| | ||||||
* | Restored changes to the overview combo that accidentally got reverted | Thorbjørn Lindeijer | 2009-04-27 | 1 | -1/+32 | |
| | | | | | Accidentally reverted in commit 713105ad85ab06b393d70ab0d13707b389f28be4. Thanks to Christian Hönig for notifying. | |||||
* | Fixes: Introduce a cpp settingspage containing file naming conventions ↵ | Friedemann Kleint | 2009-03-18 | 1 | -15/+0 | |
| | | | | | | | | | (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. | |||||
* | Unduplicated the code that initializes editor settings | Thorbjørn Lindeijer | 2009-03-17 | 1 | -17/+2 | |
| | | | | | | | | | This stuff was all over the place, a relic from before the editor settings were unified. Now the initialization is only done in TextEditorSettings. Fixes the .pro file editor and the generic project files editor, which before only used the font settings. | |||||
* | Rename CppPluginEditorFactory to CppEditorFactory | Thorbjørn Lindeijer | 2009-03-17 | 1 | -7/+7 | |
| | | | | | I couldn't find it since it was both hidden in the cppplugin.cpp file as well as having an unnecessarily long name. | |||||
* | Removed CPPEditorActionHandler | Thorbjørn Lindeijer | 2009-03-17 | 1 | -2/+2 | |
| | | | | Didn't add anything to the TextEditorActionHandler. | |||||
* | Fixes: change file license headers to include LGPL | hjk | 2009-02-25 | 1 | -21/+17 | |
| | ||||||
* | Fixes: Improved file icons | Jens Bache-Wiig | 2009-01-27 | 1 | -2/+2 | |
| | | | | | | | Details: This patch makes use of system icons as a base and draws overlay on top. This should blend a bit better into the native icon theme. | |||||
* | Avoid going through ICore when it's not necessary | Thorbjørn Lindeijer | 2009-01-21 | 1 | -9/+7 | |
| | | | | | Many singletons have their own instance() method, in which case there is no need to use ICore::instance() to get access to them. | |||||
* | replace Core::ICore::instance()->pluginManager() by ↵ | hjk | 2009-01-20 | 1 | -3/+2 | |
| | | | | ExtensionSystem::PluginManager::instance() | |||||
* | replace ExtensionSystem::PluginManager::instance()->getObject<Core::ICore>() ↵ | hjk | 2009-01-20 | 1 | -22/+17 | |
| | | | | by Core::ICore::instance() | |||||
* | Remove #include <extensionsystem/pluginmanager.h> from icore.h, a | hjk | 2009-01-19 | 1 | -1/+2 | |
| | | | | forward declaration is sufficient. | |||||
* | Fixes: - ICommand --> Command | con | 2009-01-14 | 1 | -2/+2 | |
| | | | | Details: - Naming convention | |||||
* | Bump year in licence header. | Daniel Molkentin | 2009-01-13 | 1 | -1/+1 | |
| | ||||||
* | Fixes: - Rename ActionManagerInterface --> ActionManager | con | 2009-01-13 | 1 | -2/+2 | |
| | | | | Details: - To make it conform to naming convention. | |||||
* | Merge branch '0.9.1-beta' | dt | 2008-12-17 | 1 | -1/+1 | |
|\ | ||||||
| * | chancge Nokia GPL exception version from 1.2 to 1.3 | hjk | 2008-12-16 | 1 | -1/+1 | |
| | | ||||||
* | | Moved the CppHoverHandler to the CppEditor plugin | Thorbjørn Lindeijer | 2008-12-16 | 1 | -2/+5 | |
|/ | | | | | 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. | |||||
* | more file cosmetics | hjk | 2008-12-02 | 1 | -0/+1 | |
| | ||||||
* | off-by-one in headers | hjk | 2008-12-02 | 1 | -1/+0 | |
| | ||||||
* | end-of-line whitespace correction of the new headers | hjk | 2008-12-02 | 1 | -10/+11 | |
| | ||||||
* | Initial import | con | 2008-12-02 | 1 | -0/+258 | |