forked from qt-creator/qt-creator
Change-Id: I567965d266f20526bda9f823e31a04b354d53fb1 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
88 lines
2.5 KiB
C++
88 lines
2.5 KiB
C++
// Copyright (C) 2020 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#include "webassemblyconstants.h"
|
|
#include "webassemblydevice.h"
|
|
#include "webassemblyoptionspage.h"
|
|
#include "webassemblyplugin.h"
|
|
#include "webassemblyqtversion.h"
|
|
#include "webassemblyrunconfiguration.h"
|
|
#include "webassemblytoolchain.h"
|
|
#include "webassemblytr.h"
|
|
|
|
#include <coreplugin/coreconstants.h>
|
|
#include <coreplugin/icontext.h>
|
|
#include <coreplugin/icore.h>
|
|
|
|
#include <projectexplorer/devicesupport/devicemanager.h>
|
|
#include <projectexplorer/kitmanager.h>
|
|
|
|
#include <utils/infobar.h>
|
|
|
|
#include <QTimer>
|
|
|
|
using namespace Core;
|
|
using namespace ProjectExplorer;
|
|
using namespace Utils;
|
|
|
|
namespace WebAssembly::Internal {
|
|
|
|
class WebAssemblyPluginPrivate
|
|
{
|
|
public:
|
|
WebAssemblyToolChainFactory toolChainFactory;
|
|
WebAssemblyDeviceFactory deviceFactory;
|
|
WebAssemblyQtVersionFactory qtVersionFactory;
|
|
EmrunRunConfigurationFactory emrunRunConfigurationFactory;
|
|
EmrunRunWorkerFactory emrunRunWorkerFactory;
|
|
WebAssemblyOptionsPage optionsPage;
|
|
};
|
|
|
|
static WebAssemblyPluginPrivate *dd = nullptr;
|
|
|
|
WebAssemblyPlugin::WebAssemblyPlugin()
|
|
{
|
|
setObjectName("WebAssemblyPlugin");
|
|
}
|
|
|
|
WebAssemblyPlugin::~WebAssemblyPlugin()
|
|
{
|
|
delete dd;
|
|
dd = nullptr;
|
|
}
|
|
|
|
void WebAssemblyPlugin::initialize()
|
|
{
|
|
dd = new WebAssemblyPluginPrivate;
|
|
}
|
|
|
|
void WebAssemblyPlugin::extensionsInitialized()
|
|
{
|
|
connect(KitManager::instance(), &KitManager::kitsLoaded, this, [] {
|
|
DeviceManager::instance()->addDevice(WebAssemblyDevice::create());
|
|
askUserAboutEmSdkSetup();
|
|
});
|
|
}
|
|
|
|
void WebAssemblyPlugin::askUserAboutEmSdkSetup()
|
|
{
|
|
const char setupWebAssemblyEmSdk[] = "SetupWebAssemblyEmSdk";
|
|
|
|
if (!ICore::infoBar()->canInfoBeAdded(setupWebAssemblyEmSdk)
|
|
|| !WebAssemblyQtVersion::isQtVersionInstalled()
|
|
|| WebAssemblyToolChain::areToolChainsRegistered())
|
|
return;
|
|
|
|
InfoBarEntry info(setupWebAssemblyEmSdk,
|
|
Tr::tr("Setup Emscripten SDK for WebAssembly? "
|
|
"To do it later, select Edit > Preferences > Devices > WebAssembly."),
|
|
InfoBarEntry::GlobalSuppression::Enabled);
|
|
info.addCustomButton(Tr::tr("Setup Emscripten SDK"), [setupWebAssemblyEmSdk] {
|
|
ICore::infoBar()->removeInfo(setupWebAssemblyEmSdk);
|
|
QTimer::singleShot(0, []() { ICore::showOptionsDialog(Constants::SETTINGS_ID); });
|
|
});
|
|
ICore::infoBar()->addInfo(info);
|
|
}
|
|
|
|
} // WebAssembly::Internal
|