2018-10-11 21:52:42 +01:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2018 Aleix Pol Gonzalez <aleixpol@kde.org>
|
2015-06-13 00:30:38 +01:00
|
|
|
*
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
2015-06-13 00:30:38 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <QApplication>
|
2022-09-10 22:23:52 +01:00
|
|
|
#include <QCommandLineParser>
|
2020-10-24 21:21:23 +01:00
|
|
|
#include <QIcon>
|
2022-09-10 22:23:52 +01:00
|
|
|
#include <QProcess>
|
2015-06-13 00:30:38 +01:00
|
|
|
#include <QQmlApplicationEngine>
|
2019-02-03 00:44:22 +00:00
|
|
|
#include <QQmlContext>
|
2021-03-08 20:25:47 +00:00
|
|
|
#include <QQuickStyle>
|
2020-11-11 11:58:37 +00:00
|
|
|
#include <QStandardPaths>
|
2019-02-03 00:44:22 +00:00
|
|
|
|
2023-07-16 15:20:34 +01:00
|
|
|
#include "kdeconnect-version.h"
|
2015-06-13 00:30:38 +01:00
|
|
|
#include <KAboutData>
|
2021-06-13 09:19:12 +01:00
|
|
|
#include <KColorSchemeManager>
|
2022-09-10 22:23:52 +01:00
|
|
|
#include <KLocalizedContext>
|
|
|
|
#include <KLocalizedString>
|
2015-06-13 00:30:38 +01:00
|
|
|
|
2022-09-10 22:23:52 +01:00
|
|
|
int main(int argc, char *argv[])
|
2015-06-13 00:30:38 +01:00
|
|
|
{
|
2021-07-27 22:03:51 +01:00
|
|
|
QIcon::setFallbackThemeName(QStringLiteral("breeze"));
|
|
|
|
|
2015-06-13 00:30:38 +01:00
|
|
|
QApplication app(argc, argv);
|
2022-12-13 20:48:47 +00:00
|
|
|
KLocalizedString::setApplicationDomain("kdeconnect-app");
|
2021-05-23 06:12:29 +01:00
|
|
|
app.setWindowIcon(QIcon::fromTheme(QStringLiteral("kdeconnect")));
|
2022-09-10 22:23:52 +01:00
|
|
|
KAboutData aboutData(QStringLiteral("kdeconnect.app"),
|
|
|
|
i18n("KDE Connect"),
|
2022-12-13 20:48:47 +00:00
|
|
|
QStringLiteral(KDE_CONNECT_VERSION_STRING),
|
2022-09-10 22:23:52 +01:00
|
|
|
i18n("KDE Connect"),
|
|
|
|
KAboutLicense::GPL,
|
|
|
|
i18n("(c) 2015, Aleix Pol Gonzalez"));
|
2016-11-26 14:38:08 +00:00
|
|
|
aboutData.addAuthor(i18n("Aleix Pol Gonzalez"), i18n("Maintainer"), QStringLiteral("aleixpol@kde.org"));
|
2022-12-13 20:48:47 +00:00
|
|
|
aboutData.setTranslator(i18nc("NAME OF TRANSLATORS", "Your names"), i18nc("EMAIL OF TRANSLATORS", "Your emails"));
|
2023-10-21 23:36:40 +01:00
|
|
|
aboutData.setBugAddress("https://bugs.kde.org/enter_bug.cgi?product=kdeconnect&component=common");
|
2015-06-13 00:30:38 +01:00
|
|
|
KAboutData::setApplicationData(aboutData);
|
|
|
|
|
2021-06-02 22:45:21 +01:00
|
|
|
#ifdef Q_OS_WIN
|
2021-06-13 09:19:12 +01:00
|
|
|
KColorSchemeManager manager;
|
2021-06-02 22:45:21 +01:00
|
|
|
QApplication::setStyle(QStringLiteral("breeze"));
|
|
|
|
#endif
|
|
|
|
|
2021-03-08 20:25:47 +00:00
|
|
|
// Default to org.kde.desktop style unless the user forces another style
|
|
|
|
if (qEnvironmentVariableIsEmpty("QT_QUICK_CONTROLS_STYLE")) {
|
|
|
|
QQuickStyle::setStyle(QStringLiteral("org.kde.desktop"));
|
|
|
|
}
|
|
|
|
|
2021-07-14 04:44:12 +01:00
|
|
|
QString urlToShare;
|
2015-06-13 00:30:38 +01:00
|
|
|
{
|
|
|
|
QCommandLineParser parser;
|
2021-07-14 04:44:12 +01:00
|
|
|
parser.addPositionalArgument(QStringLiteral("url"), i18n("URL to share"));
|
2015-06-13 00:30:38 +01:00
|
|
|
aboutData.setupCommandLine(&parser);
|
|
|
|
parser.process(app);
|
|
|
|
aboutData.processCommandLine(&parser);
|
2021-07-14 04:44:12 +01:00
|
|
|
if (parser.positionalArguments().count() == 1) {
|
|
|
|
urlToShare = parser.positionalArguments().constFirst();
|
2022-09-10 22:23:52 +01:00
|
|
|
const QString kdeconnectHandlerExecutable =
|
|
|
|
QStandardPaths::findExecutable(QStringLiteral("kdeconnect-handler"), {QCoreApplication::applicationDirPath()});
|
2021-07-14 04:44:12 +01:00
|
|
|
if (!kdeconnectHandlerExecutable.isEmpty()) {
|
2022-09-10 22:23:52 +01:00
|
|
|
QProcess::startDetached(kdeconnectHandlerExecutable, {urlToShare});
|
2021-07-14 04:44:12 +01:00
|
|
|
return 0; // exit the app once kdeconnect-handler is started
|
|
|
|
}
|
|
|
|
}
|
2015-06-13 00:30:38 +01:00
|
|
|
}
|
2018-10-11 21:52:42 +01:00
|
|
|
|
2022-12-13 20:48:47 +00:00
|
|
|
qmlRegisterSingletonType("org.kde.kdeconnect.app", 1, 0, "About", [](QQmlEngine *engine, QJSEngine *) -> QJSValue {
|
|
|
|
return engine->toScriptValue(KAboutData::applicationData());
|
|
|
|
});
|
|
|
|
|
2015-09-07 16:42:19 +01:00
|
|
|
QQmlApplicationEngine engine;
|
2018-11-07 15:06:16 +00:00
|
|
|
engine.rootContext()->setContextObject(new KLocalizedContext(&engine));
|
2023-12-23 20:13:07 +00:00
|
|
|
engine.loadFromModule("org.kde.kdeconnect.app", "Main");
|
2015-09-07 16:42:19 +01:00
|
|
|
|
2015-06-13 00:30:38 +01:00
|
|
|
return app.exec();
|
|
|
|
}
|