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.
74 lines
2.9 KiB
74 lines
2.9 KiB
/*
|
|
patience -- main program
|
|
Copyright (C) 1995 Paul Olav Tvete
|
|
|
|
* Permission to use, copy, modify, and distribute this software and its
|
|
* documentation for any purpose and without fee is hereby granted,
|
|
* provided that the above copyright notice appear in all copies and that
|
|
* both that copyright notice and this permission notice appear in
|
|
* supporting documentation.
|
|
*
|
|
* This file is provided AS IS with no warranties of any kind. The author
|
|
* shall have no liability with respect to the infringement of copyrights,
|
|
* trade secrets or any patents by this file or any part thereof. In no
|
|
* event will the author be liable for any lost revenue or profits or
|
|
* other special, indirect and consequential damages.
|
|
|
|
*/
|
|
|
|
#include <tdeapplication.h>
|
|
#include <tdecmdlineargs.h>
|
|
#include <tdeaboutdata.h>
|
|
|
|
#include "version.h"
|
|
#include "pwidget.h"
|
|
|
|
static const char description[] = I18N_NOOP("TDE Patience Game");
|
|
|
|
static TDECmdLineOptions options[] =
|
|
{
|
|
{ "+file", I18N_NOOP("File to load"), 0 },
|
|
TDECmdLineLastOption
|
|
};
|
|
|
|
int main( int argc, char **argv )
|
|
{
|
|
TDEAboutData aboutData( "kpat", I18N_NOOP("KPatience"),
|
|
KPAT_VERSION, description, TDEAboutData::License_GPL,
|
|
"(c) 1995, Paul Olav Tvete\n"
|
|
"(c) 2000 Stephan Kulow");
|
|
aboutData.addAuthor("Paul Olav Tvete");
|
|
aboutData.addAuthor("Mario Weilguni",0,"mweilguni@kde.org");
|
|
aboutData.addAuthor("Matthias Ettrich",0,"ettrich@kde.org");
|
|
aboutData.addAuthor("Rodolfo Borges",I18N_NOOP("Some Game Types"),"barrett@9hells.org");
|
|
aboutData.addAuthor("Peter H. Ruegg",0,"kpat@incense.org");
|
|
aboutData.addAuthor("Michael Koch", I18N_NOOP("Bug fixes"), "koch@kde.org");
|
|
aboutData.addAuthor("Marcus Meissner", I18N_NOOP("Shuffle algorithm for game numbers"),
|
|
"mm@caldera.de");
|
|
aboutData.addAuthor("Shlomi Fish", I18N_NOOP("Freecell Solver"), "shlomif@vipe.technion.ac.il");
|
|
aboutData.addAuthor("Stephan Kulow", I18N_NOOP("Rewrite and current maintainer"),
|
|
"coolo@kde.org");
|
|
aboutData.addAuthor("Erik Sigra", I18N_NOOP("Improved Klondike"), "sigra@home.se");
|
|
aboutData.addAuthor("Josh Metzler", I18N_NOOP("Spider Implementation"), "joshdeb@metzlers.org");
|
|
aboutData.addAuthor("Maren Pakura", I18N_NOOP("Documentation"), "maren@kde.org");
|
|
aboutData.addAuthor("Inge Wallin", I18N_NOOP("Bug fixes"), "inge@lysator.liu.se");
|
|
|
|
TDECmdLineArgs::init( argc, argv, &aboutData );
|
|
TDECmdLineArgs::addCmdLineOptions (options);
|
|
TDECmdLineArgs* args = TDECmdLineArgs::parsedArgs();
|
|
|
|
TDEApplication a;
|
|
TDEGlobal::locale()->insertCatalogue("libtdegames");
|
|
|
|
if (a.isRestored())
|
|
RESTORE(pWidget)
|
|
else {
|
|
pWidget *w = new pWidget;
|
|
if (args->count())
|
|
w->openGame(args->url(0));
|
|
a.setMainWidget(w);
|
|
w->show();
|
|
}
|
|
return a.exec();
|
|
}
|