/*************************************************************************** * Copyright (C) 2003-2005 by * * Unai Garro (ugarro@users.sourceforge.net) * * Jason Kivlighn (jkivlighn@gmail.com) * * * * 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 "krecipes.h" #include #include #include #include #include #include "convert_sqlite3.h" static const char *description = I18N_NOOP( "The TDE Cookbook" ); static const char *version = "1.0-beta1"; static TDECmdLineOptions options[] = { { "convert-sqlite3", I18N_NOOP("Convert the current SQLite 2.x database to SQLite 3 and exit") , 0 }, { 0, 0, 0 } }; int main( int argc, char **argv ) { TDEAboutData about( "krecipes", I18N_NOOP( "Krecipes" ), version, description, TDEAboutData::License_GPL, I18N_NOOP( "(C) 2003 Unai Garro\n(C) 2004-2006 Jason Kivlighn\n\n___________\n\n\nThis product is RecipeML compatible.\n You can get more information about this file format in:\n http://www.formatdata.com/recipeml" ), 0, 0, "jkivlighn@gmail.com" ); about.addAuthor( "Unai Garro", 0, "ugarro@users.sourceforge.net" ); about.addAuthor( "Jason Kivlighn", 0, "jkivlighn@gmail.com" ); about.addAuthor( "Cyril Bosselut", 0, "bosselut@b1project.com" ); about.addCredit( "Colleen Beamer", I18N_NOOP("Testing, bug reports, suggestions"), "colleen.beamer@gmail.com" ); about.setTranslator( I18N_NOOP( "INSERT YOUR NAME HERE" ), I18N_NOOP( "INSERT YOUR EMAIL ADDRESS" ) ); TDECmdLineArgs::init( argc, argv, &about ); TDECmdLineArgs::addCmdLineOptions( options ); KUniqueApplication::addCmdLineOptions(); if ( !KUniqueApplication::start() ) { std::cout << "Krecipes is already running!" << std::endl; return 0; } KUniqueApplication app; // see if we are starting with session management if ( app.isRestored() ) { RESTORE( Krecipes ); } else { // no session.. just start up normally TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs(); TQApplication::flushX(); if ( args->isSet("convert-sqlite3") ) { ConvertSQLite3(); return 0; } Krecipes * widget = new Krecipes; app.setMainWidget( widget ); widget->show(); args->clear(); } return app.exec(); }