/*************************************************************************** ----------------------------------------------------------------------- begin : Thu Mar 11 20:50:53 MET 1999 copyright : (C) 1999-2001 Ewald Arnold (C) 2006 Peter Hedlund (C) 2007 Frederik Gladhorn ----------------------------------------------------------------------- ***************************************************************************/ /*************************************************************************** * * * 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 #include #include #include #include "parleymainwindow.h" //#include "practice/parleypracticemainwindow.h" #include "version.h" int main(int argc, char* argv[]) { static const char description[] = I18N_NOOP("Vocabulary Trainer"); static const char version[] = PARLEY_VERSION_STRING; KAboutData aboutData("parley", 0, ki18n("Parley"), version, ki18n(description), KAboutData::License_GPL, ki18n("© 1999-2002\tEwald Arnold\n" "© 2001-2002\tThe KDE team\n" "© 2004-2007\tPeter Hedlund\n" "© 2007-2008\tFrederik Gladhorn\n"), ki18n("Helps you train your vocabulary"), "http://edu.kde.org/parley", "submit@bugs.kde.org"); aboutData.addAuthor(ki18n("Frederik Gladhorn"), ki18n("Current Maintainer"), "gladhorn@kde.org"); aboutData.addAuthor(ki18n("David Capel"), ki18n("Practice Dialogs"), "wot.narg@gmail.com"); aboutData.addAuthor(ki18n("Avgoustinos Kadis"), ki18n("Scripting"), "avgoustinos.kadis@kdemail.net"); aboutData.addAuthor(ki18n("Peter Hedlund"), ki18n("Countless fixes, former maintainer, port to KDE4"), "peter.hedlund@kdemail.net"); aboutData.addAuthor(ki18n("Ewald Arnold"), ki18n("Original Author"), "kvoctrain@ewald-arnold.de", "http://www.ewald-arnold.de"); aboutData.addCredit(ki18n("Lee Olson"), ki18n("Artwork and Oxygen Icons")); aboutData.addCredit(ki18n("Anne-Marie Mahfouf"), ki18n("Port to KConfig XT")); aboutData.addCredit(ki18n("Jeremy Whiting"), ki18n("Rewriting the kvtml library for KDE4")); aboutData.addCredit(ki18n("Markus Büchele"), ki18n("Bug reports and testing on the way to KDE4")); aboutData.addCredit(ki18n("Ramona Knapp"), ki18n("Conceived the name Parley")); KCmdLineArgs::init(argc, argv, &aboutData); KCmdLineOptions options; // options.add("e").add("edit", ki18n("Start the editor part of Parley")); options.add("p").add("practice", ki18n("Start practice instead of editor")); options.add(I18N_NOOP("+[file]"), ki18n("Document file to open")); KCmdLineArgs::addCmdLineOptions(options); KApplication app; app.setQuitOnLastWindowClosed(false); // for i18n of the lib strings KGlobal::locale()->insertCatalog("libkdeedu"); ParleyMainWindow *parleyApp = 0; if (app.isSessionRestored()) { // kRestoreMainWindows< ParleyApp >(); int n = 1; while (KMainWindow::canBeRestored(n)){ (new ParleyMainWindow())->restore(n); n++; } return app.exec(); } else { KMainWindow *parleyApp; KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); bool practiceMode = false; if (args) { practiceMode = args->isSet("p"); } if (args && args->count() > 0) { ///@todo make --practice command line argument work with a file name parleyApp = new ParleyMainWindow(args->url(0)); args->clear(); } else { // if (practiceMode) { // parleyApp = new ParleyPracticeMainWindow(); // } else { parleyApp = new ParleyMainWindow(); // } } if (args) { args->clear(); } parleyApp->show(); return app.exec(); } }