summaryrefslogtreecommitdiffstats
path: root/dcoppython/test/dcopserver/main.cpp
blob: 1a99f280db99c315dd9010914e3e07480dcf4422 (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
/*
 * Copyright (C) 2003 Julian Rockey <kde@jrockey.com>
 */

#include "kdedcoptest.h"
#include <tdeapplication.h>
#include <tdeaboutdata.h>
#include <tdecmdlineargs.h>
#include <klocale.h>

static const char *description =
    I18N_NOOP("A TDE KPart Application");

static const char *version = "0.1";

static TDECmdLineOptions options[] =
{
//    { "+[URL]", I18N_NOOP( "Document to open" ), 0 },
    { 0, 0, 0 }
};

int main(int argc, char **argv)
{
    TDEAboutData about("kdedcoptest", I18N_NOOP("TDEDcopTest"), version, description,
                     TDEAboutData::License_GPL, "(C) 2003 Julian Rockey", 0, 0, "kde@jrockey.com");
    about.addAuthor( "Julian Rockey", 0, "kde@jrockey.com" );
    TDECmdLineArgs::init(argc, argv, &about);
    TDECmdLineArgs::addCmdLineOptions( options );
    TDEApplication app;
    KDEDcopTest *mainWin = 0;

    if (app.isRestored())
    {
        RESTORE(KDEDcopTest);
    }
    else
    {
        // no session.. just start up normally
        TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();

        // TODO: do something with the command line args here

        mainWin = new KDEDcopTest();
        app.setMainWidget( mainWin );
        mainWin->show();

        args->clear();
    }

    int ret = app.exec();

    delete mainWin;
    return ret;
}