KPluginModel Class

A model that provides a list of available plugins and allows to disable/enable them. More...

Header: #include <KPluginModel>
CMake: find_package(KF6 REQUIRED COMPONENTS KCMUtils)
target_link_libraries(mytarget PRIVATE KCMUtilsCore)
Since: 5.94
Inherits: QAbstractListModel

Public Types

enum Roles { NameRole, IconRole, EnabledRole, DescriptionRole, IsChangeableRole, …, SortableRole }

Public Functions

KPluginModel(QObject *parent = nullptr)
void addPlugins(const QList<KPluginMetaData> &plugins, const QString &categoryLabel)
(since 6.0) void addUnsortablePlugins(const QList<KPluginMetaData> &plugins, const QString &categoryLabel)
void clear()
void defaults()
(since 5.94) KPluginMetaData findConfigForPluginId(const QString &pluginId) const
bool isSaveNeeded()
void load()
(since 6.0) void removePlugin(const KPluginMetaData &data)
void save()
void setConfig(const KConfigGroup &config)

Signals

void defaulted(bool isDefaulted)
void isSaveNeededChanged()

Detailed Description

Plugins need to define the X-KDE-ConfigModule property for their config modules to be found. The value for this property is the namespace and file name of the KCM for the plugin.

An example value is "kf6/krunner/kcms/kcm_krunner_charrunner", "kf6/krunner/kcms" is the namespace and "kcm_krunner_charrunner" the file name. The loaded KCMs don't need any embedded JSON metadata.

See also KPluginWidget.

Member Type Documentation

enum KPluginModel::Roles

ConstantValue
KPluginModel::NameRoleQt::DisplayRole
KPluginModel::IconRoleQt::DecorationRole
KPluginModel::EnabledRoleQt::CheckStateRole
KPluginModel::DescriptionRoleQt::UserRole + 1
KPluginModel::IsChangeableRole258
KPluginModel::MetaDataRole259
KPluginModel::ConfigRole260
KPluginModel::IdRole261
KPluginModel::EnabledByDefaultRole262
KPluginModel::SortableRole263

Member Function Documentation

[explicit] KPluginModel::KPluginModel(QObject *parent = nullptr)

void KPluginModel::addPlugins(const QList<KPluginMetaData> &plugins, const QString &categoryLabel)

Appends plugins to the model.

This will not replace existing entries.

plugins The plugins to be added.

categoryLabel A user-visible label for the section the plugins are added to.

[since 6.0] void KPluginModel::addUnsortablePlugins(const QList<KPluginMetaData> &plugins, const QString &categoryLabel)

Adds plugins that should not be sorted automatically based on their name.

This is useful in case your app has a custom sorting mechanism or implements reordering of plugins.

plugins The plugins to be added.

categoryLabel A user-visible label for the section the plugins are added to.

This function was introduced in 6.0.

void KPluginModel::clear()

Removes all plugins.

[signal] void KPluginModel::defaulted(bool isDefaulted)

Emitted when the enabled state isDefaulted, that is, it matches the default changes.

See also defaults.

void KPluginModel::defaults()

Resets the enabled state of the plugins to its defaults.

[since 5.94] KPluginMetaData KPluginModel::findConfigForPluginId(const QString &pluginId) const

Returns the KPluginMetaData object of the plugin's config module with the specified pluginId.

If no plugin is found or the plugin does not have a config, the resulting KPluginMetaData object will be invalid.

This function was introduced in 5.94.

bool KPluginModel::isSaveNeeded()

Returns whether there are unsaved changes to the enabled state of the plugins.

[signal] void KPluginModel::isSaveNeededChanged()

Emitted when isSaveNeeded is changed.

void KPluginModel::load()

Loads the enabled state of the plugins from the config group set by setConfig.

[since 6.0] void KPluginModel::removePlugin(const KPluginMetaData &data)

Removes a plugin with the specified data.

This function was introduced in 6.0.

void KPluginModel::save()

Saves the enabled state of the plugins to the config group set by setConfig.

void KPluginModel::setConfig(const KConfigGroup &config)

Sets the KConfigGroup config that is used to load/save the enabled state.