You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kmyfirewall/KMFSysTray/app.cpp

64 lines
1.4 KiB

//
// 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 <tqlcdnumber.h>
// #include <tqlayout.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() : TDEApplication() {
// Get the current application configuration handle
// KMessageBox::information( 0, i18n( "Starting Deamon" ) );
// TDEConfig *ksConfig = config();
// KMFIPTWatcher *watch = new KMFIPTWatcher( this, "KMFIPTWatcher" );
// MainWidget *mainWid = new MainWidget( 0 );
// connect( watch, TQT_SIGNAL( sigUpdateActive( bool ) ), mainWid, TQT_SLOT( slotSetRunningStatus( bool ) ) );
// connect( watch, TQT_SIGNAL( sigUpdateRuleCount( const TQString&, const TQString&, int ) ),
// mainWid, TQT_SIGNAL( sigUpdateRuleCount( const TQString&, const TQString&, int ) ) );
// connect( mainWid, TQT_SIGNAL( sigQueryDetails( bool ) ), watch, TQT_SLOT( slotQueryDetails( bool ) ) );
/*
TQHBoxLayout *_layout = new TQHBoxLayout(this);
_layout->add(mainWid);*/
}
MainApp::~MainApp() {}