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/ktouch/src/main.cpp

77 lines
3.2 KiB

/***************************************************************************
* ktouch.cpp *
* ---------- *
* Copyright (C) 2000 by Håvard Frøiland, 2004 by Andreas Nicolai *
* ghorwin@users.sourceforge.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 "ktouch.h"
#include <tdeaboutdata.h>
#include <tdecmdlineargs.h>
#include <kdebug.h>
static const char description[] =
I18N_NOOP("A program that helps you to learn and practice touch typing");
static const char version[] = "1.5.3";
static TDECmdLineOptions options[] = {
{ "+[URL]", I18N_NOOP( "Training file to open" ), 0 },
TDECmdLineLastOption
};
int main(int argc, char **argv)
{
TDEAboutData about("ktouch",
I18N_NOOP("KTouch"),
version,
description,
TDEAboutData::License_GPL,
"Copyright (C) 2000-2006 by Håvard Frøiland and Andreas Nicolai",
0,
"http://edu.kde.org/ktouch",
"submit@bugs.trinitydesktop.org");
about.addAuthor( "Andreas Nicolai", I18N_NOOP("Current maintainer and programmer"), "Andreas.Nicolai@gmx.net" );
about.addAuthor( "Håvard Frøiland", I18N_NOOP("Original author, project admin"), "haavard@users.sourceforge.net" );
about.addCredit( "David Vignoni", I18N_NOOP("Creator of the SVG icon"), "david80v@tin.it");
about.addCredit( "Anne-Marie Mahfouf", I18N_NOOP("Lots of patches, fixes, updates"), "annma@kde.org");
about.addCredit( "All the creators of training and keyboard files", 0, 0);
TDECmdLineArgs::init(argc, argv, &about);
TDECmdLineArgs::addCmdLineOptions( options );
TDEApplication app;
KTouch *mainWin = 0;
if (app.isRestored()) {
RESTORE(KTouch);
}
else
{
// no session.. just start up normally
TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
// TODO: check the command line for a training file and set this as the new to open training file
/* TODO: turn splash screen on in release
KTouchSplash splash; // create the splash screen
splash.setHideEnabled( true ); // allow user to click the splash screen away
splash.show(); // show it
TQTimer splashTimer;
splashTimer.connect(&splashTimer, TQ_SIGNAL(timeout()), &splash, TQ_SLOT(hide()));
splashTimer.start(2000, true); // start singleshot timer to hide the splashscreen
*/
mainWin = new KTouch();
app.setMainWidget( mainWin );
mainWin->show();
args->clear();
}
return app.exec();
}