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/kmfsystemsettingslinux.h

59 lines
965 B

//
// C++ Interface:
//
// Description:
//
//
// Author: Christian Hubinger <chubinger@irrsinnig.org>, (C) 2006
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef KMFSYSTEMSETTINGSLINUX_H
#define KMFSYSTEMSETTINGSLINUX_H
#include "kmyfirewallsystemsettingslinux.h"
#include <tqstring.h>
#include <tqguardedptr.h>
namespace KMF {
class KMFTarget;
class KMFSystemSettingsLinux : public KMyFirewallSystemSettingsLinux
{
TQ_OBJECT
public:
KMFSystemSettingsLinux(TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
~KMFSystemSettingsLinux();
/*$PUBLIC_FUNCTIONS$*/
void loadTarget( KMFTarget* target );
public slots:
/*$PUBLIC_SLOTS$*/
protected:
/*$PROTECTED_FUNCTIONS$*/
void updateView();
protected slots:
/*$PROTECTED_SLOTS$*/
void slotSettingChanged();
void slotDistributionChanged();
signals:
void sigTargetChanged();
private:
TQGuardedPtr<KMFTarget> m_target;
};
}
#endif