Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
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 "wireshark_dialog.h"
14
15namespace Ui {
17}
18
20{
21 Q_OBJECT
22
23public:
24 explicit CaptureCommentDialog(QWidget &parent, CaptureFile &capture_file);
26
27signals:
28 void captureCommentChanged();
29
30private slots:
31 void addComment();
32 void updateWidgets();
33 void on_buttonBox_helpRequested();
34 void on_buttonBox_accepted();
35 void on_buttonBox_rejected();
36
37private:
38 QPushButton *actionAddButton;
39 Ui::CaptureCommentDialog *ui;
40};
41
42#endif // CAPTURE_COMMENT_DIALOG_H
Definition capture_comment_dialog.h:20
Definition capture_file.h:21
Definition wireshark_dialog.h:35
Definition cfile.h:67