Wireshark 4.7.3
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
resolved_addresses_dialog.h
Go to the documentation of this file.
1
9
10#ifndef RESOLVED_ADDRESSES_DIALOG_H
11#define RESOLVED_ADDRESSES_DIALOG_H
12
14
15#include <QMenu>
16
17#include <wiretap/wtap.h>
18
19class CaptureFile;
21
22namespace Ui {
23class ResolvedAddressesDialog;
24}
25
30{
31 Q_OBJECT
32
33public:
40 explicit ResolvedAddressesDialog(QWidget *parent, QString captureFile, wtap* wth);
41
46
47protected slots:
53
58 void on_txtSearchFilter_textChanged(QString text);
59
65
70 void on_txtPortFilter_textChanged(QString text);
71
76 void changeEvent(QEvent* event) override;
77
78private:
80 Ui::ResolvedAddressesDialog *ui;
81
83 QString file_name_;
84
86 QString comment_;
87
89 QPushButton *copy_bt_;
90
92 QPushButton *save_bt_;
93
96
99
102
105
109 void fillBlocks();
110
111private slots:
116 void tabChanged(int index);
117
121 void saveAs();
122};
123
124#endif // RESOLVED_ADDRESSES_DIALOG_H
A sort/filter proxy model for AStringListList-based models.
Definition astringlist_list_model.h:91
Manages a capture file and its associated state and operations.
Definition capture_file.h:27
GeometryStateDialog(QWidget *parent, Qt::WindowFlags f=Qt::Window)
Constructs a new GeometryStateDialog with the specified parent and window flags.
Definition geometry_state_dialog.h:91
~ResolvedAddressesDialog()
Destroys the ResolvedAddressesDialog object.
Definition resolved_addresses_dialog.cpp:115
void on_cmbPortFilterType_currentIndexChanged(int index)
Handles the port filter type combo box index change.
Definition resolved_addresses_dialog.cpp:166
ResolvedAddressesDialog(QWidget *parent, QString captureFile, wtap *wth)
Constructs a new ResolvedAddressesDialog object.
Definition resolved_addresses_dialog.cpp:35
void on_txtSearchFilter_textChanged(QString text)
Handles text changes in the search filter.
Definition resolved_addresses_dialog.cpp:157
void changeEvent(QEvent *event) override
Handles state change events.
Definition resolved_addresses_dialog.cpp:190
void on_txtPortFilter_textChanged(QString text)
Handles text changes in the port filter.
Definition resolved_addresses_dialog.cpp:182
void on_cmbDataType_currentIndexChanged(int index)
Handles the data type combo box index change.
Definition resolved_addresses_dialog.cpp:141
Definition wtap_module.h:58