From ce599e4f9f94b4eb00c1b5edb85bce5431ab3df2 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: 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 --- keduca/keducabuilder/main.cpp | 67 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 keduca/keducabuilder/main.cpp (limited to 'keduca/keducabuilder/main.cpp') diff --git a/keduca/keducabuilder/main.cpp b/keduca/keducabuilder/main.cpp new file mode 100644 index 00000000..93a49cdf --- /dev/null +++ b/keduca/keducabuilder/main.cpp @@ -0,0 +1,67 @@ +/*************************************************************************** + main.cpp - description + ------------------- + begin : mié may 23 20:36:15 CEST 2001 + copyright : (C) 2001 by Javier Campos + email : javi@asyris.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. * + * * + ***************************************************************************/ + +#include +#include +#include +#include + +#include +#include "keducabuilder.h" + +static const char description[] = I18N_NOOP("Form-based tests and exams builder"); +static const char version[] = "1.2.0"; + +static KCmdLineOptions options[] = +{ + { "+file", I18N_NOOP("File to load"), 0 }, + KCmdLineLastOption +}; + +int main(int argc, char *argv[]) +{ + KAboutData aboutData( "keduca", I18N_NOOP("KEducaBuilder"), + version, description, KAboutData::License_GPL, + "(c) 2001, Javier Campos", 0, "http://keduca.sourceforge.net", "submit@bugs.kde.org"); + aboutData.addAuthor("Javier Campos",I18N_NOOP("Original Author"), "javi@asyris.org"); + aboutData.addAuthor("Klas Kalass",I18N_NOOP("Maintainer 2002-2004"), "klas@kde.org"); + aboutData.addAuthor("Anne-Marie Mahfouf",I18N_NOOP("Various fixes and cleanups"), "annma@kde.org"); + aboutData.addCredit("Nenad Grujicic", I18N_NOOP("Icons"), "mengele@linuxo.org"); + KCmdLineArgs::init( argc, argv, &aboutData ); + KCmdLineArgs::addCmdLineOptions( options ); // Add our own options. + + KApplication a; + KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + + // start as KEduca Builder + KEducaBuilder *keducaEditor = new KEducaBuilder(); + a.setMainWidget(keducaEditor); + keducaEditor->show(); + + if ( args->count() > 0 ){ + if( QFileInfo( KURL(args->url(0)).url() ).extension() == "edugallery" ) + keducaEditor->initGallery( args->url(0) ); + else + keducaEditor->slotFileOpenURL( args->url(0) ); + }else + keducaEditor->startChooser(); + + + args->clear(); + + return a.exec(); +} -- cgit v1.2.1