forked from qt-creator/qt-creator
Merge CppTools into CppEditor
There was no proper separation of responsibilities between these plugins. In particular, CppTools had lots of editor-related functionality, so it's not clear why it was separated out in the first place. In fact, for a lot of code, it seemed quite arbitrary where it was put (just one example: switchHeaderSource() was in CppTools, wheras switchDeclarationDefinition() was in CppEditor). Merging the plugins will enable us to get rid of various convoluted pseudo-abstractions that were only introduced to keep up the artificial separation. Change-Id: Iafc3bce625b4794f6d4aa03df6cddc7f2d26716a Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -33,7 +33,7 @@
|
||||
#include <coreplugin/progressmanager/futureprogress.h>
|
||||
#include <coreplugin/progressmanager/progressmanager.h>
|
||||
|
||||
#include <cpptools/cppmodelmanager.h>
|
||||
#include <cppeditor/cppmodelmanager.h>
|
||||
|
||||
#include <utils/algorithm.h>
|
||||
#include <utils/macroexpander.h>
|
||||
@@ -123,7 +123,7 @@ void CppcheckTool::updateArguments()
|
||||
m_runner->reconfigure(m_options.binary, arguments.join(' '));
|
||||
}
|
||||
|
||||
QStringList CppcheckTool::additionalArguments(const CppTools::ProjectPart &part) const
|
||||
QStringList CppcheckTool::additionalArguments(const CppEditor::ProjectPart &part) const
|
||||
{
|
||||
QStringList result;
|
||||
|
||||
@@ -204,22 +204,22 @@ void CppcheckTool::check(const Utils::FilePaths &files)
|
||||
if (filtered.isEmpty())
|
||||
return;
|
||||
|
||||
const CppTools::ProjectInfo::ConstPtr info
|
||||
= CppTools::CppModelManager::instance()->projectInfo(m_project);
|
||||
const CppEditor::ProjectInfo::ConstPtr info
|
||||
= CppEditor::CppModelManager::instance()->projectInfo(m_project);
|
||||
if (!info)
|
||||
return;
|
||||
const QVector<CppTools::ProjectPart::ConstPtr> parts = info->projectParts();
|
||||
const QVector<CppEditor::ProjectPart::ConstPtr> parts = info->projectParts();
|
||||
if (parts.size() == 1) {
|
||||
QTC_ASSERT(parts.first(), return);
|
||||
addToQueue(filtered, *parts.first());
|
||||
return;
|
||||
}
|
||||
|
||||
std::map<CppTools::ProjectPart::ConstPtr, Utils::FilePaths> groups;
|
||||
std::map<CppEditor::ProjectPart::ConstPtr, Utils::FilePaths> groups;
|
||||
for (const Utils::FilePath &file : qAsConst(filtered)) {
|
||||
const QString stringed = file.toString();
|
||||
for (const CppTools::ProjectPart::ConstPtr &part : parts) {
|
||||
using CppTools::ProjectFile;
|
||||
for (const CppEditor::ProjectPart::ConstPtr &part : parts) {
|
||||
using CppEditor::ProjectFile;
|
||||
QTC_ASSERT(part, continue);
|
||||
const auto match = [stringed](const ProjectFile &pFile){return pFile.path == stringed;};
|
||||
if (Utils::contains(part->files, match))
|
||||
@@ -231,7 +231,7 @@ void CppcheckTool::check(const Utils::FilePaths &files)
|
||||
addToQueue(group.second, *group.first);
|
||||
}
|
||||
|
||||
void CppcheckTool::addToQueue(const Utils::FilePaths &files, const CppTools::ProjectPart &part)
|
||||
void CppcheckTool::addToQueue(const Utils::FilePaths &files, const CppEditor::ProjectPart &part)
|
||||
{
|
||||
const QString key = part.id();
|
||||
if (!m_cachedAdditionalArguments.contains(key))
|
||||
|
Reference in New Issue
Block a user