blob: 4797f23e96cc74ea68bd87d2691abd10af9df042 (
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
55
56
57
58
59
60
61
62
63
64
|
//
// C++ Interface:
//
// Description:
//
//
// Author: Christian Hubinger <[email protected]>, (C) 2007
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef KMFNETHOSTPROPERTIESWIDGET_H
#define KMFNETHOSTPROPERTIESWIDGET_H
#include "kmyfirewallnethostproperties.h"
// QT include
#include <tqguardedptr.h>
namespace KMF {
class KMFNetHost;
class KMFIPv4AddressWidget;
class KMFNetHostPropertiesWidget : public KMyFirewallNetHostProperties {
Q_OBJECT
TQ_OBJECT
public:
KMFNetHostPropertiesWidget ( TQWidget* tqparent = 0, const char* name = 0, WFlags fl = 0 );
~KMFNetHostPropertiesWidget();
/*$PUBLIC_FUNCTIONS$*/
void loadHost( KMFNetHost* );
public slots:
/*$PUBLIC_SLOTS$*/
protected:
/*$PROTECTED_FUNCTIONS$*/
protected slots:
/*$PROTECTED_SLOTS$*/
void slotAddressChanged( int, int, int, int );
void slotHostLimitToggled( bool );
void slotHostLogToggled( bool );
void slotHostLimitValueChanged( int );
void slotHostLimitScaleChanged( int );
void slotDescriptionChanged();
void slotHostDeleted();
private:
void blockAllSignals( bool );
private:
TQGuardedPtr<KMFNetHost> m_host;
KMFIPv4AddressWidget *m_address_widget;
signals:
void sigHostAddressChanged( const TQString& );
void sigHostChanged( KMFNetHost* );
};
}
#endif
|