You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
2.9 KiB
82 lines
2.9 KiB
/***************************************************************************
|
|
main.cpp - initialization
|
|
-------------------
|
|
copyright : (C) 2004 Michal Rudolf <mrudolf@tdewebdev.org>
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
// KDE includes
|
|
#include <kaboutdata.h>
|
|
#include <kapplication.h>
|
|
#include <kcmdlineargs.h>
|
|
#include <kconfig.h>
|
|
#include <kiconloader.h>
|
|
#include <klocale.h>
|
|
#include <ksplashscreen.h>
|
|
|
|
// Other includes
|
|
#include "mainwindow.h"
|
|
#include "kommanderwidget.h"
|
|
#include "kommanderversion.h"
|
|
|
|
static const char *description =
|
|
I18N_NOOP("Kommander is a graphical editor of scripted dialogs.");
|
|
static const char *text =
|
|
I18N_NOOP("Based on TQt Designer, (C) 2000 Trolltech AS.");
|
|
|
|
static KCmdLineOptions options[] =
|
|
{
|
|
{ "+file", I18N_NOOP("Dialog to open"), 0 },
|
|
{ 0, 0, 0 }
|
|
};
|
|
|
|
int main( int argc, char *argv[] )
|
|
{
|
|
KAboutData aboutData( "kommander", I18N_NOOP("Kommander"),
|
|
KOMMANDER_VERSION, description, KAboutData::License_GPL,
|
|
"(C) 2002-2005 Kommander authors", text);
|
|
aboutData.addAuthor("Eric Laffoon", I18N_NOOP("Project manager"), "eric@tdewebdev.org");
|
|
aboutData.addAuthor("Andras Mantia", I18N_NOOP("Current maintainer"), "amantia@tdewebdev.org");
|
|
aboutData.addAuthor("Michal Rudolf", I18N_NOOP("Previous maintainer"), "mrudolf@tdewebdev.org");
|
|
aboutData.addAuthor("Marc Britton", I18N_NOOP("Original author"), "consume@optusnet.com.au");
|
|
aboutData.setTranslator (I18N_NOOP("_: NAME OF TRANSLATORS\nYour names"),
|
|
I18N_NOOP("_: EMAIL OF TRANSLATORS\nYour emails"));
|
|
KCmdLineArgs::init(argc, argv, &aboutData);
|
|
KCmdLineArgs::addCmdLineOptions(options);
|
|
|
|
KommanderWidget::inEditor = true;
|
|
|
|
KLocale::setMainCatalogue("kommander");
|
|
KApplication a(true, true);
|
|
|
|
KConfig *config = kapp->config();
|
|
config->setGroup("General");
|
|
bool splashScreen = config->readBoolEntry("SplashScreen", true);
|
|
KSplashScreen* splash = 0;
|
|
if (splashScreen) {
|
|
splash = new KSplashScreen(UserIcon("kommandersplash"));
|
|
splash->show();
|
|
}
|
|
|
|
MainWindow *mw = new MainWindow(false);
|
|
a.setMainWidget(mw);
|
|
mw->setCaption(i18n("Kommander Dialog Editor"));
|
|
mw->show();
|
|
|
|
if (splashScreen) {
|
|
splash->finish(mw);
|
|
delete splash;
|
|
}
|
|
|
|
return a.exec();
|
|
}
|
|
|