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.
110 lines
3.3 KiB
110 lines
3.3 KiB
/***************************************************************************
|
|
* Copyright (C) 2005 by Christian Hubinger *
|
|
* e9806056@student.tuwien.ac.at *
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
* This program is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU General Public License *
|
|
* along with this program; if not, write to the *
|
|
* Free Software Foundation, Inc., *
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
***************************************************************************/
|
|
|
|
|
|
#include "details.h"
|
|
|
|
// TQt includes
|
|
#include <tqlcdnumber.h>
|
|
|
|
// KDE includes
|
|
#include <kdebug.h>
|
|
#include <kpushbutton.h>
|
|
|
|
Details::Details( TQWidget* parent, const char* name, WFlags fl )
|
|
: DetailsDesigner( parent, name, fl ) {
|
|
|
|
TQObject::connect( m_cmd_close, TQ_SIGNAL( clicked() ), this, TQ_SLOT ( close() ) );
|
|
|
|
}
|
|
|
|
Details::~Details() {}
|
|
|
|
/*$SPECIALIZATION$*/
|
|
|
|
void Details::close() {
|
|
kdDebug() << "void Details::close()" << endl;
|
|
emit closing();
|
|
TQWidget::close();
|
|
}
|
|
|
|
void Details::show() {
|
|
kdDebug() << "void Details::show()" << endl;
|
|
emit showing();
|
|
TQWidget::show();
|
|
}
|
|
|
|
void Details::hide() {
|
|
kdDebug() << "void Details::hide()" << endl;
|
|
emit closing();
|
|
TQWidget::hide();
|
|
}
|
|
|
|
void Details::slotUpdateRuleCount( const TQString& table, const TQString& chain, int num ) {
|
|
kdDebug() << "slotUpdateRuleCount( const TQString& " << table << ", const TQString& " << chain << ", int " << num << " )" << endl;
|
|
TQLCDNumber *lcd = 0;
|
|
if ( table == "filter" ) {
|
|
if ( chain == "INPUT" ) {
|
|
lcd = m_lcd_numRulesIn_Filter_Input;
|
|
}
|
|
if ( chain == "OUTPUT" ) {
|
|
lcd = m_lcd_numRulesIn_Filter_Output;
|
|
}
|
|
if ( chain == "FORWARD" ) {
|
|
lcd = m_lcd_numRulesIn_Filter_Forward;
|
|
}
|
|
} else if ( table == "nat" ) {
|
|
if ( chain == "OUTPUT" ) {
|
|
lcd = m_lcd_numRulesIn_Nat_Output;
|
|
}
|
|
if ( chain == "PREROUTING" ) {
|
|
lcd = m_lcd_numRulesIn_Nat_Prerouting;
|
|
}
|
|
if ( chain == "POSTROUTING" ) {
|
|
lcd = m_lcd_numRulesIn_Nat_Postrouting;
|
|
}
|
|
} else if ( table == "mangle" ) {
|
|
if ( chain == "INPUT" ) {
|
|
lcd = m_lcd_numRulesIn_Mangle_Input;
|
|
}
|
|
if ( chain == "OUTPUT" ) {
|
|
lcd = m_lcd_numRulesIn_Mangle_Output;
|
|
}
|
|
if ( chain == "FORWARD" ) {
|
|
lcd = m_lcd_numRulesIn_Mangle_Forward;
|
|
}
|
|
if ( chain == "PREROUTING" ) {
|
|
lcd = m_lcd_numRulesIn_Mangle_Prerouting;
|
|
}
|
|
if ( chain == "POSTROUTING" ) {
|
|
lcd = m_lcd_numRulesIn_Mangle_Postrouting;
|
|
}
|
|
|
|
}
|
|
if ( ! lcd ) {
|
|
kdDebug() << "ERROR unknown chain or table" << endl;
|
|
return;
|
|
}
|
|
lcd->display( num );
|
|
}
|
|
|
|
#include "details.moc"
|
|
|