forked from openkylin/bovo
77 lines
2.6 KiB
C++
77 lines
2.6 KiB
C++
/*******************************************************************
|
|
*
|
|
* Copyright 2007 Aron Boström <c02ab@efd.lth.se>
|
|
*
|
|
* Bovo 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, or (at your option)
|
|
* any later version.
|
|
*
|
|
* Bovo 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
|
|
* along with Bovo; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*
|
|
********************************************************************/
|
|
|
|
#include <QApplication>
|
|
#include <QCommandLineParser>
|
|
#include <KAboutData>
|
|
#include <Kdelibs4ConfigMigrator>
|
|
#include <KLocalizedString>
|
|
#include <KDBusService>
|
|
#include <KCrash>
|
|
|
|
#include "mainwindow.h"
|
|
#include "bovo_version.h"
|
|
|
|
using namespace gui;
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
// Fixes blurry icons with fractional scaling
|
|
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
|
|
QGuiApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
|
|
#endif
|
|
QApplication app(argc, argv);
|
|
#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
|
|
Kdelibs4ConfigMigrator migrate(QStringLiteral("bovo"));
|
|
migrate.setConfigFiles(QStringList() << QStringLiteral("bovorc"));
|
|
migrate.setUiFiles(QStringList() << QStringLiteral("bovoui.rc"));
|
|
migrate.migrate();
|
|
#endif
|
|
KLocalizedString::setApplicationDomain("bovo");
|
|
|
|
KAboutData aboutData(QStringLiteral("bovo"), i18n("Bovo"),
|
|
QStringLiteral(BOVO_VERSION_STRING), i18n("KDE Five in a Row Board Game"), KAboutLicense::GPL,
|
|
i18n("(c) 2002-2007, Aron Boström"),
|
|
QString(),
|
|
QStringLiteral("https://apps.kde.org/bovo"));
|
|
aboutData.addAuthor(i18n("Aron Boström"),i18n("Author"),
|
|
QStringLiteral("aron.bostrom@gmail.com"));
|
|
|
|
app.setWindowIcon(QIcon::fromTheme(QStringLiteral("bovo")));
|
|
|
|
KAboutData::setApplicationData(aboutData);
|
|
KCrash::initialize();
|
|
|
|
QCommandLineParser parser;
|
|
aboutData.setupCommandLine(&parser);
|
|
parser.process(app);
|
|
aboutData.processCommandLine(&parser);
|
|
KDBusService service;
|
|
if( app.isSessionRestored() ) {
|
|
kRestoreMainWindows<MainWindow>();
|
|
} else {
|
|
auto mainWin = new MainWindow();
|
|
mainWin->show();
|
|
}
|
|
|
|
return app.exec();
|
|
}
|