author | tille <tille> | 2003-05-30 15:11:15 (UTC) |
---|---|---|
committer | tille <tille> | 2003-05-30 15:11:15 (UTC) |
commit | cc06c984e13d5a452da3a5636cac77e001c80ad6 (patch) (unidiff) | |
tree | ac1547eeb750c47affc419f0fb735c2d41404215 | |
parent | 8699d02f6c152afed9490e7e7a4315044261e6e8 (diff) | |
download | opie-cc06c984e13d5a452da3a5636cac77e001c80ad6.zip opie-cc06c984e13d5a452da3a5636cac77e001c80ad6.tar.gz opie-cc06c984e13d5a452da3a5636cac77e001c80ad6.tar.bz2 |
start, stop, restart and refresh are now virtual...
-rw-r--r-- | noncore/settings/networksettings/interfaces/interface.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/noncore/settings/networksettings/interfaces/interface.h b/noncore/settings/networksettings/interfaces/interface.h index bb5de9d..7e98deb 100644 --- a/noncore/settings/networksettings/interfaces/interface.h +++ b/noncore/settings/networksettings/interfaces/interface.h | |||
@@ -1,73 +1,73 @@ | |||
1 | #ifndef INTERFACE_H | 1 | #ifndef INTERFACE_H |
2 | #define INTERFACE_H | 2 | #define INTERFACE_H |
3 | 3 | ||
4 | #include <qstring.h> | 4 | #include <qstring.h> |
5 | #include <qobject.h> | 5 | #include <qobject.h> |
6 | 6 | ||
7 | class Module; | 7 | class Module; |
8 | 8 | ||
9 | class Interface : public QObject{ | 9 | class Interface : public QObject{ |
10 | Q_OBJECT | 10 | Q_OBJECT |
11 | 11 | ||
12 | signals: | 12 | signals: |
13 | void updateInterface(Interface *i); | 13 | void updateInterface(Interface *i); |
14 | void updateMessage(const QString &message); | 14 | void updateMessage(const QString &message); |
15 | 15 | ||
16 | public: | 16 | public: |
17 | Interface(QObject * parent=0, const char * name= "unknown", bool status = false); | 17 | Interface(QObject * parent=0, const char * name= "unknown", bool status = false); |
18 | 18 | ||
19 | QString getInterfaceName() const { QString n(this->name()); return n; }; | 19 | QString getInterfaceName() const { QString n(this->name()); return n; }; |
20 | void setInterfaceName( const QString &n ) { this->setName(n); }; | 20 | void setInterfaceName( const QString &n ) { this->setName(n); }; |
21 | 21 | ||
22 | bool getStatus() const { return status; }; | 22 | bool getStatus() const { return status; }; |
23 | void setStatus(bool newStatus); | 23 | void setStatus(bool newStatus); |
24 | 24 | ||
25 | bool isAttached() const { return attached; }; | 25 | bool isAttached() const { return attached; }; |
26 | void setAttached(bool isAttached=false); | 26 | void setAttached(bool isAttached=false); |
27 | 27 | ||
28 | QString getHardwareName() const { return hardwareName; }; | 28 | QString getHardwareName() const { return hardwareName; }; |
29 | void setHardwareName(const QString &name="Unknown"); | 29 | void setHardwareName(const QString &name="Unknown"); |
30 | 30 | ||
31 | Module* getModuleOwner() const { return moduleOwner; }; | 31 | Module* getModuleOwner() const { return moduleOwner; }; |
32 | void setModuleOwner(Module *owner=NULL); | 32 | void setModuleOwner(Module *owner=NULL); |
33 | 33 | ||
34 | // inet information. | 34 | // inet information. |
35 | QString getMacAddress() const { return macAddress; }; | 35 | QString getMacAddress() const { return macAddress; }; |
36 | QString getIp() const { return ip; }; | 36 | QString getIp() const { return ip; }; |
37 | QString getSubnetMask() const { return subnetMask; }; | 37 | QString getSubnetMask() const { return subnetMask; }; |
38 | QString getBroadcast() const { return broadcast; }; | 38 | QString getBroadcast() const { return broadcast; }; |
39 | bool isDhcp() const { return dhcp; }; | 39 | bool isDhcp() const { return dhcp; }; |
40 | QString getDhcpServerIp() const { return dhcpServerIp; }; | 40 | QString getDhcpServerIp() const { return dhcpServerIp; }; |
41 | QString getLeaseObtained() const { return leaseObtained; }; | 41 | QString getLeaseObtained() const { return leaseObtained; }; |
42 | QString getLeaseExpires() const { return leaseExpires; }; | 42 | QString getLeaseExpires() const { return leaseExpires; }; |
43 | 43 | ||
44 | public slots: | 44 | public slots: |
45 | bool refresh(); | 45 | virtual bool refresh(); |
46 | void start(); | 46 | virtual void start(); |
47 | void stop(); | 47 | virtual void stop(); |
48 | void restart(); | 48 | virtual void restart(); |
49 | 49 | ||
50 | private: | 50 | private: |
51 | // Interface information | 51 | // Interface information |
52 | QString hardwareName; | 52 | QString hardwareName; |
53 | Module *moduleOwner; | 53 | Module *moduleOwner; |
54 | bool status; | 54 | bool status; |
55 | bool attached; | 55 | bool attached; |
56 | 56 | ||
57 | // Network information | 57 | // Network information |
58 | bool dhcp; | 58 | bool dhcp; |
59 | QString dhcpServerIp; | 59 | QString dhcpServerIp; |
60 | QString leaseObtained; | 60 | QString leaseObtained; |
61 | QString leaseExpires; | 61 | QString leaseExpires; |
62 | 62 | ||
63 | QString macAddress; | 63 | QString macAddress; |
64 | QString ip; | 64 | QString ip; |
65 | QString broadcast; | 65 | QString broadcast; |
66 | QString subnetMask; | 66 | QString subnetMask; |
67 | 67 | ||
68 | }; | 68 | }; |
69 | 69 | ||
70 | #endif | 70 | #endif |
71 | 71 | ||
72 | // interface.h | 72 | // interface.h |
73 | 73 | ||