summaryrefslogtreecommitdiffstats
path: root/kttsd/kttsd/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kttsd/kttsd/main.cpp')
-rw-r--r--kttsd/kttsd/main.cpp68
1 files changed, 68 insertions, 0 deletions
diff --git a/kttsd/kttsd/main.cpp b/kttsd/kttsd/main.cpp
new file mode 100644
index 0000000..3c47df4
--- /dev/null
+++ b/kttsd/kttsd/main.cpp
@@ -0,0 +1,68 @@
+/***************************************************** 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 <pupeno@kde.org>
+ (C) 2003-2004 by Olaf Schmidt <ojschmidt@kde.org>
+ -------------------
+ 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 <kuniqueapplication.h>
+#include <kaboutdata.h>
+#include <kcmdlineargs.h>
+#include <kdebug.h>
+#include <klocale.h>
+#include <dcopclient.h>
+
+#include "kttsd.h"
+
+int main (int argc, char *argv[]){
+ KLocale::setMainCatalogue("kttsd");
+ KAboutData aboutdata("kttsd", I18N_NOOP("kttsd"),
+ "0.3.5.2", I18N_NOOP("Text-to-speech synthesis deamon"),
+ KAboutData::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");
+
+ KCmdLineArgs::init( argc, argv, &aboutdata );
+ // KCmdLineArgs::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;
+}