summaryrefslogtreecommitdiffstats
path: root/kmyfirewall/kmfwidgets/kmfselectinterface.h
blob: af06a818f16dda3f9030803df540fbf7cfefb546 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
//
// 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"

// QT 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