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:
hjk
2024-01-15 18:11:28 +01:00
parent 446d79ad67
commit 0db551bfe7
3 changed files with 76 additions and 82 deletions

View File

@@ -102,8 +102,8 @@ QbsProductNode::QbsProductNode(const QJsonObject &prd) : ProjectNode(FilePath())
void QbsProductNode::build()
{
QbsProjectManagerPlugin::buildNamedProduct(static_cast<QbsProject *>(getProject()),
m_productData.value("full-display-name").toString());
buildNamedProduct(static_cast<QbsProject *>(getProject()),
m_productData.value("full-display-name").toString());
}
QStringList QbsProductNode::targetApplications() const

View File

@@ -26,6 +26,8 @@
#include <coreplugin/icore.h>
#include <coreplugin/idocument.h>
#include <extensionsystem/iplugin.h>
#include <projectexplorer/buildmanager.h>
#include <projectexplorer/project.h>
#include <projectexplorer/projectexplorer.h>
@@ -38,15 +40,16 @@
#include <utils/fsengine/fileiconprovider.h>
#include <utils/mimeconstants.h>
#include <utils/parameteraction.h>
#include <utils/qtcassert.h>
#include <utils/utilsicons.h>
#include <QAction>
using namespace ProjectExplorer;
using namespace Utils;
namespace QbsProjectManager {
namespace Internal {
namespace QbsProjectManager::Internal {
static Node *currentEditorNode()
{
@@ -72,6 +75,67 @@ public:
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()
{
delete d;
@@ -549,11 +613,12 @@ void QbsProjectManagerPlugin::reparseProject(QbsProject *project)
bs->scheduleParsing();
}
void QbsProjectManagerPlugin::buildNamedProduct(QbsProject *project, const QString &product)
void buildNamedProduct(QbsProject *project, const QString &product)
{
QbsProjectManagerPlugin::runStepsForProducts(
project, QStringList(product), {Utils::Id(ProjectExplorer::Constants::BUILDSTEPS_BUILD)});
}
} // namespace Internal
} // namespace QbsProjectManager
} // QbsProjectManager::Internal
#include "qbsprojectmanagerplugin.moc"

View File

@@ -3,83 +3,12 @@
#pragma once
#include <extensionsystem/iplugin.h>
#include <utils/id.h>
#include <utils/parameteraction.h>
#include <QString>
namespace ProjectExplorer {
class Target;
class Node;
} // namespace ProjectExplorer
namespace QbsProjectManager {
namespace Internal {
namespace QbsProjectManager::Internal {
class QbsProject;
class QbsProjectManagerPluginPrivate;
class QbsProjectManagerPlugin final : public ExtensionSystem::IPlugin
{
Q_OBJECT
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QtCreatorPlugin" FILE "QbsProjectManager.json")
void buildNamedProduct(QbsProject *project, const QString &product);
public:
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
} // QbsProjectManager::Private