2e67f95017
The rationale is explained in https://planet.kde.org/friedrich-kossebau-2023-06-28-include-also-moc-files-of-headers/ In case of KDEConnect, it impressively speeds up compilation. Before it took 390 seconds on a clean build and with this change it took 330 seconds. This is due to the mocs_compilation having to include the header files and thus all their headers. Due to the lots of small plugins we have, this means that the same headers must be compiled plenty of times. When we include the moc files directly in the C++ file, they are already available.
47 lines
1.3 KiB
C++
47 lines
1.3 KiB
C++
/**
|
|
* SPDX-FileCopyrightText: 2013 Albert Vaca <albertvaka@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
*/
|
|
|
|
#include "kdeconnectpluginkcm.h"
|
|
|
|
struct KdeConnectPluginKcmPrivate {
|
|
QString m_deviceId;
|
|
QString m_pluginName;
|
|
KdeConnectPluginConfig *m_config = nullptr;
|
|
};
|
|
|
|
KdeConnectPluginKcm::KdeConnectPluginKcm(QObject *parent, const KPluginMetaData &data, const QVariantList &args)
|
|
#if QT_VERSION_MAJOR < 6
|
|
: KCModule(qobject_cast<QWidget *>(parent), args)
|
|
#else
|
|
: KCModule(parent)
|
|
#endif
|
|
, d(new KdeConnectPluginKcmPrivate())
|
|
{
|
|
Q_ASSERT(data.isValid()); // Even if we have empty metadata, it should be valid!
|
|
d->m_deviceId = args.at(0).toString();
|
|
const static QRegularExpression removeConfigPostfix(QStringLiteral("_config$"));
|
|
d->m_pluginName = data.pluginId().remove(removeConfigPostfix);
|
|
|
|
// The parent of the config should be the plugin itself
|
|
d->m_config = new KdeConnectPluginConfig(d->m_deviceId, d->m_pluginName);
|
|
}
|
|
|
|
KdeConnectPluginKcm::~KdeConnectPluginKcm()
|
|
{
|
|
delete d->m_config;
|
|
}
|
|
|
|
KdeConnectPluginConfig *KdeConnectPluginKcm::config() const
|
|
{
|
|
return d->m_config;
|
|
}
|
|
|
|
QString KdeConnectPluginKcm::deviceId() const
|
|
{
|
|
return d->m_deviceId;
|
|
}
|
|
|
|
#include "moc_kdeconnectpluginkcm.cpp"
|