Wireshark  4.3.0
The Wireshark network protocol analyzer
capture_comment_dialog.h
Go to the documentation of this file.
1 
10 #ifndef CAPTURE_COMMENT_DIALOG_H
11 #define CAPTURE_COMMENT_DIALOG_H
12 
13 #include <glib.h>
14 
15 #include "wireshark_dialog.h"
16 
17 namespace Ui {
19 }
20 
22 {
23  Q_OBJECT
24 
25 public:
26  explicit CaptureCommentDialog(QWidget &parent, CaptureFile &capture_file);
28 
29 signals:
30  void captureCommentChanged();
31 
32 private slots:
33  void addComment();
34  void updateWidgets();
35  void on_buttonBox_helpRequested();
36  void on_buttonBox_accepted();
37  void on_buttonBox_rejected();
38 
39 private:
40  QPushButton *actionAddButton;
41  Ui::CaptureCommentDialog *ui;
42 };
43 
44 #endif // CAPTURE_COMMENT_DIALOG_H
Definition: capture_comment_dialog.h:22
Definition: capture_file.h:23
Definition: wireshark_dialog.h:35
Definition: cfile.h:67