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
3.0 KiB
82 lines
3.0 KiB
/***************************************************************************
|
|
main.cpp - initialization
|
|
-------------------
|
|
copyright : (C) 2004 Michal Rudolf <mrudolf@kdewebdev.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 <tdeaboutdata.h>
|
|
#include <tdeapplication.h>
|
|
#include <tdecmdlineargs.h>
|
|
#include <tdeconfig.h>
|
|
#include <kiconloader.h>
|
|
#include <tdelocale.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 TDECmdLineOptions options[] =
|
|
{
|
|
{ "+file", I18N_NOOP("Dialog to open"), 0 },
|
|
{ 0, 0, 0 }
|
|
};
|
|
|
|
int main( int argc, char *argv[] )
|
|
{
|
|
TDEAboutData aboutData( "kommander", I18N_NOOP("Kommander"),
|
|
KOMMANDER_VERSION, description, TDEAboutData::License_GPL,
|
|
"(C) 2002-2005 Kommander authors", text);
|
|
aboutData.addAuthor("Eric Laffoon", I18N_NOOP("Project manager"), "eric@kdewebdev.org");
|
|
aboutData.addAuthor("Andras Mantia", I18N_NOOP("Current maintainer"), "amantia@kdewebdev.org");
|
|
aboutData.addAuthor("Michal Rudolf", I18N_NOOP("Previous maintainer"), "mrudolf@kdewebdev.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"));
|
|
TDECmdLineArgs::init(argc, argv, &aboutData);
|
|
TDECmdLineArgs::addCmdLineOptions(options);
|
|
|
|
KommanderWidget::inEditor = true;
|
|
|
|
TDELocale::setMainCatalogue("kommander");
|
|
TDEApplication a(true, true);
|
|
|
|
TDEConfig *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();
|
|
}
|
|
|