Wireshark 4.7.3
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
supported_protocols_dialog.h
Go to the documentation of this file.
1
9
10#ifndef SUPPORTED_PROTOCOLS_DIALOG_H
11#define SUPPORTED_PROTOCOLS_DIALOG_H
12
15
16namespace Ui {
17class SupportedProtocolsDialog;
18}
19
26{
27 Q_OBJECT
28
29public:
34 explicit SupportedProtocolsDialog(QWidget *parent = 0);
35
40
41private:
42 Ui::SupportedProtocolsDialog *ui;
43
44 SupportedProtocolsModel *supported_protocols_model_;
45 SupportedProtocolsProxyModel *proxyModel_;
46 QTimer *searchLineEditTimer;
47 QString searchLineEditText;
48
53 void updateStatistics();
54
55private slots:
60 void fillTree();
61
69 void updateSearchLineEdit();
70
75 void on_searchLineEdit_textChanged(const QString &search_re);
76};
77
78#endif // SUPPORTED_PROTOCOLS_DIALOG_H
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
SupportedProtocolsDialog(QWidget *parent=0)
Constructs the Supported Protocols dialog and begins populating the tree.
Definition supported_protocols_dialog.cpp:20
~SupportedProtocolsDialog()
Destroys the dialog and releases all associated resources.
Definition supported_protocols_dialog.cpp:56
Tree model that exposes all registered Wireshark protocols and their fields, organised as a parent–ch...
Definition supported_protocols_model.h:92
Sort/filter proxy model for SupportedProtocolsModel that performs case-insensitive substring filterin...
Definition supported_protocols_model.h:191