forked from KDE/ktuberling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
70 lines (57 loc) · 2.87 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/***************************************************************************
* Copyright (C) 1999-2006 by Éric Bischoff <[email protected]> *
* Copyright (C) 2007 by Albert Astals Cid <[email protected]> *
* *
* 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) any later version. *
***************************************************************************/
#include <KLocalizedString>
#include <KAboutData>
#include <KCrash>
#include <QApplication>
#include <QCommandLineParser>
#include <QCommandLineOption>
#include <QDir>
#include <KDBusService>
#include "toplevel.h"
static const char version[] = "1.0.0";
// Main function
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
KLocalizedString::setApplicationDomain("ktuberling");
KAboutData aboutData( QStringLiteral("ktuberling"), i18n("KTuberling"),
version, i18n("Potato game for kids"), KAboutLicense::GPL,
i18n("(c) 1999-2009, The KTuberling Developers"));
aboutData.addAuthor(i18n("Albert Astals Cid"), i18n("Maintainer"), QStringLiteral("[email protected]"));
aboutData.addAuthor(i18n("Éric Bischoff"), i18n("Former Developer"), QStringLiteral("[email protected]"));
aboutData.addCredit(i18n("John Calhoun"), i18n("Original concept and artwork"));
aboutData.addCredit(i18n("Agnieszka Czajkowska"), i18n("New artwork"), QStringLiteral("[email protected]"));
aboutData.addCredit(i18n("Bas Willems"), i18n("New artwork"), QStringLiteral("[email protected]"));
aboutData.addCredit(i18n("Roger Larsson"), i18n("Sounds tuning"), QStringLiteral("[email protected]"));
aboutData.addCredit(i18n("Dolores Almansa"), i18n("New artwork"), QStringLiteral("[email protected]"));
aboutData.setHomepage(QStringLiteral("http://games.kde.org/ktuberling"));
QCommandLineParser parser;
KAboutData::setApplicationData(aboutData);
KCrash::initialize();
parser.addVersionOption();
parser.addHelpOption();
parser.addOption(QCommandLineOption(QStringList() << QStringLiteral("+<tuberling-file>"), i18n("Potato to open")));
aboutData.setupCommandLine(&parser);
parser.process(app);
aboutData.processCommandLine(&parser);
KDBusService service;
TopLevel *toplevel=0;
if (app.isSessionRestored())
RESTORE(TopLevel)
else {
toplevel = new TopLevel();
toplevel->show();
if (parser.positionalArguments().count())
toplevel->open(QUrl::fromUserInput(parser.positionalArguments().at(0), QDir::currentPath()));
}
app.setWindowIcon(QIcon::fromTheme(QStringLiteral("ktuberling")));
return app.exec();
}