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/kmyfirewall/kmfwidgets/kmfobjectinfo.h

55 lines
1.6 KiB

/***************************************************************************
begin : Thu Apr 24 2003
copyright : (C) 2003 by Christian Hubinger
email : chubinger@irrsinnig.org
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#ifndef KMFOBJECTINFO_H
#define KMFOBJECTINFO_H
#include <tqwidget.h>
#include "kmyfirewallobjectinfo.h"
#include <kdemacros.h>
/**
*@author Christian Hubinger
*/
namespace KMF {
class NetfilterObject;
class KMFDoc;
class TDE_EXPORT KMFObjectInfo : public KMyFirewallObjectInfo {
TQ_OBJECT
public:
KMFObjectInfo(TQWidget *parent=0, const char *name=0, bool modal=false);
~KMFObjectInfo();
void loadNetfilterObject( NetfilterObject* );
void loadKMFDoc( KMFDoc* );
private slots:
void accept();
void reject();
void slotHelp();
private: // data
NetfilterObject* m_netfilter_object;
KMFDoc* m_doc;
signals:
void sigDocumentChanged();
void sigHideMe();
};
}
#endif