blob: 5ad058ac7319b777debf75f1ab7dcdc6816811d5 (
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
|
/** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef CONVERSATION_DIALOG_H
#define CONVERSATION_DIALOG_H
#include "traffic_table_dialog.h"
class ConversationDialog : public TrafficTableDialog
{
Q_OBJECT
public:
/** Create a new conversation window.
*
* @param parent Parent widget.
* @param cf Capture file. No statistics will be calculated if this is NULL.
*/
explicit ConversationDialog(QWidget &parent, CaptureFile &cf);
protected:
void captureFileClosing();
signals:
void openFollowStreamDialog(int proto_id, guint stream_num, guint sub_stream_num);
private:
QPushButton *follow_bt_;
QPushButton *graph_bt_;
bool tcp_graph_requested_;
private slots:
void followStream();
void graphTcp();
void on_buttonBox_helpRequested();
void displayFilterSuccess(bool success);
void tabChanged(int idx);
};
void init_conversation_table(struct register_ct* ct, const char *filter);
#endif // CONVERSATION_DIALOG_H
|