summaryrefslogtreecommitdiffstats
path: root/ksquirrel/ksquirrel-libs-configurator/main.cpp
blob: 3923236277d92cbfed61ac0e4bd1e3cac72529c2 (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
57
58
59
60
61
/***************************************************************************
                          main.cpp  -  description
                             -------------------
    begin                : Dec 03 2007
    copyright            : (C) 2007 by Baryshev Dmitry
    email                : ksquirrel.iv@gmail.com
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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 <kapplication.h>
#include <kcmdlineargs.h>
#include <kaboutdata.h>
#include <kglobal.h>
#include <klocale.h>

#include "klc.h"

static TDECmdLineOptions options[] =
{
    TDECmdLineLastOption
};

int main(int argc, char *argv[])
{
    const TQCString App = "ksquirrel-libs-configurator";

    TDEAboutData aboutData(
            "ksquirrel-libs-configurator",
            "ksquirrel-libs-configurator",
            "0.1",
            I18N_NOOP("ksquirrel-libs-configurator"),
            TDEAboutData::License_GPL,
            "(c) 2007 Baryshev Dmitry",
            TQString(),
            "http://ksquirrel.sourceforge.net",
            "ksquirrel.iv@gmail.com");

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

    TDEApplication app;

    TDEGlobal::locale()->insertCatalogue("ksquirrel");
    TDEGlobal::locale()->setActiveCatalogue("ksquirrel");

    KLC *klc = new KLC(0, App);

    app.setMainWidget(klc);

    klc->show();

    return app.exec();
}