Wireshark 4.7.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
23{
24 Q_OBJECT
25
26public:
32 explicit CaptureCommentDialog(QWidget &parent, CaptureFile &capture_file);
33
38
39signals:
44
45private slots:
49 void addComment();
50
54 void updateWidgets();
55
59 void on_buttonBox_helpRequested();
60
64 void on_buttonBox_accepted();
65
69 void on_buttonBox_rejected();
70
71private:
73 QPushButton *actionAddButton;
74
76 Ui::CaptureCommentDialog *ui;
77};
78
79#endif // CAPTURE_COMMENT_DIALOG_H
A dialog window for viewing and editing capture file comments.
Definition capture_comment_dialog.h:23
~CaptureCommentDialog()
Destroys the CaptureCommentDialog.
Definition capture_comment_dialog.cpp:138
void captureCommentChanged()
Signal emitted when a capture comment has been modified.
Manages a capture file and its associated state and operations.
Definition capture_file.h:27
Base class for Wireshark specific dialogs that require interaction with a CaptureFile.
Definition wireshark_dialog.h:38
Represents a capture file and its associated metadata.
Definition cfile.h:84