// Copyright (C) 2020 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 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 #include #include #include #include #include #include using namespace Core; using namespace ProjectExplorer; using namespace Utils; namespace WebAssembly { namespace Internal { class WebAssemblyPluginPrivate { public: WebAssemblyToolChainFactory toolChainFactory; WebAssemblyDeviceFactory deviceFactory; WebAssemblyQtVersionFactory qtVersionFactory; EmrunRunConfigurationFactory emrunRunConfigurationFactory; RunWorkerFactory emrunRunWorkerFactory{ makeEmrunWorker(), {ProjectExplorer::Constants::NORMAL_RUN_MODE}, {Constants::WEBASSEMBLY_RUNCONFIGURATION_EMRUN} }; WebAssemblyOptionsPage optionsPage; }; static WebAssemblyPluginPrivate *dd = nullptr; WebAssemblyPlugin::WebAssemblyPlugin() { setObjectName("WebAssemblyPlugin"); } WebAssemblyPlugin::~WebAssemblyPlugin() { delete dd; dd = nullptr; } bool WebAssemblyPlugin::initialize(const QStringList& arguments, QString* errorString) { Q_UNUSED(arguments) Q_UNUSED(errorString) dd = new WebAssemblyPluginPrivate; return true; } 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); } } // namespace Internal } // namespace WebAssembly