2018-12-06 15:06:06 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2018 Nicolas Fella <nicolas.fella@gmx.de>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License or (at your option) version 3 or any later version
|
|
|
|
* accepted by the membership of KDE e.V. (or its successor approved
|
|
|
|
* by the membership of KDE e.V.), which shall act as a proxy
|
|
|
|
* defined in Section 14 of version 3 of the license.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2019-03-23 16:29:26 +00:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2018-12-06 15:06:06 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <QApplication>
|
|
|
|
|
|
|
|
#include <KCMultiDialog>
|
|
|
|
#include <KAboutData>
|
|
|
|
#include <KLocalizedString>
|
|
|
|
#include "kdeconnect-version.h"
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
|
|
|
QApplication app(argc, argv);
|
2019-06-10 15:40:28 +01:00
|
|
|
KAboutData about(QStringLiteral("kdeconnect-settings"),
|
2018-12-06 15:06:06 +00:00
|
|
|
i18n("KDE Connect Settings"),
|
|
|
|
QStringLiteral(KDECONNECT_VERSION_STRING),
|
|
|
|
i18n("KDE Connect Settings"),
|
|
|
|
KAboutLicense::GPL,
|
|
|
|
i18n("(C) 2018 Nicolas Fella"));
|
|
|
|
KAboutData::setApplicationData(about);
|
|
|
|
|
|
|
|
KCMultiDialog* dialog = new KCMultiDialog;
|
2019-06-10 15:40:28 +01:00
|
|
|
dialog->addModule(QStringLiteral("kcm_kdeconnect"));
|
2018-12-06 15:06:06 +00:00
|
|
|
dialog->setAttribute(Qt::WA_DeleteOnClose);
|
|
|
|
dialog->show();
|
|
|
|
|
|
|
|
app.setQuitOnLastWindowClosed(true);
|
|
|
|
|
|
|
|
return app.exec();
|
|
|
|
}
|
|
|
|
|