summaryrefslogtreecommitdiffstats
path: root/KMFSysTray/main.cpp
blob: 17e9a4d0511c469370f014ab949ab52f0d36ed20 (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
//
// C++ Implementation: main
//
// Description: 
//
//
// Author: Christian Hubinger <e9806056@student.tuwien.ac.at>, (C) 2005
//
// Copyright: See COPYING file that comes with this distribution
//
//

#include <tqwidget.h>

#include <tdeapplication.h>
#include <tdeaboutapplication.h>
#include <tdecmdlineargs.h>
#include <tdeaboutdata.h>
#include <klocale.h>
#include <tdeconfig.h>
#include <kdebug.h>


#include "../kmyfirewall/version.h"
#include "../kmyfirewall/kmfwidgets/kmfiptdocview.h"


#include "kmfsystray.h"
#include "kmfiptwatcher.h"
#include "details.h"


static const char description[] = I18N_NOOP( "KMFSysTray - IPTables monitor" );
 

static TDECmdLineOptions options[] = {
	{ "+[URL]", I18N_NOOP( "Files/URLs to Open." ), 0 },
	{ "--test ", I18N_NOOP("A short option which takes an argument."), 0 }, 
	{ 0, 0, 0}
};

int main( int argc, char *argv[] ) {
	TDEAboutData aboutData( "kmfsystray", I18N_NOOP( "KMFSysTray" ),
	                      KMYFIREWALL_VERSION, description, TDEAboutData::License_GPL,
	                      COPYRIGHT_STRING, 0, 0, "e9806056@student.tuwien.ac.at" );
	aboutData.addAuthor( "Christian Hubinger", 0, "e9806056@student.tuwien.ac.at" );
	aboutData.setHomepage( "http://kmyfirewall.sourceforge.net" );
	TDECmdLineArgs::init( argc, argv, &aboutData );
	TDECmdLineArgs::addCmdLineOptions( options ); // Add our own options.

	TDEApplication a;
	// Details *mainWid = new Details( 0 );	

	KMFIPTDocView *mainWid = new KMFIPTDocView( 0 );
	KMFSysTray *st  = new KMFSysTray( mainWid );
	return a.exec();
}