blob: 682dc38917d06c0ae8aa56e71eca9974ece2ea4b (
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
|
/** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef ENDPOINT_DIALOG_H
#define ENDPOINT_DIALOG_H
#include <QFile>
#include "traffic_table_dialog.h"
#include <ui/qt/models/atap_data_model.h>
class EndpointDialog : public TrafficTableDialog
{
Q_OBJECT
public:
/** Create a new endpoint window.
*
* @param parent Parent widget.
* @param cf Capture file. No statistics will be calculated if this is NULL.
*/
explicit EndpointDialog(QWidget &parent, CaptureFile &cf);
signals:
protected:
void captureFileClosing();
private:
#ifdef HAVE_MAXMINDDB
QPushButton * map_bt_;
#endif
private slots:
#ifdef HAVE_MAXMINDDB
void openMap();
void saveMap();
#endif
void tabChanged(int idx);
void on_buttonBox_helpRequested();
};
void init_endpoint_table(struct register_ct* ct, const char *filter);
#endif // ENDPOINT_DIALOG_H
|