diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | ce599e4f9f94b4eb00c1b5edb85bce5431ab3df2 (patch) | |
tree | d3bb9f5d25a2dc09ca81adecf39621d871534297 /kwordquiz/src/main.cpp | |
download | tdeedu-ce599e4f9f94b4eb00c1b5edb85bce5431ab3df2.tar.gz tdeedu-ce599e4f9f94b4eb00c1b5edb85bce5431ab3df2.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kwordquiz/src/main.cpp')
-rw-r--r-- | kwordquiz/src/main.cpp | 102 |
1 files changed, 102 insertions, 0 deletions
diff --git a/kwordquiz/src/main.cpp b/kwordquiz/src/main.cpp new file mode 100644 index 00000000..57fefbfd --- /dev/null +++ b/kwordquiz/src/main.cpp @@ -0,0 +1,102 @@ +/*************************************************************************** + main.cpp - description + ------------------- + begin : Wed Jul 24 20:12:30 PDT 2002 + copyright : (C) 2002-2003 by Peter Hedlund + email : peter.hedlund@kdemail.net + ***************************************************************************/ + +/*************************************************************************** + * * + * 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 <kcmdlineargs.h> +#include <kaboutdata.h> + +#include "kwordquiz.h" +#include "version.h" + +static const char *description = I18N_NOOP("A powerful flashcard and vocabulary learning program"); + +static KCmdLineOptions options[] = +{ + { "m", 0, 0 }, + { "mode <number>", I18N_NOOP("A number 1-5 corresponding to the \nentries in the Mode menu"), 0 }, + { "g", 0, 0 }, + { "goto <session>", I18N_NOOP("Type of session to start with: \n'flash' for flashcard, \n'mc' for multiple choice, \n'qa' for question and answer"), 0 }, + { "+[File]", I18N_NOOP("File to open"), 0 }, + { 0, 0, 0 } +}; + +int main(int argc, char *argv[]) +{ + KAboutData aboutData("kwordquiz", + I18N_NOOP("KWordQuiz"), + KWQ_VERSION, + description, + KAboutData::License_GPL, + "(c) 2003-2005, Peter Hedlund", + 0, + "http://edu.kde.org/kwordquiz", + "submit@bugs.kde.org"); + + aboutData.addAuthor("Peter Hedlund", 0, "peter.hedlund@kdemail.net"); + aboutData.addCredit("Anne-Marie Mahfouf", I18N_NOOP("KDE Edutainment Maintainer"), "annma@kde.org", 0); + + KCmdLineArgs::init( argc, argv, &aboutData ); + KCmdLineArgs::addCmdLineOptions( options ); // Add our own options. + + KApplication app; + + if (app.isRestored()) + { + RESTORE(KWordQuizApp); + } + else + { + KWordQuizApp *kwordquiz = new KWordQuizApp(); + kwordquiz->show(); + + KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + + if (args->count()) + { + kwordquiz->openDocumentFile(args->arg(args->count() - 1)); + QCString mode = args->getOption("mode"); + if (!mode.isEmpty()) + { + if (mode == "1") + kwordquiz->slotMode1(); + if (mode == "2") + kwordquiz->slotMode2(); + if (mode == "3") + kwordquiz->slotMode3(); + if (mode == "4") + kwordquiz->slotMode4(); + if (mode == "5") + kwordquiz->slotMode5(); + } + QCString go_to = args->getOption("goto"); + if (!go_to.isEmpty()) + { + if (go_to == "flash") + kwordquiz->slotQuizFlash(); + if (go_to == "mc") + kwordquiz->slotQuizMultiple(); + if (go_to == "qa") + kwordquiz->slotQuizQA(); + } + } + else + { + kwordquiz->openDocumentFile(); + } + args->clear(); + } + return app.exec(); +} |