blob: 0d20a234c9afb4f7f742b2e7b21fbb1f9bcf167e (
plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
/** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef WIRELESS_FRAME_H
#define WIRELESS_FRAME_H
#include <glib.h>
#include <QFrame>
namespace Ui {
class WirelessFrame;
}
class WirelessFrame : public QFrame
{
Q_OBJECT
public:
explicit WirelessFrame(QWidget *parent = 0);
~WirelessFrame();
void setCaptureInProgress(bool capture_in_progress);
signals:
void showWirelessPreferences(const QString wlan_module_name);
protected:
void timerEvent(QTimerEvent *event);
public slots:
void handleInterfaceEvent(const char *ifname, int added, int up);
private:
int startTimer(int interval);
void getInterfaceInfo();
void setInterfaceInfo();
int getCenterFrequency(int control_frequency, int bandwidth);
int getBandwidthFromChanType(int chan_type);
void updateInterfaceList();
private slots:
void updateWidgets();
void on_helperToolButton_clicked();
void on_prefsToolButton_clicked();
void on_interfaceComboBox_activated(int);
void on_channelComboBox_activated(int);
void on_channelTypeComboBox_activated(int);
void on_fcsComboBox_activated(int);
private:
Ui::WirelessFrame *ui;
GArray *interfaces_;
bool capture_in_progress_;
int iface_timer_id_;
};
#endif // WIRELESS_FRAME_H
|