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.
tdeedu/keduca/keduca/main.cpp

69 lines
2.8 KiB

/***************************************************************************
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 <tdecmdlineargs.h>
#include <tdeaboutdata.h>
#include <kdebug.h>
#include <tqfileinfo.h>
#include "keduca.h"
static const char description[] = I18N_NOOP("Form-based tests and exams");
static const char version[] = "1.3";
static TDECmdLineOptions options[] =
{
{ "+file", I18N_NOOP("File to load"), 0 },
TDECmdLineLastOption
};
int main(int argc, char *argv[])
{
TDEAboutData aboutData( "keduca", I18N_NOOP("KEduca"),
version, description, TDEAboutData::License_GPL,
"(c) 2001, Javier Campos", 0, "http://keduca.sourceforge.net", "submit@bugs.trinitydesktop.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("Henrique Pinto",I18N_NOOP( "Current Maintainer" ), "henrique.pinto@kdemail.net");
aboutData.addAuthor("Anne-Marie Mahfouf",I18N_NOOP( "Various fixes and cleanups" ), "annma@kde.org");
aboutData.addCredit("Nenad Grujicic", I18N_NOOP("Icons"), "mengele@linuxo.org");
TDECmdLineArgs::init( argc, argv, &aboutData );
TDECmdLineArgs::addCmdLineOptions( options ); // Add our own options.
TDEApplication a;
TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
// start as KEduca TestMaster
Keduca *keducaTestMaster = new Keduca();
a.setMainWidget(keducaTestMaster);
keducaTestMaster->show();
if ( args->count() > 0 )
{
if( TQFileInfo( KURL(args->url(0)).url() ).extension() == "edugallery" )
keducaTestMaster->initGallery( args->url(0) );
else
keducaTestMaster->slotFileOpenURL( args->url(0) );
}
args->clear();
return a.exec();
}