author | mickeyl <mickeyl> | 2002-12-28 18:57:11 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2002-12-28 18:57:11 (UTC) |
commit | f70916f3ab05917a3d0dda64beb8db5ac16448ab (patch) (unidiff) | |
tree | bd138c1a901de7ea49b012b32e48d3f4b8b073f8 | |
parent | 1362726346f1ab497ad5822db1a9b284f5bdaa1a (diff) | |
download | opie-f70916f3ab05917a3d0dda64beb8db5ac16448ab.zip opie-f70916f3ab05917a3d0dda64beb8db5ac16448ab.tar.gz opie-f70916f3ab05917a3d0dda64beb8db5ac16448ab.tar.bz2 |
- refactored a number of classes
- removed dumb polling ==> QSocketNotifier rocks
- switched to parsing the daemon stuff in the gui,
since libwellenreiter still has problems.
-rw-r--r-- | noncore/net/wellenreiter/gui/cardconfig.cpp | 29 | ||||
-rw-r--r-- | noncore/net/wellenreiter/gui/cardconfig.h | 58 | ||||
-rw-r--r-- | noncore/net/wellenreiter/gui/configbase.ui | 10 | ||||
-rw-r--r-- | noncore/net/wellenreiter/gui/gui-x11.pro | 6 | ||||
-rw-r--r-- | noncore/net/wellenreiter/gui/gui.pro | 6 | ||||
-rw-r--r-- | noncore/net/wellenreiter/gui/scanlist.cpp | 100 | ||||
-rw-r--r-- | noncore/net/wellenreiter/gui/scanlist.h | 11 | ||||
-rw-r--r-- | noncore/net/wellenreiter/gui/scanlistitem.cpp | 1 | ||||
-rw-r--r-- | noncore/net/wellenreiter/gui/wellenreiter.cpp | 213 | ||||
-rw-r--r-- | noncore/net/wellenreiter/gui/wellenreiter.h | 18 | ||||
-rw-r--r-- | noncore/net/wellenreiter/gui/wellenreiterbase.cpp | 8 | ||||
-rw-r--r-- | noncore/net/wellenreiter/gui/wellenreiterbase.h | 13 | ||||
-rw-r--r-- | noncore/net/wellenreiter/gui/wlan.cpp | 57 | ||||
-rw-r--r-- | noncore/net/wellenreiter/gui/wlan.h | 38 |
14 files changed, 403 insertions, 165 deletions
diff --git a/noncore/net/wellenreiter/gui/cardconfig.cpp b/noncore/net/wellenreiter/gui/cardconfig.cpp new file mode 100644 index 0000000..1ca1d27 --- a/dev/null +++ b/noncore/net/wellenreiter/gui/cardconfig.cpp | |||
@@ -0,0 +1,29 @@ | |||
1 | /********************************************************************** | ||
2 | ** Copyright (C) 2002 Michael 'Mickey' Lauer. All rights reserved. | ||
3 | ** | ||
4 | ** This file is part of Opie Environment. | ||
5 | ** | ||
6 | ** This file may be distributed and/or modified under the terms of the | ||
7 | ** GNU General Public License version 2 as published by the Free Software | ||
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | ||
9 | ** packaging of this file. | ||
10 | ** | ||
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | ||
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | ||
13 | ** | ||
14 | **********************************************************************/ | ||
15 | |||
16 | #include "cardconfig.h" | ||
17 | |||
18 | #include <qstring.h> | ||
19 | |||
20 | CardConfig::CardConfig( const QString& interface, Type type, int hopinterval ) | ||
21 | :_interface( interface ), _type( type ), _hopinterval( hopinterval ) | ||
22 | { | ||
23 | |||
24 | } | ||
25 | |||
26 | CardConfig::~CardConfig() | ||
27 | { | ||
28 | } | ||
29 | |||
diff --git a/noncore/net/wellenreiter/gui/cardconfig.h b/noncore/net/wellenreiter/gui/cardconfig.h new file mode 100644 index 0000000..f54ebac --- a/dev/null +++ b/noncore/net/wellenreiter/gui/cardconfig.h | |||
@@ -0,0 +1,58 @@ | |||
1 | /********************************************************************** | ||
2 | ** Copyright (C) 2002 Michael 'Mickey' Lauer. All rights reserved. | ||
3 | ** | ||
4 | ** This file is part of Opie Environment. | ||
5 | ** | ||
6 | ** This file may be distributed and/or modified under the terms of the | ||
7 | ** GNU General Public License version 2 as published by the Free Software | ||
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | ||
9 | ** packaging of this file. | ||
10 | ** | ||
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | ||
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | ||
13 | ** | ||
14 | **********************************************************************/ | ||
15 | |||
16 | #ifndef CARDCONFIG_H | ||
17 | #define CARDCONFIG_H | ||
18 | |||
19 | #include <qstring.h> | ||
20 | |||
21 | #ifdef QWS | ||
22 | #include <opie/odevice.h> | ||
23 | using namespace Opie; | ||
24 | #endif | ||
25 | |||
26 | class CardConfig | ||
27 | { | ||
28 | public: | ||
29 | |||
30 | typedef enum { Prism, Orinoco, HostAP, Manual } Type; | ||
31 | |||
32 | public: | ||
33 | |||
34 | CardConfig( const QString& interface, Type type = Manual, int hopinterval = 100 ); | ||
35 | virtual ~CardConfig(); | ||
36 | |||
37 | const QString& interface() { return _interface; }; | ||
38 | int hopinterval() { return _hopinterval; }; | ||
39 | Type type() { return _type; }; | ||
40 | |||
41 | #ifdef QWS | ||
42 | OSystem system() { return _system; }; | ||
43 | #endif | ||
44 | |||
45 | private: | ||
46 | |||
47 | QString _interface; | ||
48 | Type _type; | ||
49 | int _hopinterval; | ||
50 | |||
51 | #ifdef QWS | ||
52 | OSystem _system; | ||
53 | #endif | ||
54 | |||
55 | }; | ||
56 | |||
57 | #endif | ||
58 | |||
diff --git a/noncore/net/wellenreiter/gui/configbase.ui b/noncore/net/wellenreiter/gui/configbase.ui index e2f734a..8dcf513 100644 --- a/noncore/net/wellenreiter/gui/configbase.ui +++ b/noncore/net/wellenreiter/gui/configbase.ui | |||
@@ -1,59 +1,59 @@ | |||
1 | <!DOCTYPE UI><UI> | 1 | <!DOCTYPE UI><UI> |
2 | <class>WellenreiterConfigBase</class> | 2 | <class>WellenreiterConfigBase</class> |
3 | <widget> | 3 | <widget> |
4 | <class>QWidget</class> | 4 | <class>QWidget</class> |
5 | <property stdset="1"> | 5 | <property stdset="1"> |
6 | <name>name</name> | 6 | <name>name</name> |
7 | <cstring>WellenreiterConfigBase</cstring> | 7 | <cstring>WellenreiterConfigBase</cstring> |
8 | </property> | 8 | </property> |
9 | <property stdset="1"> | 9 | <property stdset="1"> |
10 | <name>geometry</name> | 10 | <name>geometry</name> |
11 | <rect> | 11 | <rect> |
12 | <x>0</x> | 12 | <x>0</x> |
13 | <y>0</y> | 13 | <y>0</y> |
14 | <width>232</width> | 14 | <width>228</width> |
15 | <height>267</height> | 15 | <height>267</height> |
16 | </rect> | 16 | </rect> |
17 | </property> | 17 | </property> |
18 | <property stdset="1"> | 18 | <property stdset="1"> |
19 | <name>caption</name> | 19 | <name>caption</name> |
20 | <string>Form1</string> | 20 | <string>Form1</string> |
21 | </property> | 21 | </property> |
22 | <property> | 22 | <property> |
23 | <name>layoutMargin</name> | 23 | <name>layoutMargin</name> |
24 | </property> | 24 | </property> |
25 | <property> | 25 | <property> |
26 | <name>layoutSpacing</name> | 26 | <name>layoutSpacing</name> |
27 | </property> | 27 | </property> |
28 | <vbox> | 28 | <vbox> |
29 | <property stdset="1"> | 29 | <property stdset="1"> |
30 | <name>margin</name> | 30 | <name>margin</name> |
31 | <number>4</number> | 31 | <number>4</number> |
32 | </property> | 32 | </property> |
33 | <property stdset="1"> | 33 | <property stdset="1"> |
34 | <name>spacing</name> | 34 | <name>spacing</name> |
35 | <number>0</number> | 35 | <number>1</number> |
36 | </property> | 36 | </property> |
37 | <widget> | 37 | <widget> |
38 | <class>QLayoutWidget</class> | 38 | <class>QLayoutWidget</class> |
39 | <property stdset="1"> | 39 | <property stdset="1"> |
40 | <name>name</name> | 40 | <name>name</name> |
41 | <cstring>Layout5</cstring> | 41 | <cstring>Layout5</cstring> |
42 | </property> | 42 | </property> |
43 | <property> | 43 | <property> |
44 | <name>layoutSpacing</name> | 44 | <name>layoutSpacing</name> |
45 | </property> | 45 | </property> |
46 | <hbox> | 46 | <hbox> |
47 | <property stdset="1"> | 47 | <property stdset="1"> |
48 | <name>margin</name> | 48 | <name>margin</name> |
49 | <number>0</number> | 49 | <number>0</number> |
50 | </property> | 50 | </property> |
51 | <property stdset="1"> | 51 | <property stdset="1"> |
52 | <name>spacing</name> | 52 | <name>spacing</name> |
53 | <number>2</number> | 53 | <number>2</number> |
54 | </property> | 54 | </property> |
55 | <widget> | 55 | <widget> |
56 | <class>QLabel</class> | 56 | <class>QLabel</class> |
57 | <property stdset="1"> | 57 | <property stdset="1"> |
58 | <name>name</name> | 58 | <name>name</name> |
59 | <cstring>TextLabel3_2</cstring> | 59 | <cstring>TextLabel3_2</cstring> |
@@ -159,54 +159,48 @@ | |||
159 | <property stdset="1"> | 159 | <property stdset="1"> |
160 | <name>name</name> | 160 | <name>name</name> |
161 | <cstring>activeScanning</cstring> | 161 | <cstring>activeScanning</cstring> |
162 | </property> | 162 | </property> |
163 | <property stdset="1"> | 163 | <property stdset="1"> |
164 | <name>enabled</name> | 164 | <name>enabled</name> |
165 | <bool>false</bool> | 165 | <bool>false</bool> |
166 | </property> | 166 | </property> |
167 | <property stdset="1"> | 167 | <property stdset="1"> |
168 | <name>text</name> | 168 | <name>text</name> |
169 | <string>Active Scanning (caution!)</string> | 169 | <string>Active Scanning (caution!)</string> |
170 | </property> | 170 | </property> |
171 | </widget> | 171 | </widget> |
172 | <widget row="1" column="0" > | 172 | <widget row="1" column="0" > |
173 | <class>QComboBox</class> | 173 | <class>QComboBox</class> |
174 | <item> | 174 | <item> |
175 | <property> | 175 | <property> |
176 | <name>text</name> | 176 | <name>text</name> |
177 | <string><select></string> | 177 | <string><select></string> |
178 | </property> | 178 | </property> |
179 | </item> | 179 | </item> |
180 | <item> | 180 | <item> |
181 | <property> | 181 | <property> |
182 | <name>text</name> | 182 | <name>text</name> |
183 | <string>cisco</string> | ||
184 | </property> | ||
185 | </item> | ||
186 | <item> | ||
187 | <property> | ||
188 | <name>text</name> | ||
189 | <string>orinoco</string> | 183 | <string>orinoco</string> |
190 | </property> | 184 | </property> |
191 | </item> | 185 | </item> |
192 | <item> | 186 | <item> |
193 | <property> | 187 | <property> |
194 | <name>text</name> | 188 | <name>text</name> |
195 | <string>prism</string> | 189 | <string>prism</string> |
196 | </property> | 190 | </property> |
197 | </item> | 191 | </item> |
198 | <item> | 192 | <item> |
199 | <property> | 193 | <property> |
200 | <name>text</name> | 194 | <name>text</name> |
201 | <string><manual></string> | 195 | <string><manual></string> |
202 | </property> | 196 | </property> |
203 | </item> | 197 | </item> |
204 | <property stdset="1"> | 198 | <property stdset="1"> |
205 | <name>name</name> | 199 | <name>name</name> |
206 | <cstring>deviceType</cstring> | 200 | <cstring>deviceType</cstring> |
207 | </property> | 201 | </property> |
208 | <property stdset="1"> | 202 | <property stdset="1"> |
209 | <name>enabled</name> | 203 | <name>enabled</name> |
210 | <bool>true</bool> | 204 | <bool>true</bool> |
211 | </property> | 205 | </property> |
212 | </widget> | 206 | </widget> |
diff --git a/noncore/net/wellenreiter/gui/gui-x11.pro b/noncore/net/wellenreiter/gui/gui-x11.pro index 6b4a7bf..523bf15 100644 --- a/noncore/net/wellenreiter/gui/gui-x11.pro +++ b/noncore/net/wellenreiter/gui/gui-x11.pro | |||
@@ -1,11 +1,11 @@ | |||
1 | DESTDIR = . | 1 | DESTDIR = . |
2 | TEMPLATE = app | 2 | TEMPLATE = app |
3 | CONFIG = qt warn_on debug | 3 | CONFIG = qt warn_on debug |
4 | #CONFIG = qt warn_on release | 4 | #CONFIG = qt warn_on release |
5 | HEADERS = wellenreiterbase.h wellenreiter.h scanlistitem.h scanlist.h logwindow.h hexwindow.h configwindow.h resource.h | 5 | HEADERS = wellenreiterbase.h wellenreiter.h scanlistitem.h scanlist.h logwindow.h hexwindow.h configwindow.h resource.h wlan.h cardconfig.h |
6 | SOURCES = main.cpp wellenreiterbase.cpp wellenreiter.cpp scanlistitem.cpp scanlist.cpp logwindow.cpp hexwindow.cpp configwindow.cpp resource.cpp | 6 | SOURCES = main.cpp wellenreiterbase.cpp wellenreiter.cpp scanlistitem.cpp scanlist.cpp logwindow.cpp hexwindow.cpp configwindow.cpp resource.cpp wlan.cpp cardconfig.cpp |
7 | INCLUDEPATH += ../ | 7 | INCLUDEPATH += ../ |
8 | DEPENDPATH += ../ | 8 | DEPENDPATH += ../ |
9 | LIBS += -lwellenreiter | 9 | LIBS += -L. -lwellenreiter |
10 | INTERFACES = configbase.ui | 10 | INTERFACES = configbase.ui |
11 | TARGET = wellenreiter | 11 | TARGET = wellenreiter |
diff --git a/noncore/net/wellenreiter/gui/gui.pro b/noncore/net/wellenreiter/gui/gui.pro index b6e884d..ce1c387 100644 --- a/noncore/net/wellenreiter/gui/gui.pro +++ b/noncore/net/wellenreiter/gui/gui.pro | |||
@@ -1,11 +1,11 @@ | |||
1 | DESTDIR = $(OPIEDIR)/bin | 1 | DESTDIR = $(OPIEDIR)/bin |
2 | TEMPLATE = app | 2 | TEMPLATE = app |
3 | CONFIG = qt warn_on debug | 3 | CONFIG = qt warn_on debug |
4 | #CONFIG = qt warn_on release | 4 | #CONFIG = qt warn_on release |
5 | HEADERS = wellenreiterbase.h wellenreiter.h scanlistitem.h scanlist.h logwindow.h hexwindow.h configwindow.h | 5 | HEADERS = wellenreiterbase.h wellenreiter.h scanlistitem.h scanlist.h logwindow.h hexwindow.h configwindow.h wlan.h cardconfig.h |
6 | SOURCES = main.cpp wellenreiterbase.cpp wellenreiter.cpp scanlistitem.cpp scanlist.cpp logwindow.cpp hexwindow.cpp configwindow.cpp | 6 | SOURCES = main.cpp wellenreiterbase.cpp wellenreiter.cpp scanlistitem.cpp scanlist.cpp logwindow.cpp hexwindow.cpp configwindow.cpp wlan.cpp cardconfig.cpp |
7 | INCLUDEPATH += $(OPIEDIR)/include ../ | 7 | INCLUDEPATH += $(OPIEDIR)/include ../ |
8 | DEPENDPATH += $(OPIEDIR)/include ../ | 8 | DEPENDPATH += $(OPIEDIR)/include ../ |
9 | LIBS += -lqpe -lopie -lwellenreiter | 9 | LIBS += -lqpe -lopie -L. -lwellenreiter |
10 | INTERFACES = configbase.ui | 10 | INTERFACES = configbase.ui |
11 | TARGET = wellenreiter | 11 | TARGET = wellenreiter |
diff --git a/noncore/net/wellenreiter/gui/scanlist.cpp b/noncore/net/wellenreiter/gui/scanlist.cpp index f907afc..6d032aa 100644 --- a/noncore/net/wellenreiter/gui/scanlist.cpp +++ b/noncore/net/wellenreiter/gui/scanlist.cpp | |||
@@ -1,17 +1,117 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** Copyright (C) 2002 Michael 'Mickey' Lauer. All rights reserved. | 2 | ** Copyright (C) 2002 Michael 'Mickey' Lauer. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of Opie Environment. | 4 | ** This file is part of Opie Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | **********************************************************************/ | 14 | **********************************************************************/ |
15 | 15 | ||
16 | #include "scanlist.h" | 16 | #include "scanlist.h" |
17 | #include "scanlistitem.h" | ||
18 | |||
19 | #include <assert.h> | ||
20 | |||
21 | MScanListView::MScanListView( QWidget* parent, const char* name ) | ||
22 | :QListView( parent, name ) | ||
23 | { | ||
24 | }; | ||
25 | |||
26 | MScanListView::~MScanListView() | ||
27 | { | ||
28 | }; | ||
29 | |||
30 | void MScanListView::addNewItem( QString type, QString essid, QString macaddr, bool wep, int channel, int signal ) | ||
31 | { | ||
32 | // FIXME: scanlistitem needs a proper encapsulation and not such a damn dealing with text(...) | ||
33 | |||
34 | qDebug( "MScanList::addNewItem( %s / %s / %s [%d]", | ||
35 | (const char*) type, | ||
36 | (const char*) essid, | ||
37 | (const char*) macaddr, | ||
38 | channel ); | ||
39 | |||
40 | // search, if we already have seen this net | ||
41 | |||
42 | QString s; | ||
43 | MScanListItem* network; | ||
44 | MScanListItem* item = static_cast<MScanListItem*> ( firstChild() ); | ||
45 | |||
46 | while ( item && ( item->text( 0 ) != essid ) ) | ||
47 | { | ||
48 | qDebug( "itemtext: %s", (const char*) item->text( 0 ) ); | ||
49 | item = static_cast<MScanListItem*> ( item->itemBelow() ); | ||
50 | } | ||
51 | if ( item ) | ||
52 | { | ||
53 | // animate the item | ||
54 | |||
55 | /* | ||
56 | |||
57 | const QPixmap* pixmap = item->pixmap( 0 ); | ||
58 | const QPixmap* nextpixmap = ani2; | ||
59 | if ( pixmap == ani1 ) | ||
60 | nextpixmap = ani2; | ||
61 | else if ( pixmap == ani2 ) | ||
62 | nextpixmap = ani3; | ||
63 | else if ( pixmap == ani3 ) | ||
64 | nextpixmap = ani4; | ||
65 | else if ( pixmap == ani4 ) | ||
66 | nextpixmap = ani1; | ||
67 | item->setPixmap( 0, *nextpixmap ); */ | ||
68 | |||
69 | //qDebug( "current pixmap %d, next %d", pixmap, nextpixmap ); | ||
70 | |||
71 | // we have already seen this net, check all childs if MAC exists | ||
72 | |||
73 | network = item; | ||
74 | |||
75 | item = static_cast<MScanListItem*> ( item->firstChild() ); | ||
76 | assert( item ); // this shouldn't fail | ||
77 | |||
78 | while ( item && ( item->text( 2 ) != macaddr ) ) | ||
79 | { | ||
80 | qDebug( "subitemtext: %s", (const char*) item->text( 2 ) ); | ||
81 | item = static_cast<MScanListItem*> ( item->itemBelow() ); | ||
82 | } | ||
83 | |||
84 | if ( item ) | ||
85 | { | ||
86 | // we have already seen this item, it's a dupe | ||
87 | qDebug( "%s is a dupe - ignoring...", (const char*) macaddr ); | ||
88 | return; | ||
89 | } | ||
90 | } | ||
91 | else | ||
92 | { | ||
93 | s.sprintf( "(i) new network: '%s'", (const char*) essid ); | ||
94 | |||
95 | network = new MScanListItem( this, "networks", essid, QString::null, 0, 0, 0 ); | ||
96 | } | ||
97 | |||
98 | |||
99 | // insert new station as child from network | ||
100 | |||
101 | // no essid to reduce clutter, maybe later we have a nick or stationname to display!? | ||
102 | |||
103 | qDebug( "inserting new station %s", (const char*) macaddr ); | ||
104 | |||
105 | new MScanListItem( network, type, "", macaddr, wep, channel, signal ); | ||
106 | |||
107 | if ( type == "managed" ) | ||
108 | { | ||
109 | s.sprintf( "(i) new AP in '%s' [%d]", (const char*) essid, channel ); | ||
110 | } | ||
111 | else | ||
112 | { | ||
113 | s.sprintf( "(i) new adhoc station in '%s' [%d]", (const char*) essid, channel ); | ||
114 | } | ||
115 | |||
116 | } | ||
17 | 117 | ||
diff --git a/noncore/net/wellenreiter/gui/scanlist.h b/noncore/net/wellenreiter/gui/scanlist.h index 5cf3053..6fe6930 100644 --- a/noncore/net/wellenreiter/gui/scanlist.h +++ b/noncore/net/wellenreiter/gui/scanlist.h | |||
@@ -1,28 +1,37 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** Copyright (C) 2002 Michael 'Mickey' Lauer. All rights reserved. | 2 | ** Copyright (C) 2002 Michael 'Mickey' Lauer. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of Opie Environment. | 4 | ** This file is part of Opie Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | **********************************************************************/ | 14 | **********************************************************************/ |
15 | 15 | ||
16 | #ifndef SCANLIST_H | 16 | #ifndef SCANLIST_H |
17 | #define SCANLIST_H | 17 | #define SCANLIST_H |
18 | 18 | ||
19 | #include <qlistview.h> | 19 | #include <qlistview.h> |
20 | 20 | ||
21 | class QString; | 21 | class QString; |
22 | 22 | ||
23 | class MScanList: public QListView | 23 | class MScanListView: public QListView |
24 | { | 24 | { |
25 | Q_OBJECT | ||
26 | |||
27 | public: | ||
28 | MScanListView( QWidget* parent = 0, const char* name = 0 ); | ||
29 | virtual ~MScanListView(); | ||
30 | |||
31 | public slots: | ||
32 | void addNewItem( QString type, QString essid, QString macaddr, bool wep, int channel, int signal ); | ||
33 | |||
25 | }; | 34 | }; |
26 | 35 | ||
27 | #endif | 36 | #endif |
28 | 37 | ||
diff --git a/noncore/net/wellenreiter/gui/scanlistitem.cpp b/noncore/net/wellenreiter/gui/scanlistitem.cpp index 1e2a52e..f4b43a6 100644 --- a/noncore/net/wellenreiter/gui/scanlistitem.cpp +++ b/noncore/net/wellenreiter/gui/scanlistitem.cpp | |||
@@ -55,24 +55,25 @@ void MScanListItem::decorateItem( QString type, QString essid, QString macaddr, | |||
55 | (const char*) macaddr, | 55 | (const char*) macaddr, |
56 | channel ); | 56 | channel ); |
57 | 57 | ||
58 | // set icon for managed or adhoc mode | 58 | // set icon for managed or adhoc mode |
59 | QString name; | 59 | QString name; |
60 | name.sprintf( "wellenreiter/%s", (const char*) type ); | 60 | name.sprintf( "wellenreiter/%s", (const char*) type ); |
61 | setPixmap( col_type, Resource::loadPixmap( name ) ); | 61 | setPixmap( col_type, Resource::loadPixmap( name ) ); |
62 | 62 | ||
63 | // set icon for wep (wireless encryption protocol) | 63 | // set icon for wep (wireless encryption protocol) |
64 | if ( wep ) | 64 | if ( wep ) |
65 | setPixmap( col_wep, Resource::loadPixmap( "wellenreiter/cracked" ) ); // rename the pixmap! | 65 | setPixmap( col_wep, Resource::loadPixmap( "wellenreiter/cracked" ) ); // rename the pixmap! |
66 | 66 | ||
67 | // set channel and signal text | 67 | // set channel and signal text |
68 | 68 | ||
69 | if ( signal != -1 ) | 69 | if ( signal != -1 ) |
70 | setText( col_sig, QString::number( signal ) ); | 70 | setText( col_sig, QString::number( signal ) ); |
71 | if ( channel != -1 ) | 71 | if ( channel != -1 ) |
72 | setText( col_channel, QString::number( channel ) ); | 72 | setText( col_channel, QString::number( channel ) ); |
73 | 73 | ||
74 | listView()->triggerUpdate(); | 74 | listView()->triggerUpdate(); |
75 | 75 | ||
76 | this->type = type; | 76 | this->type = type; |
77 | 77 | ||
78 | } | 78 | } |
79 | |||
diff --git a/noncore/net/wellenreiter/gui/wellenreiter.cpp b/noncore/net/wellenreiter/gui/wellenreiter.cpp index 0fd929f..2d9bbee 100644 --- a/noncore/net/wellenreiter/gui/wellenreiter.cpp +++ b/noncore/net/wellenreiter/gui/wellenreiter.cpp | |||
@@ -1,276 +1,224 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** Copyright (C) 2002 Michael 'Mickey' Lauer. All rights reserved. | 2 | ** Copyright (C) 2002 Michael 'Mickey' Lauer. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of Opie Environment. | 4 | ** This file is part of Opie Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ***********************************************************************/ | 14 | ***********************************************************************/ |
15 | 15 | ||
16 | // Qt | 16 | // Qt |
17 | 17 | ||
18 | #include <qpushbutton.h> | 18 | #include <qpushbutton.h> |
19 | #include <qmessagebox.h> | 19 | #include <qmessagebox.h> |
20 | #include <qcombobox.h> | 20 | #include <qcombobox.h> |
21 | #include <qspinbox.h> | 21 | #include <qspinbox.h> |
22 | #include <qsocketnotifier.h> | ||
22 | 23 | ||
23 | // Qtopia | 24 | // Qtopia |
24 | 25 | ||
25 | #ifdef QWS | 26 | #ifdef QWS |
26 | #include <qpe/global.h> | 27 | #include <qpe/global.h> |
27 | #endif | 28 | #endif |
28 | 29 | ||
30 | // Opie | ||
31 | |||
32 | #ifdef QWS | ||
33 | #include <opie/odevice.h> | ||
34 | using namespace Opie; | ||
35 | #endif | ||
36 | |||
29 | // Standard | 37 | // Standard |
30 | 38 | ||
31 | #include <assert.h> | 39 | #include <assert.h> |
32 | #include <errno.h> | 40 | #include <errno.h> |
33 | #include <unistd.h> | 41 | #include <unistd.h> |
34 | #include <string.h> | 42 | #include <string.h> |
35 | #include <sys/types.h> | 43 | #include <sys/types.h> |
44 | #include <sys/socket.h> | ||
36 | #include <stdlib.h> | 45 | #include <stdlib.h> |
46 | #include <fcntl.h> | ||
37 | 47 | ||
38 | // Local | 48 | // Local |
39 | 49 | ||
40 | #include "wellenreiter.h" | 50 | #include "wellenreiter.h" |
41 | #include "scanlistitem.h" | 51 | #include "scanlist.h" |
42 | #include "logwindow.h" | 52 | #include "logwindow.h" |
43 | #include "hexwindow.h" | 53 | #include "hexwindow.h" |
44 | #include "configwindow.h" | 54 | #include "configwindow.h" |
45 | 55 | ||
46 | #include <libwellenreiter/source/wl_sock.hh> | 56 | #include <libwellenreiter/source/wl_sock.hh> |
47 | #include <libwellenreiter/source/wl_proto.hh> | 57 | #include <libwellenreiter/source/wl_proto.hh> |
48 | #include <daemon/source/config.hh> | 58 | #include <daemon/source/config.hh> |
49 | 59 | ||
50 | Wellenreiter::Wellenreiter( QWidget* parent, const char* name, WFlags fl ) | 60 | Wellenreiter::Wellenreiter( QWidget* parent, const char* name, WFlags fl ) |
51 | : WellenreiterBase( parent, name, fl ), daemonRunning( false ) | 61 | : WellenreiterBase( parent, name, fl ), daemonRunning( false ) |
52 | { | 62 | { |
53 | 63 | ||
54 | logwindow->log( "(i) Wellenreiter has been started." ); | 64 | logwindow->log( "(i) Wellenreiter has been started." ); |
55 | 65 | ||
56 | connect( button, SIGNAL( clicked() ), this, SLOT( buttonClicked() ) ); | ||
57 | netview->setColumnWidthMode( 1, QListView::Manual ); | ||
58 | |||
59 | // | 66 | // |
60 | // setup socket for daemon communication and start poller | 67 | // detect operating system |
68 | // | ||
69 | |||
70 | #ifdef QWS | ||
71 | QString sys; | ||
72 | sys.sprintf( "(i) Running on '%s'.", (const char*) ODevice::inst()->systemString() ); | ||
73 | _system = ODevice::inst()->system(); | ||
74 | logwindow->log( sys ); | ||
75 | #endif | ||
76 | |||
77 | // | ||
78 | // setup socket for daemon communication, register socket notifier | ||
61 | // | 79 | // |
62 | 80 | ||
63 | daemon_fd = wl_setupsock( GUIADDR, GUIPORT ); | 81 | daemon_fd = wl_setupsock( GUIADDR, GUIPORT ); |
64 | if ( daemon_fd == -1 ) | 82 | if ( daemon_fd == -1 ) |
65 | { | 83 | { |
66 | logwindow->log( "(E) Couldn't get file descriptor for commsocket." ); | 84 | logwindow->log( "(E) Couldn't get file descriptor for commsocket." ); |
67 | qDebug( "D'oh! Could not get file descriptor for daemon-->gui communication socket." ); | ||
68 | } | 85 | } |
69 | else | 86 | else |
70 | startTimer( 700 ); | 87 | { |
88 | int flags; | ||
89 | flags = fcntl( daemon_fd, F_GETFL, 0 ); | ||
90 | fcntl( daemon_fd, F_SETFL, flags | O_NONBLOCK ); | ||
91 | QSocketNotifier *sn = new QSocketNotifier( daemon_fd, QSocketNotifier::Read, parent ); | ||
92 | connect( sn, SIGNAL( activated( int ) ), this, SLOT( dataReceived() ) ); | ||
93 | } | ||
71 | 94 | ||
95 | // setup GUI | ||
96 | |||
97 | connect( button, SIGNAL( clicked() ), this, SLOT( buttonClicked() ) ); | ||
98 | button->setEnabled( false ); | ||
99 | netview->setColumnWidthMode( 1, QListView::Manual ); | ||
100 | |||
72 | } | 101 | } |
73 | 102 | ||
74 | Wellenreiter::~Wellenreiter() | 103 | Wellenreiter::~Wellenreiter() |
75 | { | 104 | { |
76 | // no need to delete child widgets, Qt does it all for us | 105 | // no need to delete child widgets, Qt does it all for us |
77 | } | 106 | } |
78 | 107 | ||
79 | void Wellenreiter::handleMessage() | 108 | void Wellenreiter::handleMessage() |
80 | { | 109 | { |
81 | // FIXME: receive message and handle it | 110 | // FIXME: receive message and handle it |
82 | 111 | ||
83 | qDebug( "received message from daemon." ); | 112 | qDebug( "received message from daemon." ); |
84 | 113 | ||
85 | char buffer[128]; | 114 | char buffer[10000]; |
86 | 115 | memset( &buffer, 0, sizeof( buffer ) ); | |
87 | int result = wl_recv( &daemon_fd, (char*) &buffer, sizeof(buffer) ); | ||
88 | qDebug( "received %d from recvcomm", result ); | ||
89 | 116 | ||
117 | // int result = #wl_recv( &daemon_fd, (char*) &buffer, sizeof(buffer) ); | ||
118 | |||
119 | struct sockaddr from; | ||
120 | socklen_t len; | ||
121 | |||
122 | int result = recvfrom( daemon_fd, &buffer, 8192, MSG_WAITALL, &from, &len ); | ||
123 | |||
124 | qDebug( "received %d from recv [%d bytes]", result, len ); | ||
125 | |||
126 | if ( result == -1 ) | ||
127 | { | ||
128 | qDebug( "Warning: %s", strerror( errno ) ); | ||
129 | return; | ||
130 | } | ||
131 | |||
132 | int command = buffer[1] - 48; | ||
133 | |||
90 | /* | 134 | /* |
91 | typedef struct { | 135 | typedef struct { |
92 | int net_type; 1 = Accesspoint ; 2 = Ad-Hoc | 136 | int net_type; 1 = Accesspoint ; 2 = Ad-Hoc |
93 | int ssid_len; Length of SSID | 137 | int ssid_len; Length of SSID |
94 | int channel; Channel | 138 | int channel; Channel |
95 | int wep; 1 = WEP enabled ; 0 = disabled | 139 | int wep; 1 = WEP enabled ; 0 = disabled |
96 | char mac[64]; MAC address of Accesspoint | 140 | char mac[64]; MAC address of Accesspoint |
97 | char bssid[128]; BSSID of Accesspoint | 141 | char bssid[128]; BSSID of Accesspoint |
98 | } wl_network_t; | 142 | } wl_network_t; |
99 | */ | 143 | */ |
100 | 144 | ||
101 | // qDebug( "Sniffer sent: '%s'", (const char*) buffer ); | 145 | qDebug( "Recv result: %d", ( result ) ); |
146 | qDebug( "Sniffer sent: '%s'", (const char*) buffer ); | ||
102 | hexwindow->log( (const char*) &buffer ); | 147 | hexwindow->log( (const char*) &buffer ); |
103 | 148 | ||
104 | if ( result == NETFOUND ) /* new network found */ | 149 | if ( command == NETFOUND ) /* new network found */ |
105 | { | 150 | { |
106 | qDebug( "Sniffer said: new network found." ); | 151 | qDebug( "Sniffer said: new network found." ); |
107 | wl_network_t n; | 152 | wl_network_t n; |
108 | get_network_found( &n, (char*) &buffer ); | 153 | get_network_found( &n, (char*) &buffer ); |
109 | 154 | ||
110 | qDebug( "Sniffer said: net_type is %d.", n.net_type ); | 155 | qDebug( "Sniffer said: net_type is %d.", n.net_type ); |
111 | qDebug( "Sniffer said: MAC is %s", (const char*) &n.mac ); | 156 | qDebug( "Sniffer said: MAC is %s", (const char*) &n.mac ); |
112 | 157 | ||
113 | //n.bssid[n.ssid_len] = "\0"; | 158 | //n.bssid[n.ssid_len] = "\0"; |
114 | 159 | ||
115 | QString type; | 160 | QString type; |
116 | 161 | ||
117 | if ( n.net_type == 1 ) | 162 | if ( n.net_type == 1 ) |
118 | type = "managed"; | 163 | type = "managed"; |
119 | else | 164 | else |
120 | type = "adhoc"; | 165 | type = "adhoc"; |
121 | 166 | ||
122 | addNewItem( type, n.bssid, QString( (const char*) &n.mac ), n.wep, n.channel, 0 ); | 167 | netview->addNewItem( type, n.bssid, QString( (const char*) &n.mac ), n.wep, n.channel, 0 ); |
123 | 168 | ||
124 | } | 169 | } |
125 | 170 | ||
126 | else | 171 | else |
127 | 172 | ||
128 | { | 173 | { |
129 | qDebug( "unknown sniffer command." ); | 174 | qDebug( "unknown sniffer command." ); |
130 | } | 175 | } |
131 | 176 | ||
132 | } | 177 | } |
133 | 178 | ||
134 | 179 | void Wellenreiter::dataReceived() | |
135 | bool Wellenreiter::hasMessage() | ||
136 | { | 180 | { |
137 | 181 | logwindow->log( "(d) Received data from daemon" ); | |
138 | // FIXME: do this in libwellenreiter, not here!!! | 182 | handleMessage(); |
139 | |||
140 | fd_set rfds; | ||
141 | FD_ZERO( &rfds ); | ||
142 | FD_SET( daemon_fd, &rfds ); | ||
143 | struct timeval tv; | ||
144 | tv.tv_sec = 0; | ||
145 | tv.tv_usec = 10; | ||
146 | int result = select( daemon_fd+1, &rfds, NULL, NULL, &tv ); | ||
147 | |||
148 | if ( result == 0 ) | ||
149 | { | ||
150 | return false; | ||
151 | } | ||
152 | else if ( result == -1 ) | ||
153 | { | ||
154 | qDebug( "selected returned: %s", strerror( errno ) ); | ||
155 | return false; | ||
156 | } | ||
157 | else | ||
158 | return true; //FD_ISSET( daemon_fd, &rfds ); gibbet 'eh nur einen Deskriptor | ||
159 | } | 183 | } |
160 | 184 | ||
161 | void Wellenreiter::timerEvent( QTimerEvent* e ) | 185 | void Wellenreiter::buttonClicked() |
162 | { | ||
163 | //qDebug( "checking for message..." ); | ||
164 | if ( hasMessage() ) | ||
165 | { | ||
166 | //qDebug( "got message from daemon" ); | ||
167 | handleMessage(); | ||
168 | } | ||
169 | else | ||
170 | { | ||
171 | //qDebug( "no message..." ); | ||
172 | } | ||
173 | } | ||
174 | |||
175 | void Wellenreiter::addNewItem( QString type, QString essid, QString macaddr, bool wep, int channel, int signal ) | ||
176 | { | 186 | { |
177 | // FIXME: this code belongs in customized QListView, not into this class | 187 | /* |
178 | // FIXME: scanlistitem needs a proper encapsulation and not such a damn dealing with text(...) | 188 | // add some test stations, so that we can see if the GUI part works |
179 | 189 | addNewItem( "managed", "Vanille", "04:00:20:EF:A6:43", true, 6, 80 ); | |
180 | qDebug( "Wellenreiter::addNewItem( %s / %s / %s [%d]", | 190 | addNewItem( "managed", "Vanille", "04:00:20:EF:A6:23", true, 11, 10 ); |
181 | (const char*) type, | 191 | addNewItem( "adhoc", "ELAN", "40:03:43:E7:16:22", false, 3, 10 ); |
182 | (const char*) essid, | 192 | addNewItem( "adhoc", "ELAN", "40:03:53:E7:56:62", false, 3, 15 ); |
183 | (const char*) macaddr, | 193 | addNewItem( "adhoc", "ELAN", "40:03:63:E7:56:E2", false, 3, 20 ); |
184 | channel ); | 194 | */ |
185 | |||
186 | // search, if we already have seen this net | ||
187 | |||
188 | QString s; | ||
189 | MScanListItem* network; | ||
190 | MScanListItem* item = static_cast<MScanListItem*> ( netview->firstChild() ); | ||
191 | |||
192 | while ( item && ( item->text( 0 ) != essid ) ) | ||
193 | { | ||
194 | qDebug( "itemtext: %s", (const char*) item->text( 0 ) ); | ||
195 | item = static_cast<MScanListItem*> ( item->itemBelow() ); | ||
196 | } | ||
197 | if ( item ) | ||
198 | { | ||
199 | // we have already seen this net, check all childs if MAC exists | ||
200 | |||
201 | network = item; | ||
202 | |||
203 | item = static_cast<MScanListItem*> ( item->firstChild() ); | ||
204 | assert( item ); // this shouldn't fail | ||
205 | |||
206 | while ( item && ( item->text( 2 ) != macaddr ) ) | ||
207 | { | ||
208 | qDebug( "subitemtext: %s", (const char*) item->text( 2 ) ); | ||
209 | item = static_cast<MScanListItem*> ( item->itemBelow() ); | ||
210 | } | ||
211 | |||
212 | if ( item ) | ||
213 | { | ||
214 | // we have already seen this item, it's a dupe | ||
215 | qDebug( "%s is a dupe - ignoring...", (const char*) macaddr ); | ||
216 | return; | ||
217 | } | ||
218 | } | ||
219 | else | ||
220 | { | ||
221 | s.sprintf( "(i) new network: '%s'", (const char*) essid ); | ||
222 | logwindow->log( s ); | ||
223 | |||
224 | network = new MScanListItem( netview, "networks", essid, QString::null, 0, 0, 0 ); | ||
225 | } | ||
226 | |||
227 | |||
228 | // insert new station as child from network | ||
229 | |||
230 | // no essid to reduce clutter, maybe later we have a nick or stationname to display!? | ||
231 | |||
232 | qDebug( "inserting new station %s", (const char*) macaddr ); | ||
233 | |||
234 | new MScanListItem( network, type, "", macaddr, wep, channel, signal ); | ||
235 | |||
236 | if ( type == "managed" ) | ||
237 | { | ||
238 | s.sprintf( "(i) new AP in '%s' [%d]", (const char*) essid, channel ); | ||
239 | } | ||
240 | else | ||
241 | { | ||
242 | s.sprintf( "(i) new adhoc station in '%s' [%d]", (const char*) essid, channel ); | ||
243 | } | ||
244 | |||
245 | logwindow->log( s ); | ||
246 | 195 | ||
247 | } | ||
248 | 196 | ||
249 | void Wellenreiter::buttonClicked() | ||
250 | { | ||
251 | if ( daemonRunning ) | 197 | if ( daemonRunning ) |
252 | { | 198 | { |
199 | daemonRunning = false; | ||
200 | |||
253 | logwindow->log( "(i) Daemon has been stopped." ); | 201 | logwindow->log( "(i) Daemon has been stopped." ); |
254 | button->setText( "Start Scanning" ); | 202 | button->setText( "Start Scanning" ); |
255 | 203 | ||
256 | // Stop daemon - ugly for now... later better | 204 | // Stop daemon - ugly for now... later better |
257 | 205 | ||
258 | system( "killall orinoco_hopper" ); | 206 | system( "killall orinoco_hopper" ); |
259 | system( "killall wellenreiterd" ); | 207 | system( "killall wellenreiterd" ); |
260 | 208 | ||
261 | // FIXME: reset the card trying to get into a usable state again | 209 | // FIXME: reset the card trying to get into a usable state again |
262 | 210 | ||
263 | // for now, just message the user | 211 | // for now, just message the user |
264 | 212 | ||
265 | QMessageBox::information( this, "Wellenreiter/Opie", "You should reset your\ndevice before using it again." ); | 213 | QMessageBox::information( this, "Wellenreiter/Opie", "You should reset your\ndevice before using it again." ); |
266 | } | 214 | } |
267 | 215 | ||
268 | else | 216 | else |
269 | { | 217 | { |
270 | 218 | ||
271 | logwindow->log( "(i) Daemon has been started." ); | 219 | logwindow->log( "(i) Daemon has been started." ); |
272 | daemonRunning = true; | 220 | daemonRunning = true; |
273 | button->setText( "Stop Scanning" ); | 221 | button->setText( "Stop Scanning" ); |
274 | 222 | ||
275 | // get configuration from config window | 223 | // get configuration from config window |
276 | 224 | ||
@@ -295,41 +243,26 @@ void Wellenreiter::buttonClicked() | |||
295 | system( cmdline ); | 243 | system( cmdline ); |
296 | 244 | ||
297 | // start channel hopper | 245 | // start channel hopper |
298 | 246 | ||
299 | cmdline = "orinoco_hopper "; | 247 | cmdline = "orinoco_hopper "; |
300 | cmdline += interface; | 248 | cmdline += interface; |
301 | cmdline += " -i "; | 249 | cmdline += " -i "; |
302 | cmdline += interval; | 250 | cmdline += interval; |
303 | cmdline += " &"; | 251 | cmdline += " &"; |
304 | qDebug( "execute: %s", (const char*) cmdline ); | 252 | qDebug( "execute: %s", (const char*) cmdline ); |
305 | system( cmdline ); | 253 | system( cmdline ); |
306 | qDebug( "done" ); | 254 | qDebug( "done" ); |
307 | 255 | ||
308 | // start daemon | 256 | // start daemon |
309 | 257 | ||
310 | cmdline = "wellenreiterd "; | 258 | cmdline = "wellenreiterd "; |
311 | cmdline += interface; | 259 | cmdline += interface; |
312 | cmdline += " 3"; | 260 | cmdline += " 3"; |
313 | cmdline += " &"; | 261 | cmdline += " &"; |
314 | 262 | ||
315 | qDebug( "execute: %s", (const char*) cmdline ); | 263 | qDebug( "execute: %s", (const char*) cmdline ); |
316 | system( cmdline ); | 264 | system( cmdline ); |
317 | qDebug( "done" ); | 265 | qDebug( "done" ); |
318 | 266 | ||
319 | /* | ||
320 | |||
321 | // add some test stations, so that we can see if the GUI part works | ||
322 | |||
323 | addNewItem( "managed", "Vanille", "04:00:20:EF:A6:43", true, 6, 80 ); | ||
324 | addNewItem( "managed", "Vanille", "04:00:20:EF:A6:23", true, 11, 10 ); | ||
325 | addNewItem( "adhoc", "ELAN", "40:03:43:E7:16:22", false, 3, 10 ); | ||
326 | addNewItem( "adhoc", "ELAN", "40:03:53:E7:56:62", false, 3, 15 ); | ||
327 | addNewItem( "adhoc", "ELAN", "40:03:63:E7:56:E2", false, 3, 20 ); | ||
328 | |||
329 | QString command ("98"); | ||
330 | |||
331 | //sendcomm( DAEMONADDR, DAEMONPORT, (const char*) command ); | ||
332 | |||
333 | */ | ||
334 | } | 267 | } |
335 | } | 268 | } |
diff --git a/noncore/net/wellenreiter/gui/wellenreiter.h b/noncore/net/wellenreiter/gui/wellenreiter.h index 052a242..2296892 100644 --- a/noncore/net/wellenreiter/gui/wellenreiter.h +++ b/noncore/net/wellenreiter/gui/wellenreiter.h | |||
@@ -1,50 +1,56 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** Copyright (C) 2002 Michael 'Mickey' Lauer. All rights reserved. | 2 | ** Copyright (C) 2002 Michael 'Mickey' Lauer. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of Opie Environment. | 4 | ** This file is part of Opie Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | **********************************************************************/ | 14 | **********************************************************************/ |
15 | 15 | ||
16 | #ifndef WELLENREITER_H | 16 | #ifndef WELLENREITER_H |
17 | #define WELLENREITER_H | 17 | #define WELLENREITER_H |
18 | 18 | ||
19 | #include "wellenreiterbase.h" | 19 | #include "wellenreiterbase.h" |
20 | 20 | ||
21 | #ifdef QWS | ||
22 | #include <opie/odevice.h> | ||
23 | using namespace Opie; | ||
24 | #endif | ||
25 | |||
21 | class QTimerEvent; | 26 | class QTimerEvent; |
27 | class QPixmap; | ||
22 | 28 | ||
23 | class Wellenreiter : public WellenreiterBase { | 29 | class Wellenreiter : public WellenreiterBase { |
24 | Q_OBJECT | 30 | Q_OBJECT |
25 | 31 | ||
26 | public: | 32 | public: |
27 | 33 | ||
28 | Wellenreiter( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); | 34 | Wellenreiter( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); |
29 | ~Wellenreiter(); | 35 | ~Wellenreiter(); |
30 | 36 | ||
31 | protected: | 37 | protected: |
32 | virtual void timerEvent( QTimerEvent* ); | ||
33 | 38 | ||
34 | bool daemonRunning; | 39 | bool daemonRunning; |
35 | 40 | ||
36 | public slots: | 41 | public slots: |
37 | void buttonClicked(); | 42 | void buttonClicked(); |
38 | void addNewItem( QString type, QString essid, QString ap, bool wep, int channel, int signal ); | 43 | void dataReceived(); |
39 | 44 | ||
40 | private: | 45 | private: |
41 | int daemon_fd; // socket filedescriptor for udp communication socket | 46 | int daemon_fd; // socket filedescriptor for udp communication socket |
42 | 47 | #ifdef QWS | |
43 | bool hasMessage(); | 48 | OSystem _system; // Opie Operating System identifier |
49 | #endif | ||
44 | void handleMessage(); | 50 | void handleMessage(); |
45 | 51 | ||
46 | //void readConfig(); | 52 | //void readConfig(); |
47 | //void writeConfig(); | 53 | //void writeConfig(); |
48 | }; | 54 | }; |
49 | 55 | ||
50 | #endif | 56 | #endif |
diff --git a/noncore/net/wellenreiter/gui/wellenreiterbase.cpp b/noncore/net/wellenreiter/gui/wellenreiterbase.cpp index 5017b08..d6b9891 100644 --- a/noncore/net/wellenreiter/gui/wellenreiterbase.cpp +++ b/noncore/net/wellenreiter/gui/wellenreiterbase.cpp | |||
@@ -9,85 +9,91 @@ | |||
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ***********************************************************************/ | 14 | ***********************************************************************/ |
15 | 15 | ||
16 | #include "wellenreiterbase.h" | 16 | #include "wellenreiterbase.h" |
17 | 17 | ||
18 | #include <qheader.h> | 18 | #include <qheader.h> |
19 | #include <qlabel.h> | 19 | #include <qlabel.h> |
20 | #include <qlistview.h> | 20 | #include <qlistview.h> |
21 | #include <qmultilineedit.h> | 21 | #include <qmultilineedit.h> |
22 | #include <qpushbutton.h> | 22 | #include <qpushbutton.h> |
23 | #include <qlayout.h> | 23 | #include <qlayout.h> |
24 | #include <qvariant.h> | 24 | #include <qvariant.h> |
25 | #include <qtooltip.h> | 25 | #include <qtooltip.h> |
26 | #include <qwhatsthis.h> | 26 | #include <qwhatsthis.h> |
27 | #include <qimage.h> | 27 | #include <qimage.h> |
28 | #include <qpixmap.h> | 28 | #include <qpixmap.h> |
29 | 29 | ||
30 | #include "logwindow.h" | 30 | #include "logwindow.h" |
31 | #include "hexwindow.h" | 31 | #include "hexwindow.h" |
32 | #include "configwindow.h" | 32 | #include "configwindow.h" |
33 | #include "scanlist.h" | ||
33 | 34 | ||
34 | #ifdef QWS | 35 | #ifdef QWS |
35 | #include <qpe/resource.h> | 36 | #include <qpe/resource.h> |
36 | #include <opie/otabwidget.h> | 37 | #include <opie/otabwidget.h> |
37 | #else | 38 | #else |
38 | #include "resource.h" | 39 | #include "resource.h" |
39 | #include <qtabwidget.h> | 40 | #include <qtabwidget.h> |
40 | #endif | 41 | #endif |
41 | 42 | ||
42 | 43 | ||
43 | /* | 44 | /* |
44 | * Constructs a WellenreiterBase which is a child of 'parent', with the | 45 | * Constructs a WellenreiterBase which is a child of 'parent', with the |
45 | * name 'name' and widget flags set to 'f' | 46 | * name 'name' and widget flags set to 'f' |
46 | */ | 47 | */ |
47 | WellenreiterBase::WellenreiterBase( QWidget* parent, const char* name, WFlags fl ) | 48 | WellenreiterBase::WellenreiterBase( QWidget* parent, const char* name, WFlags fl ) |
48 | : QWidget( parent, name, fl ) | 49 | : QWidget( parent, name, fl ) |
49 | { | 50 | { |
51 | ani1 = new QPixmap( Resource::loadPixmap( "wellenreiter/networks_rot0" ) ); | ||
52 | ani2 = new QPixmap( Resource::loadPixmap( "wellenreiter/networks_rot90" ) ); | ||
53 | ani3 = new QPixmap( Resource::loadPixmap( "wellenreiter/networks_rot180" ) ); | ||
54 | ani4 = new QPixmap( Resource::loadPixmap( "wellenreiter/networks_rot270" ) ); | ||
55 | |||
50 | if ( !name ) | 56 | if ( !name ) |
51 | setName( "WellenreiterBase" ); | 57 | setName( "WellenreiterBase" ); |
52 | resize( 191, 294 ); | 58 | resize( 191, 294 ); |
53 | setCaption( tr( "Wellenreiter" ) ); | 59 | setCaption( tr( "Wellenreiter" ) ); |
54 | WellenreiterBaseLayout = new QVBoxLayout( this ); | 60 | WellenreiterBaseLayout = new QVBoxLayout( this ); |
55 | WellenreiterBaseLayout->setSpacing( 2 ); | 61 | WellenreiterBaseLayout->setSpacing( 2 ); |
56 | WellenreiterBaseLayout->setMargin( 0 ); | 62 | WellenreiterBaseLayout->setMargin( 0 ); |
57 | #ifdef QWS | 63 | #ifdef QWS |
58 | TabWidget = new OTabWidget( this, "TabWidget", OTabWidget::Global ); | 64 | TabWidget = new OTabWidget( this, "TabWidget", OTabWidget::Global ); |
59 | #else | 65 | #else |
60 | TabWidget = new QTabWidget( this, "TabWidget" ); | 66 | TabWidget = new QTabWidget( this, "TabWidget" ); |
61 | #endif | 67 | #endif |
62 | ap = new QWidget( TabWidget, "ap" ); | 68 | ap = new QWidget( TabWidget, "ap" ); |
63 | apLayout = new QVBoxLayout( ap ); | 69 | apLayout = new QVBoxLayout( ap ); |
64 | apLayout->setSpacing( 2 ); | 70 | apLayout->setSpacing( 2 ); |
65 | apLayout->setMargin( 2 ); | 71 | apLayout->setMargin( 2 ); |
66 | 72 | ||
67 | //--------- NETVIEW TAB -------------- | 73 | //--------- NETVIEW TAB -------------- |
68 | 74 | ||
69 | netview = new QListView( ap, "netview" ); | 75 | netview = new MScanListView( ap ); |
70 | netview->addColumn( tr( "SSID" ) ); | 76 | netview->addColumn( tr( "SSID" ) ); |
71 | netview->setColumnAlignment( 0, AlignLeft || AlignVCenter ); | 77 | netview->setColumnAlignment( 0, AlignLeft || AlignVCenter ); |
72 | netview->addColumn( tr( "Sig" ) ); | 78 | netview->addColumn( tr( "Sig" ) ); |
73 | netview->setColumnAlignment( 1, AlignCenter ); | 79 | netview->setColumnAlignment( 1, AlignCenter ); |
74 | netview->addColumn( tr( "AP" ) ); | 80 | netview->addColumn( tr( "AP" ) ); |
75 | netview->setColumnAlignment( 2, AlignCenter ); | 81 | netview->setColumnAlignment( 2, AlignCenter ); |
76 | netview->addColumn( tr( "Chn" ) ); | 82 | netview->addColumn( tr( "Chn" ) ); |
77 | netview->setColumnAlignment( 3, AlignCenter ); | 83 | netview->setColumnAlignment( 3, AlignCenter ); |
78 | netview->addColumn( tr( "W" ) ); | 84 | netview->addColumn( tr( "W" ) ); |
79 | netview->setColumnAlignment( 4, AlignCenter ); | 85 | netview->setColumnAlignment( 4, AlignCenter ); |
80 | netview->addColumn( tr( "T" ) ); | 86 | netview->addColumn( tr( "T" ) ); |
81 | netview->setColumnAlignment( 5, AlignCenter ); | 87 | netview->setColumnAlignment( 5, AlignCenter ); |
82 | 88 | ||
83 | netview->setFrameShape( QListView::StyledPanel ); | 89 | netview->setFrameShape( QListView::StyledPanel ); |
84 | netview->setFrameShadow( QListView::Sunken ); | 90 | netview->setFrameShadow( QListView::Sunken ); |
85 | netview->setRootIsDecorated( TRUE ); | 91 | netview->setRootIsDecorated( TRUE ); |
86 | apLayout->addWidget( netview ); | 92 | apLayout->addWidget( netview ); |
87 | 93 | ||
88 | 94 | ||
89 | //--------- LOG TAB -------------- | 95 | //--------- LOG TAB -------------- |
90 | 96 | ||
91 | logwindow = new MLogWindow( TabWidget, "Log" ); | 97 | logwindow = new MLogWindow( TabWidget, "Log" ); |
92 | 98 | ||
93 | 99 | ||
diff --git a/noncore/net/wellenreiter/gui/wellenreiterbase.h b/noncore/net/wellenreiter/gui/wellenreiterbase.h index fce25d1..edb2930 100644 --- a/noncore/net/wellenreiter/gui/wellenreiterbase.h +++ b/noncore/net/wellenreiter/gui/wellenreiterbase.h | |||
@@ -1,68 +1,75 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** Copyright (C) 2002 Michael 'Mickey' Lauer. All rights reserved. | 2 | ** Copyright (C) 2002 Michael 'Mickey' Lauer. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of Opie Environment. | 4 | ** This file is part of Opie Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | **********************************************************************/ | 14 | **********************************************************************/ |
15 | 15 | ||
16 | #ifndef WELLENREITERBASE_H | 16 | #ifndef WELLENREITERBASE_H |
17 | #define WELLENREITERBASE_H | 17 | #define WELLENREITERBASE_H |
18 | 18 | ||
19 | #include <qvariant.h> | 19 | #include <qvariant.h> |
20 | #include <qwidget.h> | 20 | #include <qwidget.h> |
21 | class QVBoxLayout; | 21 | class QVBoxLayout; |
22 | class QHBoxLayout; | 22 | class QHBoxLayout; |
23 | class QGridLayout; | 23 | class QGridLayout; |
24 | class QLabel; | 24 | class QLabel; |
25 | class QListView; | 25 | class MScanListView; |
26 | class QListViewItem; | 26 | class MScanListItem; |
27 | class QPushButton; | 27 | class QPushButton; |
28 | class MLogWindow; | 28 | class MLogWindow; |
29 | class MHexWindow; | 29 | class MHexWindow; |
30 | class WellenreiterConfigWindow; | 30 | class WellenreiterConfigWindow; |
31 | 31 | ||
32 | #ifdef QWS | 32 | #ifdef QWS |
33 | class OTabWidget; | 33 | class OTabWidget; |
34 | #else | 34 | #else |
35 | class QTabWidget; | 35 | class QTabWidget; |
36 | #endif | 36 | #endif |
37 | 37 | ||
38 | class WellenreiterBase : public QWidget | 38 | class WellenreiterBase : public QWidget |
39 | { | 39 | { |
40 | Q_OBJECT | 40 | Q_OBJECT |
41 | 41 | ||
42 | public: | 42 | public: |
43 | WellenreiterBase( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); | 43 | WellenreiterBase( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); |
44 | ~WellenreiterBase(); | 44 | ~WellenreiterBase(); |
45 | 45 | ||
46 | #ifdef QWS | 46 | #ifdef QWS |
47 | OTabWidget* TabWidget; | 47 | OTabWidget* TabWidget; |
48 | #else | 48 | #else |
49 | QTabWidget* TabWidget; | 49 | QTabWidget* TabWidget; |
50 | #endif | 50 | #endif |
51 | QWidget* ap; | 51 | QWidget* ap; |
52 | QListView* netview; | 52 | MScanListView* netview; |
53 | MLogWindow* logwindow; | 53 | MLogWindow* logwindow; |
54 | MHexWindow* hexwindow; | 54 | MHexWindow* hexwindow; |
55 | WellenreiterConfigWindow* configwindow; | 55 | WellenreiterConfigWindow* configwindow; |
56 | QWidget* about; | 56 | QWidget* about; |
57 | QLabel* PixmapLabel1_3_2; | 57 | QLabel* PixmapLabel1_3_2; |
58 | QLabel* TextLabel1_4_2; | 58 | QLabel* TextLabel1_4_2; |
59 | QPushButton* button; | 59 | QPushButton* button; |
60 | 60 | ||
61 | protected: | 61 | protected: |
62 | QVBoxLayout* WellenreiterBaseLayout; | 62 | QVBoxLayout* WellenreiterBaseLayout; |
63 | QVBoxLayout* apLayout; | 63 | QVBoxLayout* apLayout; |
64 | QGridLayout* aboutLayout; | 64 | QGridLayout* aboutLayout; |
65 | bool event( QEvent* ); | 65 | bool event( QEvent* ); |
66 | |||
67 | QPixmap* ani1; | ||
68 | QPixmap* ani2; | ||
69 | QPixmap* ani3; | ||
70 | QPixmap* ani4; | ||
71 | |||
72 | |||
66 | }; | 73 | }; |
67 | 74 | ||
68 | #endif // WELLENREITERBASE_H | 75 | #endif // WELLENREITERBASE_H |
diff --git a/noncore/net/wellenreiter/gui/wlan.cpp b/noncore/net/wellenreiter/gui/wlan.cpp new file mode 100644 index 0000000..b046cc8 --- a/dev/null +++ b/noncore/net/wellenreiter/gui/wlan.cpp | |||
@@ -0,0 +1,57 @@ | |||
1 | /********************************************************************** | ||
2 | ** Copyright (C) 2002 Michael 'Mickey' Lauer. All rights reserved. | ||
3 | ** | ||
4 | ** This file is part of Opie Environment. | ||
5 | ** | ||
6 | ** This file may be distributed and/or modified under the terms of the | ||
7 | ** GNU General Public License version 2 as published by the Free Software | ||
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | ||
9 | ** packaging of this file. | ||
10 | ** | ||
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | ||
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | ||
13 | ** | ||
14 | **********************************************************************/ | ||
15 | |||
16 | #include "wlan.h" | ||
17 | #include "cardconfig.h" | ||
18 | |||
19 | // Qt | ||
20 | #include <qstring.h> | ||
21 | |||
22 | // Qtopia | ||
23 | #ifdef QWS | ||
24 | #include <opie/odevice.h> | ||
25 | using namespace Opie; | ||
26 | #endif | ||
27 | |||
28 | WLAN::WLAN( const QString& interface ) | ||
29 | { | ||
30 | _configuration = new CardConfig( interface ); | ||
31 | } | ||
32 | |||
33 | WLAN::WLAN( const CardConfig* configuration ) | ||
34 | { | ||
35 | _configuration = configuration; | ||
36 | |||
37 | } | ||
38 | |||
39 | WLAN::~WLAN() | ||
40 | { | ||
41 | delete _configuration; | ||
42 | |||
43 | } | ||
44 | |||
45 | void WLAN::setMonitorMode( bool enabled ) | ||
46 | { | ||
47 | |||
48 | /* | ||
49 | |||
50 | if ( _configuration->system() == System_OpenZaurus && _configuration->type() == CardConfig::Prism ) | ||
51 | { | ||
52 | } | ||
53 | |||
54 | */ | ||
55 | |||
56 | } | ||
57 | |||
diff --git a/noncore/net/wellenreiter/gui/wlan.h b/noncore/net/wellenreiter/gui/wlan.h new file mode 100644 index 0000000..139e218 --- a/dev/null +++ b/noncore/net/wellenreiter/gui/wlan.h | |||
@@ -0,0 +1,38 @@ | |||
1 | /********************************************************************** | ||
2 | ** Copyright (C) 2002 Michael 'Mickey' Lauer. All rights reserved. | ||
3 | ** | ||
4 | ** This file is part of Opie Environment. | ||
5 | ** | ||
6 | ** This file may be distributed and/or modified under the terms of the | ||
7 | ** GNU General Public License version 2 as published by the Free Software | ||
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | ||
9 | ** packaging of this file. | ||
10 | ** | ||
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | ||
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | ||
13 | ** | ||
14 | **********************************************************************/ | ||
15 | |||
16 | #ifndef WLAN_H | ||
17 | #define WLAN_H | ||
18 | |||
19 | class QString; | ||
20 | class CardConfig; | ||
21 | |||
22 | class WLAN | ||
23 | { | ||
24 | public: | ||
25 | |||
26 | WLAN( const QString& interface ); | ||
27 | WLAN( const CardConfig* ); | ||
28 | virtual ~WLAN(); | ||
29 | void setMonitorMode( bool enabled ); | ||
30 | |||
31 | private: | ||
32 | |||
33 | const CardConfig* _configuration; | ||
34 | |||
35 | }; | ||
36 | |||
37 | #endif | ||
38 | |||