/***************************************************** vim:set ts=4 sw=4 sts=4: Where the main function for KTTSD resides. ------------------- Copyright: (C) 2002-2003 by José Pablo Ezequiel "Pupeno" Fernández (C) 2003-2004 by Olaf Schmidt ------------------- Original author: José Pablo Ezequiel "Pupeno" Fernández 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. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. ******************************************************************************/ #include #include #include #include #include #include #include "kttsd.h" int main (int argc, char *argv[]){ TDELocale::setMainCatalogue("kttsd"); TDEAboutData aboutdata("kttsd", I18N_NOOP("kttsd"), "0.3.5.2", I18N_NOOP("Text-to-speech synthesis deamon"), TDEAboutData::License_GPL, "(C) 2002, José Pablo Ezequiel Fernández"); aboutdata.addAuthor("José Pablo Ezequiel Fernández",I18N_NOOP("Original Author"),"pupeno@pupeno.com"); aboutdata.addAuthor("Gary Cramblitt", I18N_NOOP("Maintainer"),"garycramblitt@comcast.net"); aboutdata.addAuthor("Gunnar Schmi Dt", I18N_NOOP("Contributor"),"gunnar@schmi-dt.de"); aboutdata.addAuthor("Olaf Schmidt", I18N_NOOP("Contributor"),"ojschmidt@kde.org"); aboutdata.addAuthor("Paul Giannaros", I18N_NOOP("Contributor"), "ceruleanblaze@gmail.com"); aboutdata.addCredit("Jorge Luis Arzola", I18N_NOOP("Testing"), "arzolacub@hotmail.com"); aboutdata.addCredit("David Powell", I18N_NOOP("Testing"), "achiestdragon@gmail.com"); TDECmdLineArgs::init( argc, argv, &aboutdata ); // TDECmdLineArgs::addCmdLineOptions( options ); KUniqueApplication::addCmdLineOptions(); if(!KUniqueApplication::start()){ kdDebug() << "KTTSD is already running" << endl; return (0); } KUniqueApplication app; // This app is started automatically, no need for session management app.disableSessionManagement(); // TODO: kspeech is obsolete. Use KSpeech instead. For backwards compatibility, // kspeech creates the "real" KSpeech object (KTTSD). At some point in the future, // change following statement to // KTTSD *service = new KTTSD("KSpeech"); kspeech *service = new kspeech("kspeech"); // kdDebug() << "Entering event loop." << endl; return app.exec(); delete service; }