forked from qt-creator/qt-creator
QbsProjectManager: Hide plugin class definition in .cpp
Change-Id: I06944d633950ca5f6a81775ee3aede92796d8458 Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
This commit is contained in:
@@ -102,8 +102,8 @@ QbsProductNode::QbsProductNode(const QJsonObject &prd) : ProjectNode(FilePath())
|
|||||||
|
|
||||||
void QbsProductNode::build()
|
void QbsProductNode::build()
|
||||||
{
|
{
|
||||||
QbsProjectManagerPlugin::buildNamedProduct(static_cast<QbsProject *>(getProject()),
|
buildNamedProduct(static_cast<QbsProject *>(getProject()),
|
||||||
m_productData.value("full-display-name").toString());
|
m_productData.value("full-display-name").toString());
|
||||||
}
|
}
|
||||||
|
|
||||||
QStringList QbsProductNode::targetApplications() const
|
QStringList QbsProductNode::targetApplications() const
|
||||||
|
@@ -26,6 +26,8 @@
|
|||||||
#include <coreplugin/icore.h>
|
#include <coreplugin/icore.h>
|
||||||
#include <coreplugin/idocument.h>
|
#include <coreplugin/idocument.h>
|
||||||
|
|
||||||
|
#include <extensionsystem/iplugin.h>
|
||||||
|
|
||||||
#include <projectexplorer/buildmanager.h>
|
#include <projectexplorer/buildmanager.h>
|
||||||
#include <projectexplorer/project.h>
|
#include <projectexplorer/project.h>
|
||||||
#include <projectexplorer/projectexplorer.h>
|
#include <projectexplorer/projectexplorer.h>
|
||||||
@@ -38,15 +40,16 @@
|
|||||||
|
|
||||||
#include <utils/fsengine/fileiconprovider.h>
|
#include <utils/fsengine/fileiconprovider.h>
|
||||||
#include <utils/mimeconstants.h>
|
#include <utils/mimeconstants.h>
|
||||||
|
#include <utils/parameteraction.h>
|
||||||
#include <utils/qtcassert.h>
|
#include <utils/qtcassert.h>
|
||||||
#include <utils/utilsicons.h>
|
#include <utils/utilsicons.h>
|
||||||
|
|
||||||
#include <QAction>
|
#include <QAction>
|
||||||
|
|
||||||
using namespace ProjectExplorer;
|
using namespace ProjectExplorer;
|
||||||
|
using namespace Utils;
|
||||||
|
|
||||||
namespace QbsProjectManager {
|
namespace QbsProjectManager::Internal {
|
||||||
namespace Internal {
|
|
||||||
|
|
||||||
static Node *currentEditorNode()
|
static Node *currentEditorNode()
|
||||||
{
|
{
|
||||||
@@ -72,6 +75,67 @@ public:
|
|||||||
QbsEditorFactory editorFactory;
|
QbsEditorFactory editorFactory;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
class QbsProjectManagerPlugin final : public ExtensionSystem::IPlugin
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QtCreatorPlugin" FILE "QbsProjectManager.json")
|
||||||
|
|
||||||
|
public:
|
||||||
|
static void runStepsForProducts(QbsProject *project,
|
||||||
|
const QStringList &products,
|
||||||
|
const QList<Id> &stepTypes);
|
||||||
|
|
||||||
|
private:
|
||||||
|
~QbsProjectManagerPlugin() final;
|
||||||
|
|
||||||
|
void initialize() final;
|
||||||
|
|
||||||
|
void targetWasAdded(ProjectExplorer::Target *target);
|
||||||
|
void projectChanged(QbsProject *project);
|
||||||
|
|
||||||
|
void buildFileContextMenu();
|
||||||
|
void buildFile();
|
||||||
|
void buildProductContextMenu();
|
||||||
|
void cleanProductContextMenu();
|
||||||
|
void rebuildProductContextMenu();
|
||||||
|
void runStepsForProductContextMenu(const QList<Id> &stepTypes);
|
||||||
|
void buildProduct();
|
||||||
|
void cleanProduct();
|
||||||
|
void rebuildProduct();
|
||||||
|
void runStepsForProduct(const QList<Id> &stepTypes);
|
||||||
|
void buildSubprojectContextMenu();
|
||||||
|
void cleanSubprojectContextMenu();
|
||||||
|
void rebuildSubprojectContextMenu();
|
||||||
|
void runStepsForSubprojectContextMenu(const QList<Id> &stepTypes);
|
||||||
|
|
||||||
|
void reparseSelectedProject();
|
||||||
|
void reparseCurrentProject();
|
||||||
|
void reparseProject(QbsProject *project);
|
||||||
|
|
||||||
|
void updateContextActions(ProjectExplorer::Node *node);
|
||||||
|
void updateReparseQbsAction();
|
||||||
|
void updateBuildActions();
|
||||||
|
|
||||||
|
void buildFiles(QbsProject *project, const QStringList &files,
|
||||||
|
const QStringList &activeFileTags);
|
||||||
|
void buildSingleFile(QbsProject *project, const QString &file);
|
||||||
|
|
||||||
|
QbsProjectManagerPluginPrivate *d = nullptr;
|
||||||
|
QAction *m_reparseQbs = nullptr;
|
||||||
|
QAction *m_reparseQbsCtx = nullptr;
|
||||||
|
QAction *m_buildFileCtx = nullptr;
|
||||||
|
QAction *m_buildProductCtx = nullptr;
|
||||||
|
QAction *m_cleanProductCtx = nullptr;
|
||||||
|
QAction *m_rebuildProductCtx = nullptr;
|
||||||
|
QAction *m_buildSubprojectCtx = nullptr;
|
||||||
|
QAction *m_cleanSubprojectCtx = nullptr;
|
||||||
|
QAction *m_rebuildSubprojectCtx = nullptr;
|
||||||
|
ParameterAction *m_buildFile = nullptr;
|
||||||
|
ParameterAction *m_buildProduct = nullptr;
|
||||||
|
QAction *m_cleanProduct = nullptr;
|
||||||
|
QAction *m_rebuildProduct = nullptr;
|
||||||
|
};
|
||||||
|
|
||||||
QbsProjectManagerPlugin::~QbsProjectManagerPlugin()
|
QbsProjectManagerPlugin::~QbsProjectManagerPlugin()
|
||||||
{
|
{
|
||||||
delete d;
|
delete d;
|
||||||
@@ -549,11 +613,12 @@ void QbsProjectManagerPlugin::reparseProject(QbsProject *project)
|
|||||||
bs->scheduleParsing();
|
bs->scheduleParsing();
|
||||||
}
|
}
|
||||||
|
|
||||||
void QbsProjectManagerPlugin::buildNamedProduct(QbsProject *project, const QString &product)
|
void buildNamedProduct(QbsProject *project, const QString &product)
|
||||||
{
|
{
|
||||||
QbsProjectManagerPlugin::runStepsForProducts(
|
QbsProjectManagerPlugin::runStepsForProducts(
|
||||||
project, QStringList(product), {Utils::Id(ProjectExplorer::Constants::BUILDSTEPS_BUILD)});
|
project, QStringList(product), {Utils::Id(ProjectExplorer::Constants::BUILDSTEPS_BUILD)});
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace Internal
|
} // QbsProjectManager::Internal
|
||||||
} // namespace QbsProjectManager
|
|
||||||
|
#include "qbsprojectmanagerplugin.moc"
|
||||||
|
@@ -3,83 +3,12 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <extensionsystem/iplugin.h>
|
#include <QString>
|
||||||
#include <utils/id.h>
|
|
||||||
#include <utils/parameteraction.h>
|
|
||||||
|
|
||||||
namespace ProjectExplorer {
|
namespace QbsProjectManager::Internal {
|
||||||
class Target;
|
|
||||||
class Node;
|
|
||||||
} // namespace ProjectExplorer
|
|
||||||
|
|
||||||
namespace QbsProjectManager {
|
|
||||||
namespace Internal {
|
|
||||||
|
|
||||||
class QbsProject;
|
class QbsProject;
|
||||||
class QbsProjectManagerPluginPrivate;
|
|
||||||
|
|
||||||
class QbsProjectManagerPlugin final : public ExtensionSystem::IPlugin
|
void buildNamedProduct(QbsProject *project, const QString &product);
|
||||||
{
|
|
||||||
Q_OBJECT
|
|
||||||
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QtCreatorPlugin" FILE "QbsProjectManager.json")
|
|
||||||
|
|
||||||
public:
|
} // QbsProjectManager::Private
|
||||||
static void buildNamedProduct(QbsProject *project, const QString &product);
|
|
||||||
|
|
||||||
private:
|
|
||||||
~QbsProjectManagerPlugin() final;
|
|
||||||
|
|
||||||
void initialize() final;
|
|
||||||
|
|
||||||
void targetWasAdded(ProjectExplorer::Target *target);
|
|
||||||
void projectChanged(QbsProject *project);
|
|
||||||
|
|
||||||
void buildFileContextMenu();
|
|
||||||
void buildFile();
|
|
||||||
void buildProductContextMenu();
|
|
||||||
void cleanProductContextMenu();
|
|
||||||
void rebuildProductContextMenu();
|
|
||||||
void runStepsForProductContextMenu(const QList<Utils::Id> &stepTypes);
|
|
||||||
void buildProduct();
|
|
||||||
void cleanProduct();
|
|
||||||
void rebuildProduct();
|
|
||||||
void runStepsForProduct(const QList<Utils::Id> &stepTypes);
|
|
||||||
void buildSubprojectContextMenu();
|
|
||||||
void cleanSubprojectContextMenu();
|
|
||||||
void rebuildSubprojectContextMenu();
|
|
||||||
void runStepsForSubprojectContextMenu(const QList<Utils::Id> &stepTypes);
|
|
||||||
|
|
||||||
void reparseSelectedProject();
|
|
||||||
void reparseCurrentProject();
|
|
||||||
void reparseProject(QbsProject *project);
|
|
||||||
|
|
||||||
void updateContextActions(ProjectExplorer::Node *node);
|
|
||||||
void updateReparseQbsAction();
|
|
||||||
void updateBuildActions();
|
|
||||||
|
|
||||||
void buildFiles(QbsProject *project, const QStringList &files,
|
|
||||||
const QStringList &activeFileTags);
|
|
||||||
void buildSingleFile(QbsProject *project, const QString &file);
|
|
||||||
|
|
||||||
static void runStepsForProducts(QbsProject *project,
|
|
||||||
const QStringList &products,
|
|
||||||
const QList<Utils::Id> &stepTypes);
|
|
||||||
|
|
||||||
QbsProjectManagerPluginPrivate *d = nullptr;
|
|
||||||
QAction *m_reparseQbs = nullptr;
|
|
||||||
QAction *m_reparseQbsCtx = nullptr;
|
|
||||||
QAction *m_buildFileCtx = nullptr;
|
|
||||||
QAction *m_buildProductCtx = nullptr;
|
|
||||||
QAction *m_cleanProductCtx = nullptr;
|
|
||||||
QAction *m_rebuildProductCtx = nullptr;
|
|
||||||
QAction *m_buildSubprojectCtx = nullptr;
|
|
||||||
QAction *m_cleanSubprojectCtx = nullptr;
|
|
||||||
QAction *m_rebuildSubprojectCtx = nullptr;
|
|
||||||
Utils::ParameterAction *m_buildFile = nullptr;
|
|
||||||
Utils::ParameterAction *m_buildProduct = nullptr;
|
|
||||||
QAction *m_cleanProduct = nullptr;
|
|
||||||
QAction *m_rebuildProduct = nullptr;
|
|
||||||
};
|
|
||||||
|
|
||||||
} // namespace Internal
|
|
||||||
} // namespace QbsProjectManager
|
|
||||||
|
Reference in New Issue
Block a user