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

55 lines
894 B

//
// C++ Interface: %{MODULE}
//
// Description:
//
//
// Author: %{AUTHOR} <%{EMAIL}>, (C) %{YEAR}
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef KMFSELECTINTERFACE_H
#define KMFSELECTINTERFACE_H
#include "kmyfirewallselectinterface.h"
// TQt Includes
#include <tqstringlist.h>
// KDE Includes
#include <kdemacros.h>
// Project Includes
namespace KMF {
class KDE_EXPORT KMFSelectInterface : public KMyFirewallSelectInterface {
TQ_OBJECT
public:
KMFSelectInterface( TQWidget *parent = 0, const char *name = 0, bool modal = true, WFlags fl = 0 );
~KMFSelectInterface();
/*$PUBLIC_FUNCTIONS$*/
public slots:
/*$PUBLIC_SLOTS$*/
protected:
/*$PROTECTED_FUNCTIONS$*/
protected slots:
/*$PROTECTED_SLOTS$*/
void slotInterfaceChanged( int );
void accept();
void help();
void reject();
private: // DATA
TQStringList m_descs;
};
}
#endif