summaryrefslogtreecommitdiffstats
path: root/adept/updater/main.cpp
blob: 5eaa4db3f7c7e32b4454ce329c190b93104e1155 (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
49
50
51
52
53
54
55
56
// KDE includes

#include <kcmdlineargs.h>
#include <kaboutdata.h>
#include <kuniqueapplication.h>

#include "app.h"

static KCmdLineOptions options[] =
{
    KCmdLineLastOption
};

int main(int argc, char *argv[])
{

    TDELocale::setMainCatalogue("adept_updater");

    putenv( "TQT_IM_MODULE=xim" );
    TQString description = i18n("Adept Updater");

    TDEAboutData aboutData( "adept_updater",
                          I18N_NOOP("Adept Updater"),
                          "2.1 Cruiser",
                          description.latin1(),
                          TDEAboutData::License_BSD,
                          I18N_NOOP("(c) 2005, 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();
    // if (args && args->isSet("xy")) ...

    /* TDEConfig* config = TDEGlobal::config();
    config->setGroup("General Settings");
    TQString version = config->readEntry("Version"); */

    TDEGlobal::locale()->insertCatalogue(TQString::fromUtf8("libept"));

    TestApp *ta = new TestApp();

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

    return app.exec();
}