a40b694b5c
(cherry picked from commit 75bd1c694e
)
66 lines
2.3 KiB
C++
66 lines
2.3 KiB
C++
/*
|
|
* SPDX-FileCopyrightText: 2018 Nicolas Fella <nicolas.fella@gmx.de>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
*/
|
|
|
|
#include <QApplication>
|
|
#include <QCommandLineParser>
|
|
#include <QStandardPaths>
|
|
#include <QStyle>
|
|
|
|
#include "kdeconnect-version.h"
|
|
#include <KAboutData>
|
|
#include <KCMultiDialog>
|
|
#include <KCrash>
|
|
#include <KDBusService>
|
|
#include <KLocalizedString>
|
|
#include <KWindowSystem>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
QIcon::setFallbackThemeName(QStringLiteral("breeze"));
|
|
|
|
QApplication app(argc, argv);
|
|
app.setWindowIcon(QIcon::fromTheme(QStringLiteral("kdeconnect")));
|
|
KAboutData about(QStringLiteral("kdeconnect-settings"),
|
|
i18n("KDE Connect Settings"),
|
|
QStringLiteral(KDECONNECT_VERSION_STRING),
|
|
i18n("KDE Connect Settings"),
|
|
KAboutLicense::GPL,
|
|
i18n("(C) 2018-2020 Nicolas Fella"));
|
|
KAboutData::setApplicationData(about);
|
|
|
|
KCrash::initialize();
|
|
|
|
QCommandLineParser parser;
|
|
parser.addOption(QCommandLineOption(QStringLiteral("args"), i18n("Arguments for the config module"), QStringLiteral("args")));
|
|
|
|
about.setupCommandLine(&parser);
|
|
parser.process(app);
|
|
about.processCommandLine(&parser);
|
|
|
|
KDBusService dbusService(KDBusService::Unique);
|
|
|
|
KCMultiDialog *dialog = new KCMultiDialog;
|
|
dialog->addModule(KPluginMetaData(QStringLiteral("plasma/kcms/systemsettings_qwidgets/kcm_kdeconnect")), {parser.value(QStringLiteral("args"))});
|
|
|
|
dialog->setAttribute(Qt::WA_DeleteOnClose);
|
|
dialog->show();
|
|
|
|
QObject::connect(&dbusService, &KDBusService::activateRequested, dialog, [dialog](const QStringList &args, const QString & /*workingDir*/) {
|
|
KWindowSystem::updateStartupId(dialog->windowHandle());
|
|
KWindowSystem::activateWindow(dialog->windowHandle());
|
|
|
|
QCommandLineParser parser;
|
|
parser.addOption(QCommandLineOption(QStringLiteral("args"), i18n("Arguments for the config module"), QStringLiteral("args")));
|
|
parser.parse(args);
|
|
|
|
dialog->clear();
|
|
dialog->addModule(KPluginMetaData(QStringLiteral("plasma/kcms/systemsettings_qwidgets/kcm_kdeconnect")), {parser.value(QStringLiteral("args"))});
|
|
});
|
|
|
|
app.setQuitOnLastWindowClosed(true);
|
|
|
|
return app.exec();
|
|
}
|