-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmainwindow.h
51 lines (34 loc) · 919 Bytes
/
mainwindow.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QStandardItemModel>
#include "sniffer.h"
#define WIFI_MODE_MONITOR "monitor"
#define WIFI_MODE_MANAGED "managed"
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(const QString& iface = QString(), QWidget *parent = 0);
~MainWindow();
protected:
void closeEvent(QCloseEvent* ev);
private slots:
void onAPAdded(const AccessPoint& ap);
void onAssocStatAdded(const AssocStation& as);
void onChannelChanged(int channel);
void on_saveListAsBtn_clicked();
void on_startToggleBtn_toggled(bool checked);
void on_clearBtn_clicked();
private:
void setupTableHeaders();
Ui::MainWindow *ui;
WifiSniffer* mWS;
QStandardItemModel* mAPModel;
QStandardItemModel* mAssocModel;
QString mIface;
};
#endif // MAINWINDOW_H