summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/kmake/app.cpp
blob: e057db20af09af43bc6d9301e901190394c1cc37 (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

#include <kapplication.h>
#include <kaboutdata.h>
#include <kcmdlineargs.h>
#include <klocale.h>
#include "mainviewimp.h"

static const char description[] =    I18N_NOOP("A TDE Application");

static const char version[] = "%{VERSION}";

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


int main(int argc, char **argv)
{
	TDEAboutData about("%{APPNAME}", I18N_NOOP("%{APPNAME}"), version, description,
	                 TDEAboutData::License_%{LICENSE}, "(C) 2004 %{AUTHOR}", 0, 0, "%{EMAIL}");
	about.addAuthor( "%{AUTHOR}", 0, "%{EMAIL}" );
	TDECmdLineArgs::init(argc, argv, &about);
	TDECmdLineArgs::addCmdLineOptions(options);
	TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
	TDEApplication app;
	MainViewImp *widget = new MainViewImp;
	app.setMainWidget(widget);
	widget->show();
	return app.exec();
}