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>
|
2020-10-24 21:21:23 +01:00
|
|
|
#include <QIcon>
|
2015-06-13 00:30:38 +01:00
|
|
|
#include <QQmlApplicationEngine>
|
|
|
|
#include <QCommandLineParser>
|
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
|
|
|
|
2015-06-13 00:30:38 +01:00
|
|
|
#include <KAboutData>
|
|
|
|
#include <KLocalizedString>
|
2018-11-07 15:06:16 +00:00
|
|
|
#include <KLocalizedContext>
|
2015-06-13 00:30:38 +01:00
|
|
|
|
2017-09-03 20:39:44 +01:00
|
|
|
int main(int argc, char* argv[])
|
2015-06-13 00:30:38 +01:00
|
|
|
{
|
|
|
|
QApplication app(argc, argv);
|
2020-11-11 11:58:37 +00:00
|
|
|
app.setWindowIcon(QIcon::fromTheme(QStringLiteral("kdeconnect"),
|
|
|
|
QIcon(QStandardPaths::locate(QStandardPaths::AppLocalDataLocation, QStringLiteral("icons/hicolor/scalable/apps/kdeconnect.svg")))));
|
2019-07-21 12:02:24 +01:00
|
|
|
KAboutData aboutData(QStringLiteral("kdeconnect.app"), i18n("KDE Connect"), QStringLiteral("1.0"), 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"));
|
2015-06-13 00:30:38 +01:00
|
|
|
KAboutData::setApplicationData(aboutData);
|
|
|
|
|
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"));
|
|
|
|
}
|
|
|
|
|
2015-06-13 00:30:38 +01:00
|
|
|
{
|
|
|
|
QCommandLineParser parser;
|
|
|
|
aboutData.setupCommandLine(&parser);
|
|
|
|
parser.process(app);
|
|
|
|
aboutData.processCommandLine(&parser);
|
|
|
|
}
|
2018-10-11 21:52:42 +01:00
|
|
|
|
2015-09-07 16:42:19 +01:00
|
|
|
QQmlApplicationEngine engine;
|
2018-11-07 15:06:16 +00:00
|
|
|
engine.rootContext()->setContextObject(new KLocalizedContext(&engine));
|
2016-11-26 14:38:08 +00:00
|
|
|
engine.load(QUrl(QStringLiteral("qrc:/qml/main.qml")));
|
2015-09-07 16:42:19 +01:00
|
|
|
|
2015-06-13 00:30:38 +01:00
|
|
|
return app.exec();
|
|
|
|
}
|