summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings/wlan/wlanimp2.h
Side-by-side diff
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 @@
+#ifndef WLANIMP_H
+#define WLANIMP_H
+
+#include "wlan.h"
+#include "interfaces.h"
+#include <qstringlist.h>
+
+class InterfaceSetupImp;
+class Interface;
+class Config;
+
+class WLANImp : public WLAN {
+ Q_OBJECT
+
+public:
+ WLANImp( QWidget* parent = 0, const char* name = 0, Interface *i=0, bool modal = FALSE, WFlags fl = 0 );
+ ~WLANImp();
+ void setProfile(const QString &profile);
+
+protected:
+ void accept();
+
+private:
+ void parseOpts();
+ void writeOpts();
+
+ void parseKeyStr(QString keystr);
+
+ InterfaceSetupImp *interfaceSetup;
+ Interfaces *interfaces;
+ Interface *interface;
+
+ QString currentProfile;
+};
+
+#endif
+