summaryrefslogtreecommitdiffstats
path: root/adept/batch/main.cpp
blob: c4c09f6a2ab1ded543469891e4f0538ed9c5a108 (plain)
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
40
41
42
43
44
45
46
47
48
// KDE includes
 
#include <kcmdlineargs.h>
#include <kaboutdata.h>
#include <kuniqueapplication.h>

#include "app.h"

static KCmdLineOptions options[] =
{
    { "+command", I18N_NOOP("Command"), 0 },
    KCmdLineLastOption
};

int main(int argc, char *argv[])
{
    TDELocale::setMainCatalogue("adept");

    TQString description = i18n("Adept Batch");
    
    TDEAboutData aboutData( "adept_batch", 
                          I18N_NOOP("Adept Batch"),
                          "2.1 Cruiser",
                          description.latin1(),
                          TDEAboutData::License_BSD,
                          I18N_NOOP("(c) 2006 Peter Rockai"),
                          0,
                          "http://web.mornfall.net/adept.html");

    aboutData.addAuthor ( "Peter Rockai",
                          I18N_NOOP("developer"),
                          "me at mornfall dot net",
                          "http://web.mornfall.net");

    TDECmdLineArgs::init( argc, argv, &aboutData );
    TDECmdLineArgs::addCmdLineOptions( options ); 

    TDEApplication app;
    TDECmdLineArgs* args = TDECmdLineArgs::parsedArgs();
    TDEGlobal::locale()->insertCatalogue(TQString::fromUtf8("libept"));

    App *ta = new App( args );

    app.setMainWidget( ta );
    ta->show();

    return app.exec();
}