Updated through tag hostap_2_5 from git://w1.fi/hostap.git
[mech_eap.git] / libeap / wpa_supplicant / wpa_gui-qt4 / scanresults.h
1 /*
2  * wpa_gui - ScanResults class
3  * Copyright (c) 2005-2006, Jouni Malinen <j@w1.fi>
4  *
5  * This software may be distributed under the terms of the BSD license.
6  * See README for more details.
7  */
8
9 #ifndef SCANRESULTS_H
10 #define SCANRESULTS_H
11
12 #include <QObject>
13 #include "ui_scanresults.h"
14
15 class WpaGui;
16
17 class ScanResults : public QDialog, public Ui::ScanResults
18 {
19         Q_OBJECT
20
21 public:
22         ScanResults(QWidget *parent = 0, const char *name = 0,
23                     bool modal = false, Qt::WindowFlags fl = 0);
24         ~ScanResults();
25
26 public slots:
27         virtual void setWpaGui(WpaGui *_wpagui);
28         virtual void updateResults();
29         virtual void scanRequest();
30         virtual void getResults();
31         virtual void bssSelected(QTreeWidgetItem *sel);
32
33 protected slots:
34         virtual void languageChange();
35
36 private:
37         WpaGui *wpagui;
38 };
39
40 #endif /* SCANRESULTS_H */