Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
supported_protocols_dialog.h
1 /* supported_protocols_dialog.h
2  *
3  * Wireshark - Network traffic analyzer
4  * By Gerald Combs <gerald@wireshark.org>
5  * Copyright 1998 Gerald Combs
6  *
7  * SPDX-License-Identifier: GPL-2.0-or-later
8  */
9 
10 #ifndef SUPPORTED_PROTOCOLS_DIALOG_H
11 #define SUPPORTED_PROTOCOLS_DIALOG_H
12 
13 #include "geometry_state_dialog.h"
14 #include <ui/qt/models/supported_protocols_model.h>
15 
16 namespace Ui {
18 }
19 
21 {
22  Q_OBJECT
23 
24 public:
25  explicit SupportedProtocolsDialog(QWidget *parent = 0);
27 
28 private:
30 
31  SupportedProtocolsModel* supported_protocols_model_;
32  SupportedProtocolsProxyModel* proxyModel_;
33 
34  void updateStatistics();
35 
36 private slots:
37  void fillTree();
38 
39  void on_searchLineEdit_textChanged(const QString &search_re);
40 };
41 
42 #endif // SUPPORTED_PROTOCOLS_DIALOG_H
43 
44 /*
45  * Editor modelines
46  *
47  * Local Variables:
48  * c-basic-offset: 4
49  * tab-width: 8
50  * indent-tabs-mode: nil
51  * End:
52  *
53  * ex: set shiftwidth=4 tabstop=8 expandtab:
54  * :indentSize=4:tabSize=8:noTabs=true:
55  */
Definition: ui_supported_protocols_dialog.h:105
Definition: geometry_state_dialog.h:15
Definition: ui_about_dialog.h:291
Definition: supported_protocols_model.h:78
Definition: supported_protocols_model.h:42
Definition: supported_protocols_dialog.h:20