Wireshark 4.7.3
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
capture_comment_dialog.h
Go to the documentation of this file.
1
9
10#ifndef CAPTURE_COMMENT_DIALOG_H
11#define CAPTURE_COMMENT_DIALOG_H
12
13#include "wireshark_dialog.h"
14
15namespace Ui {
16class CaptureCommentDialog;
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() override;
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
struct _capture_file capture_file
Represents a capture file and its associated metadata.
~CaptureCommentDialog()
Destroys the CaptureCommentDialog.
Definition capture_comment_dialog.cpp:138
CaptureCommentDialog(QWidget &parent, CaptureFile &capture_file)
Constructs a new CaptureCommentDialog.
Definition capture_comment_dialog.cpp:121
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
virtual void updateWidgets()
Updates the state and contents of the dialog's widgets.
Definition wireshark_dialog.cpp:92
WiresharkDialog(QWidget &parent, CaptureFile &capture_file)
Constructs a new WiresharkDialog object.
Definition wireshark_dialog.cpp:30