1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
|
/*
SPDX-FileCopyrightText: 2008 Andreas Pakulat <apaku@gmx.de>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "pluginpreferences.h"
#include <QVBoxLayout>
#if KCMUTILS_VERSION >= QT_VERSION_CHECK(5, 91, 0)
#include <KPluginWidget>
#include <KConfigGroup>
#else
#include <KPluginSelector>
#include <KPluginInfo>
#endif
#include <interfaces/isession.h>
#include "../core.h"
#include "../plugincontroller.h"
#include "debug.h"
namespace KDevelop
{
PluginPreferences::PluginPreferences(QWidget* parent)
: ConfigPage(nullptr, nullptr, parent)
{
auto* lay = new QVBoxLayout(this );
lay->setContentsMargins(0, 0, 0, 0);
#if KCMUTILS_VERSION >= QT_VERSION_CHECK(5, 91, 0)
selector = new KPluginWidget( this );
KConfigGroup cfgGroup(Core::self()->activeSession()->config(), "Plugins");
selector->setConfig(cfgGroup);
#else
selector = new KPluginSelector( this );
#endif
lay->addWidget( selector );
#if KCMUTILS_VERSION >= QT_VERSION_CHECK(5, 91, 0)
QMap<QString, QVector<KPluginMetaData>> plugins;
#else
QMap<QString, QList<KPluginInfo>> plugins;
#endif
const QMap<QString, QString> categories = {
{ QStringLiteral("Core"), i18nc("@title:group", "Core") },
{ QStringLiteral("Project Management"), i18nc("@title:group", "Project Management") },
{ QStringLiteral("Version Control"), i18nc("@title:group", "Version Control") },
{ QStringLiteral("Utilities"), i18nc("@title:group", "Utilities") },
{ QStringLiteral("Documentation"), i18nc("@title:group", "Documentation") },
{ QStringLiteral("Language Support"), i18nc("@title:group", "Language Support") },
{ QStringLiteral("Debugging"), i18nc("@title:group", "Debugging") },
{ QStringLiteral("Testing"), i18nc("@title:group", "Testing") },
{ QStringLiteral("Analyzers"), i18nc("@title:group", "Analyzers") },
{ QStringLiteral("Runtimes"), i18nc("@title:group", "Runtimes") },
{ QStringLiteral("Other"), i18nc("@title:group", "Other") }
};
const auto pluginInfos = Core::self()->pluginControllerInternal()->allPluginInfos();
for (const KPluginMetaData& info : pluginInfos) {
const QString loadMode = info.value(QStringLiteral("X-KDevelop-LoadMode"));
if( loadMode.isEmpty() || loadMode == QLatin1String("UserSelectable") )
{
QString category = info.category();
if (!categories.contains(category)) {
if (!category.isEmpty()) {
qCWarning(SHELL) << "unknown category for plugin" << info.name() << ":" << info.category();
}
category = QStringLiteral("Other");
}
#if KCMUTILS_VERSION >= QT_VERSION_CHECK(5, 91, 0)
plugins[category] << info;
#else
KPluginInfo kpi(info);
plugins[category] << kpi;
#endif
} else
qCDebug(SHELL) << "skipping..." << info.pluginId() << info.value(QStringLiteral("X-KDevelop-Category")) << loadMode;
}
for (auto it = plugins.constBegin(), end = plugins.constEnd(); it != end; ++it) {
#if KCMUTILS_VERSION >= QT_VERSION_CHECK(5, 91, 0)
selector->addPlugins(it.value(), categories.value(it.key()));
#else
selector->addPlugins(it.value(), KPluginSelector::ReadConfigFile,
categories.value(it.key()),
// no filter by category key, we did it ourselves above & will not work with "Other"
QString(),
Core::self()->activeSession()->config());
#endif
}
#if KCMUTILS_VERSION >= QT_VERSION_CHECK(5, 91, 0)
connect(selector, &KPluginWidget::changed, this, &PluginPreferences::changed);
#else
connect(selector, &KPluginSelector::changed, this, &PluginPreferences::changed);
#endif
}
void PluginPreferences::defaults()
{
Core::self()->pluginControllerInternal()->resetToDefaults();
selector->load();
}
void PluginPreferences::apply()
{
selector->save();
qCDebug(SHELL) << "Plugins before apply: " << Core::self()->pluginControllerInternal()->allPluginNames();
Core::self()->pluginControllerInternal()->updateLoadedPlugins();
qCDebug(SHELL) << "Plugins after apply: " << Core::self()->pluginControllerInternal()->allPluginNames();
selector->load(); // Some plugins may have failed to load, they must be unchecked.
}
void PluginPreferences::reset()
{
selector->load();
}
}
|