1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
/***************************************************************************
main.cpp - Implementation of the main window
-------------------
copyright : (C) 2002 by Gav Wood
email : [email protected]
***************************************************************************/
// This program is free software.
#include <klocale.h>
#include <kcmdlineargs.h>
#include <kwin.h>
#include <kaboutdata.h>
#include <kglobal.h>
#include <kdebug.h>
#include <kuniqueapplication.h>
#include "irkick.h"
extern "C" KDE_EXPORT int kdemain(int argc, char *argv[])
{
KAboutData *aboutData = new KAboutData("irkick", I18N_NOOP("IRKick"), VERSION, I18N_NOOP("The KDE Infrared Remote Control Server"), KAboutData::License_GPL, "(c) 2003, Gav Wood", 0, 0, "[email protected]");
aboutData->addAuthor("Gav Wood", I18N_NOOP("Author"), "[email protected]", "http://www.indigoarchive.net/gav/");
aboutData->addCredit("Malte Starostik", I18N_NOOP("Original LIRC interface code"), "[email protected]");
aboutData->addCredit("Dirk Ziegelmeier", I18N_NOOP("Ideas, concept code"), "[email protected]");
aboutData->addCredit("Zsolt Rizsanyi", I18N_NOOP("Random patches"), "[email protected]");
aboutData->addCredit("Antonio Larrosa Jiménez", I18N_NOOP("Ideas"), "[email protected]");
KCmdLineArgs::init( argc, argv, aboutData );
KUniqueApplication::addCmdLineOptions();
KUniqueApplication app;
KGlobal::locale()->insertCatalogue( "kdelirc" );
app.disableSessionManagement();
IRKick *theIRKick = new IRKick("IRKick");
int ret = app.exec();
delete theIRKick;
return ret;
}
|