$search
00001 /* 00002 * wpa_gui - ScanResults class 00003 * Copyright (c) 2005-2006, Jouni Malinen <j@w1.fi> 00004 * 00005 * This program is free software; you can redistribute it and/or modify 00006 * it under the terms of the GNU General Public License version 2 as 00007 * published by the Free Software Foundation. 00008 * 00009 * Alternatively, this software may be distributed under the terms of BSD 00010 * license. 00011 * 00012 * See README and COPYING for more details. 00013 */ 00014 00015 #ifndef SCANRESULTS_H 00016 #define SCANRESULTS_H 00017 00018 #include <QObject> 00019 #include "ui_scanresults.h" 00020 00021 class WpaGui; 00022 00023 class ScanResults : public QDialog, public Ui::ScanResults 00024 { 00025 Q_OBJECT 00026 00027 public: 00028 ScanResults(QWidget *parent = 0, const char *name = 0, 00029 bool modal = false, Qt::WFlags fl = 0); 00030 ~ScanResults(); 00031 00032 public slots: 00033 virtual void setWpaGui(WpaGui *_wpagui); 00034 virtual void updateResults(); 00035 virtual void scanRequest(); 00036 virtual void getResults(); 00037 virtual void bssSelected(QTreeWidgetItem *sel); 00038 00039 protected slots: 00040 virtual void languageChange(); 00041 00042 private: 00043 WpaGui *wpagui; 00044 }; 00045 00046 #endif /* SCANRESULTS_H */