Wireshark  4.3.0
The Wireshark network protocol analyzer
conversation_dialog.h
Go to the documentation of this file.
1 
10 #ifndef CONVERSATION_DIALOG_H
11 #define CONVERSATION_DIALOG_H
12 
13 #include "traffic_table_dialog.h"
14 
16 {
17  Q_OBJECT
18 
19 public:
25  explicit ConversationDialog(QWidget &parent, CaptureFile &cf);
26 
27 protected:
28  void captureFileClosing();
29 
30 signals:
31  void openFollowStreamDialog(int proto_id, unsigned stream_num, unsigned sub_stream_num);
32 
33 private:
34  QPushButton *follow_bt_;
35  QPushButton *graph_bt_;
36 
37  bool tcp_graph_requested_;
38 
39 private slots:
40  void followStream();
41  void graphTcp();
42  void on_buttonBox_helpRequested();
43  void displayFilterSuccess(bool success);
44  void tabChanged(int idx);
45 };
46 
47 void init_conversation_table(struct register_ct* ct, const char *filter);
48 
49 #endif // CONVERSATION_DIALOG_H
Definition: capture_file.h:21
Definition: conversation_dialog.h:16
ConversationDialog(QWidget &parent, CaptureFile &cf)
Definition: conversation_dialog.cpp:68
void captureFileClosing()
Called when the capture file is about to close. This can be used to disconnect taps and similar actio...
Definition: conversation_dialog.cpp:99
Definition: traffic_table_dialog.h:41
Definition: conversation_table.c:24