summaryrefslogtreecommitdiff
path: root/src/plugins/cppeditor/cppplugin.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* Merge branch '2.1'con2010-12-171-7/+11
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/plugins/coreplugin/basemode.cpp src/plugins/coreplugin/basemode.h src/plugins/coreplugin/scriptmanager/qworkbench_wrapper.cpp src/plugins/coreplugin/scriptmanager/qworkbench_wrapper.h src/plugins/debugger/cdb/cdbsymbolpathlisteditor.cpp src/plugins/debugger/debuggeragents.cpp src/plugins/debugger/debuggeruiswitcher.cpp src/plugins/debugger/debuggeruiswitcher.h src/plugins/projectexplorer/buildconfigdialog.cpp src/plugins/qmldesigner/components/propertyeditor/colorwidget.cpp src/plugins/qmldesigner/components/propertyeditor/colorwidget.h src/plugins/qmldesigner/designercore/include/enumeratormetainfo.h src/plugins/qmldesigner/designercore/include/modelutilities.h src/plugins/qmldesigner/designercore/include/nodeinstance.h src/plugins/qmldesigner/designercore/include/propertymetainfo.h src/plugins/qmldesigner/designercore/instances/graphicsscenenodeinstance.cpp src/plugins/qmldesigner/designercore/instances/graphicsscenenodeinstance.h src/plugins/qmldesigner/designercore/instances/graphicsviewnodeinstance.cpp src/plugins/qmldesigner/designercore/instances/graphicswidgetnodeinstance.cpp src/plugins/qmldesigner/designercore/instances/graphicswidgetnodeinstance.h src/plugins/qmldesigner/designercore/instances/nodeinstance.cpp src/plugins/qmldesigner/designercore/instances/qmlviewnodeinstance.cpp src/plugins/qmldesigner/designercore/instances/widgetnodeinstance.cpp src/plugins/qmldesigner/designercore/instances/widgetnodeinstance.h src/plugins/qmldesigner/designercore/metainfo/enumeratormetainfo.cpp src/plugins/qmldesigner/designercore/metainfo/propertymetainfo.cpp src/plugins/qmldesigner/designercore/model/modelutilities.cpp src/plugins/snippets/inputwidget.cpp src/plugins/snippets/snippetscompletion.cpp src/plugins/snippets/snippetscompletion.h src/plugins/snippets/snippetspec.cpp src/plugins/snippets/snippetsplugin.cpp src/plugins/snippets/snippetswindow.cpp src/plugins/snippets/snippetswindow.h src/plugins/texteditor/snippetsparser.cpp src/tools/qml/qmldom/main.cpp tests/manual/trk/runner.cpp tests/manual/trk/trkolddevice.cpp tests/manual/trk/trkolddevice.h tests/manual/trk/trkserver.cpp
| * License headers.con2010-12-171-7/+11
| |
* | Snippets: Make it easier for plugins to add snippets groupsLeandro Melo2010-12-081-2/+2
| | | | | | | | Groups are no longer enum values but identified from snippet providers.
* | Snippets: Feature enhancement start...Leandro Melo2010-12-081-0/+2
| | | | | | | | Provide an interface so users can create/edit/remove snippets.
* | Coreplugin: Header cleanup.Friedemann Kleint2010-11-021-0/+1
| | | | | | | | Clean icore.h.
* | Exported header cleanup: Separate out CppQuickFixCollector.Friedemann Kleint2010-11-011-0/+1
| |
* | Fix exported headers in Core and TextEditor.Friedemann Kleint2010-11-011-2/+2
|/ | | | | | | | | | | - Unexport Core::Internal::MainWindow and remove its includes. - Move RssFetcher from Core::Internal to Core. - Unexport CopyTaskHandler. - Move TextEditor's completion support and Refactor Overlay helper classes from TextEditor::Internal to TextEditor as they are exported. - Move internal BaseTextBlockSelection into private header. - Unexport TextEditorOverlay as they are not used.
* C++ Editor: Moved refactoring actions into sub-menu.Erik Verbruggen2010-09-151-10/+20
|
* coreplugin: use Core::Id is some placeshjk2010-09-101-3/+3
|
* Create type hierarchy widget; Refactor code from C++ hover into a simple ↵Leandro Melo2010-08-131-3/+26
| | | | | | reusable model. Hierarchy information removed from tooltips now.
* Force an update of the current editor.Roberto Raggi2010-08-031-0/+13
|
* Pedantic cleanup of filename parameters for QIcon constructorAlessandro Portale2010-07-301-3/+3
| | | | | | | | | | | Using more *::Constants::ICON_* where it makes sense and wrapping the file names into QLatin1String where they were missing. The increased usage of the ICON constants needed a few more cross plugin includes of *constants.h, here and there. I think that it is OK, since the dependencies were alredy there icon resource wise.
* Reworked the QuickFix infrastructure.Erik Verbruggen2010-07-261-2/+2
|
* Add flag to IPlugin::aboutToShutdown that allows asynchronous shutdown.con2010-07-131-1/+2
| | | | | | | If a plugin requests asyncronous shutdown, the shutdown sequence does not continue to deleting the plugins before it has sent a asynchronousShutdownFinished signal. During that time an event loop is running.
* CppEditor: Beautify names in APIKai Koehne2010-07-131-10/+10
| | | | Rename method[Overview] to outline
* Support Outline sidebar for C++ filesKai Koehne2010-07-081-0/+3
|
* Core::Context: remove special handling of C_GLOBAL_ID/C_GLOBALhjk2010-06-281-1/+1
|
* remove unneeded #includeshjk2010-06-251-1/+0
|
* Core::Context: compile hot fix for Windows.hjk2010-06-251-1/+1
|
* core: use a class derived from QList<int> instead of a QList<int> for ↵hjk2010-06-251-8/+6
| | | | | | | | Core::Context A mostly mechanical change. Reviewed-By: con
* Introduced IQuickFixFactory.Roberto Raggi2010-06-221-0/+2
|
* Reimplemented the C++ quick fix operations using TextEditor::QuickFixOperation.Roberto Raggi2010-06-031-2/+2
|
* Doc - UI - Fix UI text capitalization to follow the KDE Style Guide rules.Leena Miettinen2010-05-141-1/+1
| | | | Reviewed-by: ossi
* New texts for the wizard types in the new dialogDaniel Molkentin2010-05-121-3/+3
| | | | Reviewed-by: Leena Miettinen
* Rename IPlugin::shutdown --> IPlugin::aboutToShutdowncon2010-04-281-1/+1
| | | | Discussed-with: hjk
* Fix translation of C++ categoryDaniel Molkentin2010-04-091-1/+3
|
* More clear naming for the C++ wizard categories.Daniel Molkentin2010-04-091-2/+2
| | | | | | Also introducing Constants::WIZARD_CATEGORY and Constants::WIZARD_TR_CATEGORY for consistency with other wizards
* Header cleaning spree in Core/Debugger and Symbian/Maemo-code of Qt4.Friedemann Kleint2010-03-181-0/+1
|
* Long live the king!hjk2010-03-051-1/+1
|
* Merge remote branch 'origin/1.3'Oswald Buddenhagen2010-01-291-1/+1
|\ | | | | | | Trailing whitespace removal re-applied manually.
| * remove trailing whitespaceOswald Buddenhagen2010-01-291-1/+1
| | | | | | | | doing it in 1.3 as well to avoid possible later conflicts
* | FileIconProvider: Refactor class.Friedemann Kleint2010-01-281-2/+2
| | | | | | | | | | | | | | | | | | | | Streamline code, avoid functions and container.end() invocations, introduce private, reduce #ifdefs, clarify code and add comments about usage on various platforms. Implement QFileIconProvider interface, making it usable for file system models. Use in FolderNavigationWidget. On this occasion, add checkable "Synchronize" action to FolderNavigationWidget. Task-number: QTCREATORBUG-62
* | Reorder the "new" wizard categories.con2010-01-151-1/+1
| |
* | Fixes: Diff editors don't get correct name.con2010-01-111-2/+2
| | | | | | | | | | They were no longer showing e.g. the file name of the diffed file. Also separate editor id and editor context a bit.
* | Make method naming more consistent.Tobias Hunger2010-01-071-10/+14
| | | | | | | | | | | | | | | | | | | | | | | | * Use id() for methods returning a string used to represent some type of object. * Use displayName() for strings that are meant to be user visible. * Quieten some warnings while touching the files anyway. * Move Factories to their products in the plugins where that was not done before. Reviewed-by: dt
* | Wizards: SortFriedemann Kleint2009-11-271-8/+12
| | | | | | | | | | | | Introduce new QString id() const-API and sort wizards by [untranslated] category and id. Introduce respective constants. Rubber-stamped-by: con <qtc-committer@nokia.com>
* | cppeditor: fix book style capitalizationhjk2009-11-251-3/+3
| |
* | Show the quickfixes in the context menu.Roberto Raggi2009-11-231-1/+7
| |
* | Ensure the document is updated before invoking a quickfix.Roberto Raggi2009-11-181-4/+37
| |
* | Introduced the quick fix engineRoberto Raggi2009-11-131-0/+2
|/
* Code model: Update on changes from the versioning system.Friedemann Kleint2009-11-111-9/+35
| | | | | | | | | Add changed signals to IVersionControl and VCSManager and wire them to the update methods. Add a menu action for manually updating. Improved version of reverted 7aa24116935249a840e1350a6f8de73bc794fb09. Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com>
* Revert "Code model: Update on changes from the versioning system."con2009-11-101-43/+24
| | | | | | | | This reverts commit 7aa24116935249a840e1350a6f8de73bc794fb09. It breaks the code model updates completely. So reverting this change until we have the right thing. Reviewed-by: Roberto Raggi
* Code model: Update on changes from the versioning system.Friedemann Kleint2009-11-091-24/+43
| | | | | | | | | | | Add state logic to CppCodeModelManagerInterface, making it aware whether an indexer is running, protect the update methods from another invocation while running. Add changed signals to IVersionControl and VCSManager and wire them to the update methods. Add a menu action for manually updating. Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com> Reviewed-by: con <qtc-committer@nokia.com>
* Disable the find usage and symbol renaming while indexing is done.con2009-11-041-8/+27
| | | | Reviewed-by: Roberto Raggi
* Set correct mime type for C++ files.dt2009-10-131-1/+0
|
* Use CTRL+SHIFT+U as shortcut for the `Find Usages of a symbol'.Roberto Raggi2009-10-071-0/+1
| | | | Done with mae
* Added `Find Usages' of a Symbol.Roberto Raggi2009-10-051-0/+14
|
* Removed the `Find References' actionRoberto Raggi2009-09-291-15/+0
|
* Enable find references.Roberto Raggi2009-09-291-8/+6
|
* cpp editor actionsmae2009-09-241-7/+12
| | | | | remove some standard actions from the cpp editor context menu, and enhance the advanced menu instead.