2015-11-23 20:31:20 +01:00
|
|
|
/*
|
2020-08-13 21:08:54 +02:00
|
|
|
SPDX-FileCopyrightText: 2015 Marco Martin <notmart@gmail.com>
|
|
|
|
|
|
|
|
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
|
|
*/
|
2015-11-23 20:31:20 +01:00
|
|
|
|
|
|
|
#include <QApplication>
|
2020-07-08 07:44:43 +02:00
|
|
|
#include <QCommandLineParser>
|
|
|
|
#include <QCommandLineOption>
|
2015-11-23 20:31:20 +01:00
|
|
|
|
|
|
|
#include <KDBusService>
|
|
|
|
#include <KLocalizedString>
|
|
|
|
|
|
|
|
#include "customcorona.h"
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
QQuickWindow::setDefaultAlphaBuffer(true);
|
|
|
|
|
|
|
|
QApplication app(argc, argv);
|
2018-01-26 15:48:27 +01:00
|
|
|
app.setApplicationVersion(QStringLiteral("1.0"));
|
2015-11-23 20:31:20 +01:00
|
|
|
app.setOrganizationDomain(QStringLiteral("kde.org"));
|
|
|
|
|
|
|
|
KDBusService service(KDBusService::Unique);
|
|
|
|
|
|
|
|
QCommandLineParser parser;
|
|
|
|
parser.setApplicationDescription(i18n("Plasma Example shell"));
|
|
|
|
parser.addVersionOption();
|
|
|
|
parser.addHelpOption();
|
|
|
|
parser.process(app);
|
|
|
|
|
|
|
|
CustomCorona *corona = new CustomCorona();
|
|
|
|
|
|
|
|
const int ret = app.exec();
|
|
|
|
delete corona;
|
|
|
|
return ret;
|
|
|
|
}
|