summaryrefslogtreecommitdiffstats
path: root/KMFSysTray/app.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-17 01:04:17 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-17 01:04:17 +0000
commitc3b707c026782768bd8c0e6ae6b574fe8a36802d (patch)
tree5ca6782031b1546c788290cc0b95524369ff01ea /KMFSysTray/app.cpp
downloadkmyfirewall-c3b707c026782768bd8c0e6ae6b574fe8a36802d.tar.gz
kmyfirewall-c3b707c026782768bd8c0e6ae6b574fe8a36802d.zip
Added old abandoned KDE3 version of kmyfirewall
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kmyfirewall@1091559 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'KMFSysTray/app.cpp')
-rw-r--r--KMFSysTray/app.cpp63
1 files changed, 63 insertions, 0 deletions
diff --git a/KMFSysTray/app.cpp b/KMFSysTray/app.cpp
new file mode 100644
index 0000000..bacfda0
--- /dev/null
+++ b/KMFSysTray/app.cpp
@@ -0,0 +1,63 @@
+//
+// C++ Implementation: app
+//
+// Description:
+//
+//
+// Author: Christian Hubinger <e9806056@student.tuwien.ac.at>, (C) 2005
+//
+// Copyright: See COPYING file that comes with this distribution
+//
+//
+#include "app.h"
+
+// #include <qlcdnumber.h>
+// #include <qlayout.h>
+//
+// // KDE includes
+// #include <kglobal.h>
+// #include <klocale.h>
+// #include <kaboutdata.h>
+// #include <kconfig.h>
+// #include <kapplication.h>
+// #include <kmessagebox.h>
+// #include <kapplication.h>
+// #include <kmessagebox.h>
+// #include <dcopclient.h>
+// #include <kaboutapplication.h>
+
+
+/*
+#include "kmfsystray.h"
+#include "kmfiptwatcher.h"
+#include "mainwidget.h"
+*/
+
+MainApp::MainApp() : KApplication() {
+
+
+ // Get the current application configuration handle
+// KMessageBox::information( 0, i18n( "Starting Deamon" ) );
+
+// KConfig *ksConfig = config();
+// KMFIPTWatcher *watch = new KMFIPTWatcher( this, "KMFIPTWatcher" );
+// MainWidget *mainWid = new MainWidget( 0 );
+// connect( watch, SIGNAL( sigUpdateActive( bool ) ), mainWid, SLOT( slotSetRunningStatus( bool ) ) );
+// connect( watch, SIGNAL( sigUpdateRuleCount( const QString&, const QString&, int ) ),
+// mainWid, SIGNAL( sigUpdateRuleCount( const QString&, const QString&, int ) ) );
+
+// connect( mainWid, SIGNAL( sigQueryDetails( bool ) ), watch, SLOT( slotQueryDetails( bool ) ) );
+/*
+ QHBoxLayout *_layout = new QHBoxLayout(this);
+ _layout->add(mainWid);*/
+
+
+
+
+
+}
+
+
+MainApp::~MainApp() {}
+
+