summaryrefslogtreecommitdiff
path: root/noncore/net/wellenreiter/gui/scanlist.cpp
Unidiff
Diffstat (limited to 'noncore/net/wellenreiter/gui/scanlist.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/wellenreiter/gui/scanlist.cpp85
1 files changed, 69 insertions, 16 deletions
diff --git a/noncore/net/wellenreiter/gui/scanlist.cpp b/noncore/net/wellenreiter/gui/scanlist.cpp
index 34c69f5..1525934 100644
--- a/noncore/net/wellenreiter/gui/scanlist.cpp
+++ b/noncore/net/wellenreiter/gui/scanlist.cpp
@@ -28,2 +28,20 @@ using namespace Opie;
28 28
29
30#ifdef QWS
31#include <qpe/resource.h>
32#else
33#include "resource.h"
34#endif
35
36const int col_type = 0;
37const int col_essid = 0;
38const int col_sig = 1;
39const int col_ap = 2;
40const int col_channel = 3;
41const int col_wep = 4;
42const int col_traffic = 5;
43const int col_manuf = 6;
44const int col_firstseen = 7;
45const int col_lastseen = 8;
46
29MScanListView::MScanListView( QWidget* parent, const char* name ) 47MScanListView::MScanListView( QWidget* parent, const char* name )
@@ -107,3 +125,3 @@ void MScanListView::addNewItem( QString type, QString essid, QString macaddr, bo
107 // animate the item 125 // animate the item
108 126
109 /* 127 /*
@@ -175,18 +193,53 @@ void MScanListView::addNewItem( QString type, QString essid, QString macaddr, bo
175 193
176#ifdef QWS 194void MScanListView::traffic( QString type, QString from, QString to, QString via, QString additional )
177#include <qpe/resource.h> 195{
178#else 196 if ( type != "toDS" ) return;
179#include "resource.h"
180#endif
181 197
182const int col_type = 0; 198 qDebug( "MScanList::traffic( [%s] | %s -> %s (via %s)",
183const int col_essid = 0; 199 (const char*) type, (const char*) from,
184const int col_sig = 1; 200 (const char*) to, (const char*) via );
185const int col_ap = 2; 201
186const int col_channel = 3; 202 QString s;
187const int col_wep = 4; 203 MScanListItem* network;
188const int col_traffic = 5; 204
189const int col_manuf = 6; 205 QListViewItemIterator it( this );
190const int col_firstseen = 7; 206 while ( it.current() && it.current()->text( col_ap ) != via ) ++it;
191const int col_lastseen = 8; 207
208 MScanListItem* item = static_cast<MScanListItem*>( it.current() );
209
210 if ( item ) // AP has been shown up, so just add our new "from" - station
211 {
212 network = static_cast<MScanListItem*>( item->parent() );
213 MScanListItem* subitem = static_cast<MScanListItem*>( network->firstChild() );
214
215 while ( subitem && ( subitem->text( col_ap ) != from ) )
216 {
217 qDebug( "subitemtext: %s", (const char*) subitem->text( col_ap ) );
218 subitem = static_cast<MScanListItem*> ( subitem->itemBelow() );
219 }
220
221 if ( subitem )
222 {
223 // we have already seen this item, it's a dupe
224 #ifdef DEBUG
225 qDebug( "%s is a dupe - ignoring...", (const char*) from );
226 #endif
227 subitem->receivedBeacon(); //FIXME: sent data bit
228 return;
229 }
230
231 // Hey, it seems to be a new item :-D
232 MScanListItem* station = new MScanListItem( item->parent(), "adhoc", /* network->text( col_essid ) */ "", from, false, -1, -1 );
233 if ( _manufacturerdb )
234 station->setManufacturer( _manufacturerdb->lookup( from ) );
235 }
236 else
237 {
238 qDebug( "D'Oh! Station without AP... ignoring for now... will handle this in alpha-4 version :-D" );
239 }
240}
241
242//============================================================
243// MScanListItem
244//============================================================
192 245