02d97aabf4
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.
43 lines
1,003 B
C++
43 lines
1,003 B
C++
/**
|
|
* SPDX-FileCopyrightText: 2022 Nicolas Fella <nicolas.fella@gmx.de>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
*/
|
|
|
|
#include "openconfig.h"
|
|
|
|
#include <QDebug>
|
|
|
|
#include <KIO/CommandLauncherJob>
|
|
|
|
void OpenConfig::setXdgActivationToken(const QString &token)
|
|
{
|
|
m_currentToken = token;
|
|
}
|
|
|
|
void OpenConfig::openConfiguration(const QString &deviceId, const QString &pluginId)
|
|
{
|
|
QStringList args;
|
|
|
|
QString argument;
|
|
|
|
if (!deviceId.isEmpty()) {
|
|
args << QStringLiteral("--args");
|
|
argument = deviceId;
|
|
|
|
if (!pluginId.isEmpty()) {
|
|
argument += QLatin1Char(':') + pluginId;
|
|
}
|
|
|
|
args << argument;
|
|
}
|
|
|
|
auto job = new KIO::CommandLauncherJob(QStringLiteral("kdeconnect-settings"), args);
|
|
job->setDesktopName(QStringLiteral("org.kde.kdeconnect-settings"));
|
|
job->setStartupId(m_currentToken.toUtf8());
|
|
job->start();
|
|
|
|
m_currentToken = QString();
|
|
}
|
|
|
|
#include "moc_openconfig.cpp"
|