-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmain.cpp
45 lines (37 loc) · 1.26 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
* SPDX-FileCopyrightText: 2001 Stefan Schimanski <[email protected]>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "ktimer.h"
#include <KAboutData>
#include <KCrash>
#include <KDBusService>
#include <KLocalizedString>
#include <QApplication>
#include <QCommandLineParser>
#include <config-ktimer.h>
int main(int argc, char **argv)
{
QApplication app(argc, argv);
KLocalizedString::setApplicationDomain(QByteArrayLiteral("ktimer"));
KAboutData aboutData(QStringLiteral("ktimer"),
i18n("KTimer"),
QStringLiteral(KTIMER_VERSION),
i18n("KDE Timer"),
KAboutLicense::GPL,
i18n("(c) 2001, Stefan Schimanski"),
QStringLiteral("https://apps.kde.org/ktimer"));
aboutData.addAuthor(i18n("Stefan Schimanski"), QString(), QStringLiteral("[email protected]"));
QCommandLineParser parser;
KAboutData::setApplicationData(aboutData);
aboutData.setupCommandLine(&parser);
parser.process(app);
aboutData.processCommandLine(&parser);
KCrash::initialize();
app.setQuitOnLastWindowClosed(false);
KDBusService service;
auto timer = new KTimerPref;
timer->show();
return app.exec();
}