|
|
|
|
/***************************************************************************
|
|
|
|
|
main.cpp - description
|
|
|
|
|
-------------------
|
|
|
|
|
begin : Don M<EFBFBD>r 8 21:57:17 CET 2001
|
|
|
|
|
copyright : (C) 2001-2005 by Ernst Martin Witte, Frank Schwanz
|
|
|
|
|
email : witte@kawo1.rwth-aachen.de, schwanz@fh-brandenburg.de
|
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
|
* *
|
|
|
|
|
* 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 <tdecmdlineargs.h>
|
|
|
|
|
#include <tdeaboutdata.h>
|
|
|
|
|
#include <tdelocale.h>
|
|
|
|
|
|
|
|
|
|
#include "include/tderadioversion.h"
|
|
|
|
|
#include "include/tderadioapp.h"
|
|
|
|
|
|
|
|
|
|
#include "include/debug-profiler.h"
|
|
|
|
|
|
|
|
|
|
static TDECmdLineOptions options[] =
|
|
|
|
|
{
|
|
|
|
|
{ 0, 0, 0 }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
|
{
|
|
|
|
|
BlockProfiler profiler_about("main::aboutdata");
|
|
|
|
|
|
|
|
|
|
TDEAboutData aboutData("tderadio", I18N_NOOP("TDERadio"),
|
|
|
|
|
TDERADIO_VERSION, "TDERadio", TDEAboutData::License_GPL,
|
|
|
|
|
"(c) 2002-2005 Martin Witte, Klas Kalass, Frank Schwanz",
|
|
|
|
|
0,
|
|
|
|
|
"http://sourceforge.net/projects/tderadio",
|
|
|
|
|
0);
|
|
|
|
|
aboutData.addAuthor("Martin Witte", I18N_NOOP("rewrite for 0.3.0, recording, lirc support, alarms, misc"), "witte@kawo1.rwth-aachen.de");
|
|
|
|
|
aboutData.addAuthor("Marcus Camen", I18N_NOOP("Buildsystem, Standards Conformance, Cleanups"), "mcamen@mcamen.de");
|
|
|
|
|
aboutData.addAuthor("Klas Kalass", I18N_NOOP("Miscellaneous"), "klas.kalass@gmx.de");
|
|
|
|
|
aboutData.addAuthor("Frank Schwanz", I18N_NOOP("idea, first basic application"), "schwanz@fh-brandenburg.de");
|
|
|
|
|
|
|
|
|
|
TDECmdLineArgs::init( argc, argv, &aboutData );
|
|
|
|
|
TDECmdLineArgs::addCmdLineOptions( options ); // Add our own options.
|
|
|
|
|
|
|
|
|
|
profiler_about.stop();
|
|
|
|
|
|
|
|
|
|
BlockProfiler profiler_tderadioapp("main::TDERadioApp");
|
|
|
|
|
|
|
|
|
|
TDERadioApp a;
|
|
|
|
|
|
|
|
|
|
profiler_tderadioapp.stop();
|
|
|
|
|
BlockProfiler profiler_restore("main::restore");
|
|
|
|
|
|
|
|
|
|
a.restoreState(TDEGlobal::config());
|
|
|
|
|
a.startPlugins();
|
|
|
|
|
|
|
|
|
|
profiler_restore.stop();
|
|
|
|
|
|
|
|
|
|
int ret = a.exec();
|
|
|
|
|
|
|
|
|
|
global_time_profiler.printData();
|
|
|
|
|
global_mem_profiler.printData();
|
|
|
|
|
|
|
|
|
|
IErrorLogClient::staticLogDebug("normal shutdown");
|
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|