summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings/wlan/wlanmodule.h
authorbenmeyer <benmeyer>2002-10-17 18:35:56 (UTC)
committer benmeyer <benmeyer>2002-10-17 18:35:56 (UTC)
commit0af393f729c3c6fb31b6794d31daf1dba9ed6eb6 (patch) (unidiff)
tree83bf6904aa174ff026170ac6380bb857a6807468 /noncore/settings/networksettings/wlan/wlanmodule.h
parent7a8d68c1dff37a5a50d1dfa84513ed1f7b7e2008 (diff)
downloadopie-0af393f729c3c6fb31b6794d31daf1dba9ed6eb6.zip
opie-0af393f729c3c6fb31b6794d31daf1dba9ed6eb6.tar.gz
opie-0af393f729c3c6fb31b6794d31daf1dba9ed6eb6.tar.bz2
Profile changes
Diffstat (limited to 'noncore/settings/networksettings/wlan/wlanmodule.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings/wlan/wlanmodule.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/noncore/settings/networksettings/wlan/wlanmodule.h b/noncore/settings/networksettings/wlan/wlanmodule.h
index 7ebe129..833d4b1 100644
--- a/noncore/settings/networksettings/wlan/wlanmodule.h
+++ b/noncore/settings/networksettings/wlan/wlanmodule.h
@@ -8,24 +8,26 @@ class WLANModule : Module{
8signals: 8signals:
9 void updateInterface(Interface *i); 9 void updateInterface(Interface *i);
10 10
11public: 11public:
12 WLANModule(); 12 WLANModule();
13 13
14 virtual void setProfile(QString newProfile);
14 virtual bool isOwner(Interface *); 15 virtual bool isOwner(Interface *);
15 virtual QWidget *configure(QTabWidget **tabWidget); 16 virtual QWidget *configure(QTabWidget **tabWidget);
16 virtual QWidget *information(QTabWidget **tabWidget); 17 virtual QWidget *information(QTabWidget **tabWidget);
17 virtual QList<Interface> getInterfaces(); 18 virtual QList<Interface> getInterfaces();
18 virtual void possibleNewInterfaces(QMap<QString, QString> &list){}; 19 virtual void possibleNewInterfaces(QMap<QString, QString> &list){};
19 virtual Interface *addNewInterface(QString name); 20 virtual Interface *addNewInterface(QString name);
20 virtual bool remove(Interface* i); 21 virtual bool remove(Interface* i);
21 virtual QString getPixmapName(Interface* i); 22 virtual QString getPixmapName(Interface* i);
22 23
23private: 24private:
24 QList<Interface> list; 25 QList<Interface> list;
25 26 QString profile;
27
26}; 28};
27 29
28extern "C" 30extern "C"
29{ 31{
30 void* create_plugin() { 32 void* create_plugin() {
31 return new WLANModule(); 33 return new WLANModule();