forked from qt-creator/qt-creator
Coco: Move plugin class definition to .cpp
Change-Id: Ic183657636ab2d8094eee5253a0d6679ea5a805d Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
@@ -2,6 +2,6 @@ add_qtc_plugin(Coco
|
|||||||
PLUGIN_DEPENDS Core LanguageClient
|
PLUGIN_DEPENDS Core LanguageClient
|
||||||
SOURCES
|
SOURCES
|
||||||
cocolanguageclient.cpp cocolanguageclient.h
|
cocolanguageclient.cpp cocolanguageclient.h
|
||||||
cocoplugin.cpp cocoplugin.h
|
cocoplugin.cpp
|
||||||
cocotr.h
|
cocotr.h
|
||||||
)
|
)
|
||||||
|
@@ -11,7 +11,6 @@ QtcPlugin {
|
|||||||
|
|
||||||
files: [
|
files: [
|
||||||
"cocoplugin.cpp",
|
"cocoplugin.cpp",
|
||||||
"cocoplugin.h",
|
|
||||||
"cocolanguageclient.cpp",
|
"cocolanguageclient.cpp",
|
||||||
"cocolanguageclient.h",
|
"cocolanguageclient.h",
|
||||||
]
|
]
|
||||||
|
@@ -1,15 +1,17 @@
|
|||||||
// Copyright (C) 2022 The Qt Company Ltd.
|
// Copyright (C) 2022 The Qt Company Ltd.
|
||||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||||
|
|
||||||
#include "cocoplugin.h"
|
|
||||||
|
|
||||||
#include "cocolanguageclient.h"
|
#include "cocolanguageclient.h"
|
||||||
#include "cocotr.h"
|
#include "cocotr.h"
|
||||||
|
|
||||||
#include <coreplugin/actionmanager/actioncontainer.h>
|
#include <coreplugin/actionmanager/actioncontainer.h>
|
||||||
#include <coreplugin/actionmanager/actionmanager.h>
|
#include <coreplugin/actionmanager/actionmanager.h>
|
||||||
#include <coreplugin/icore.h>
|
#include <coreplugin/icore.h>
|
||||||
|
|
||||||
#include <debugger/analyzer/analyzerconstants.h>
|
#include <debugger/analyzer/analyzerconstants.h>
|
||||||
|
|
||||||
|
#include <extensionsystem/iplugin.h>
|
||||||
|
|
||||||
#include <utils/environment.h>
|
#include <utils/environment.h>
|
||||||
#include <utils/pathchooser.h>
|
#include <utils/pathchooser.h>
|
||||||
|
|
||||||
@@ -21,15 +23,31 @@ using namespace Utils;
|
|||||||
|
|
||||||
namespace Coco {
|
namespace Coco {
|
||||||
|
|
||||||
class CocoPluginPrivate
|
class CocoPlugin final : public ExtensionSystem::IPlugin
|
||||||
{
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QtCreatorPlugin" FILE "Coco.json")
|
||||||
|
|
||||||
public:
|
public:
|
||||||
void startCoco();
|
~CocoPlugin() final
|
||||||
|
{
|
||||||
|
// FIXME: Kill m_client?
|
||||||
|
}
|
||||||
|
|
||||||
CocoLanguageClient *m_client = nullptr;
|
void initialize() final
|
||||||
};
|
{
|
||||||
|
using namespace Core;
|
||||||
|
ActionContainer *menu = ActionManager::actionContainer(Debugger::Constants::M_DEBUG_ANALYZER);
|
||||||
|
if (menu) {
|
||||||
|
auto startCoco = new QAction("Squish Coco ...", this);
|
||||||
|
Command *cmd = ActionManager::registerAction(startCoco, "Coco.startCoco");
|
||||||
|
menu->addAction(cmd, Debugger::Constants::G_ANALYZER_TOOLS);
|
||||||
|
|
||||||
void CocoPluginPrivate::startCoco()
|
connect(startCoco, &QAction::triggered, this, [this] { this->startCoco(); });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void startCoco()
|
||||||
{
|
{
|
||||||
if (m_client)
|
if (m_client)
|
||||||
m_client->shutdown();
|
m_client->shutdown();
|
||||||
@@ -78,28 +96,10 @@ void CocoPluginPrivate::startCoco()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
CocoPlugin::CocoPlugin()
|
private:
|
||||||
: d (new CocoPluginPrivate)
|
CocoLanguageClient *m_client = nullptr;
|
||||||
{}
|
};
|
||||||
|
|
||||||
CocoPlugin::~CocoPlugin()
|
|
||||||
{
|
|
||||||
delete d;
|
|
||||||
}
|
|
||||||
|
|
||||||
void CocoPlugin::initialize()
|
|
||||||
{
|
|
||||||
using namespace Core;
|
|
||||||
ActionContainer *menu = ActionManager::actionContainer(Debugger::Constants::M_DEBUG_ANALYZER);
|
|
||||||
if (menu) {
|
|
||||||
auto startCoco = new QAction("Squish Coco ...", this);
|
|
||||||
Command *cmd = ActionManager::registerAction(startCoco, "Coco.startCoco");
|
|
||||||
menu->addAction(cmd, Debugger::Constants::G_ANALYZER_TOOLS);
|
|
||||||
|
|
||||||
connect(startCoco, &QAction::triggered, this, [this] { d->startCoco(); });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
} // namespace Coco
|
} // namespace Coco
|
||||||
|
|
||||||
|
#include "cocoplugin.moc"
|
||||||
|
@@ -1,26 +0,0 @@
|
|||||||
// Copyright (C) 2022 The Qt Company Ltd.
|
|
||||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
#include <extensionsystem/iplugin.h>
|
|
||||||
|
|
||||||
namespace Coco {
|
|
||||||
|
|
||||||
class CocoPluginPrivate;
|
|
||||||
|
|
||||||
class CocoPlugin : public ExtensionSystem::IPlugin
|
|
||||||
{
|
|
||||||
Q_OBJECT
|
|
||||||
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QtCreatorPlugin" FILE "Coco.json")
|
|
||||||
|
|
||||||
public:
|
|
||||||
CocoPlugin();
|
|
||||||
~CocoPlugin() override;
|
|
||||||
|
|
||||||
void initialize() override;
|
|
||||||
private:
|
|
||||||
CocoPluginPrivate *d;
|
|
||||||
};
|
|
||||||
|
|
||||||
} // namespace Coco
|
|
Reference in New Issue
Block a user