Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
resolved_addresses_dialog.h
Go to the documentation of this file.
1
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 {
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);
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
A dialog that remembers its geometry and splitter state.
Definition geometry_state_dialog.h:20
Dialog for displaying resolved addresses.
Definition resolved_addresses_dialog.h:30
void changeEvent(QEvent *event)
Handles state change events.
Definition resolved_addresses_dialog.cpp:189
~ResolvedAddressesDialog()
Destroys the ResolvedAddressesDialog object.
Definition resolved_addresses_dialog.cpp:114
void on_cmbPortFilterType_currentIndexChanged(int index)
Handles the port filter type combo box index change.
Definition resolved_addresses_dialog.cpp:165
void on_txtSearchFilter_textChanged(QString text)
Handles text changes in the search filter.
Definition resolved_addresses_dialog.cpp:156
void on_txtPortFilter_textChanged(QString text)
Handles text changes in the port filter.
Definition resolved_addresses_dialog.cpp:181
void on_cmbDataType_currentIndexChanged(int index)
Handles the data type combo box index change.
Definition resolved_addresses_dialog.cpp:140
Definition wtap_module.h:58