Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
endpoint_dialog.h
1 /* endpoint_dialog.h
2  *
3  * Wireshark - Network traffic analyzer
4  * By Gerald Combs <gerald@wireshark.org>
5  * Copyright 1998 Gerald Combs
6  *
7  * SPDX-License-Identifier: GPL-2.0-or-later
8  */
9 
10 #ifndef ENDPOINT_DIALOG_H
11 #define ENDPOINT_DIALOG_H
12 
13 #include "traffic_table_dialog.h"
14 
16 {
17  Q_OBJECT
18 public:
19  explicit EndpointTreeWidget(QWidget *parent, register_ct_t* table);
21 
22  static void tapReset(void *conv_hash_ptr);
23  static void tapDraw(void *conv_hash_ptr);
24 
25 private:
26  void updateItems();
27 
28  address_type table_address_type_;
29 
30 private slots:
31  void filterActionTriggered();
32 };
33 
35 {
36  Q_OBJECT
37 public:
45  explicit EndpointDialog(QWidget &parent, CaptureFile &cf, int cli_proto_id = -1, const char *filter = NULL);
46  ~EndpointDialog();
47 
48 signals:
49 
50 public slots:
51  void captureFileClosing();
52 
53 private:
54 
55  bool addTrafficTable(register_ct_t* table);
56 
57 private slots:
58  void on_buttonBox_helpRequested();
59 };
60 
61 void init_endpoint_table(struct register_ct* ct, const char *filter);
62 
63 #endif // ENDPOINT_DIALOG_H
64 
65 /*
66  * Editor modelines
67  *
68  * Local Variables:
69  * c-basic-offset: 4
70  * tab-width: 8
71  * indent-tabs-mode: nil
72  * End:
73  *
74  * ex: set shiftwidth=4 tabstop=8 expandtab:
75  * :indentSize=4:tabSize=8:noTabs=true:
76  */
Definition: traffic_table_dialog.h:47
Definition: conversation_table.c:24
Definition: endpoint_dialog.h:34
Definition: endpoint_dialog.h:15
Definition: traffic_table_dialog.h:90
Definition: capture_file.h:22