summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings/wlan/wlanimp2.h
Unidiff
Diffstat (limited to 'noncore/settings/networksettings/wlan/wlanimp2.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings/wlan/wlanimp2.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/noncore/settings/networksettings/wlan/wlanimp2.h b/noncore/settings/networksettings/wlan/wlanimp2.h
new file mode 100644
index 0000000..992d09a
--- a/dev/null
+++ b/noncore/settings/networksettings/wlan/wlanimp2.h
@@ -0,0 +1,37 @@
1#ifndef WLANIMP_H
2#define WLANIMP_H
3
4#include "wlan.h"
5#include "interfaces.h"
6#include <qstringlist.h>
7
8class InterfaceSetupImp;
9class Interface;
10class Config;
11
12class WLANImp : public WLAN {
13 Q_OBJECT
14
15public:
16 WLANImp( QWidget* parent = 0, const char* name = 0, Interface *i=0, bool modal = FALSE, WFlags fl = 0 );
17 ~WLANImp();
18 void setProfile(const QString &profile);
19
20protected:
21 void accept();
22
23private:
24 void parseOpts();
25 void writeOpts();
26
27 void parseKeyStr(QString keystr);
28
29 InterfaceSetupImp *interfaceSetup;
30 Interfaces *interfaces;
31 Interface *interface;
32
33 QString currentProfile;
34};
35
36#endif
37