Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
dissector_tables_view.h
Go to the documentation of this file.
1
12#ifndef DISSECTOR_TABLES_VIEW_H
13#define DISSECTOR_TABLES_VIEW_H
14
15#include <config.h>
16#include <QTreeView>
17
21class DissectorTablesTreeView : public QTreeView
22{
23 Q_OBJECT
24public:
29 DissectorTablesTreeView(QWidget *parent = 0);
30
31protected slots:
37 void currentChanged(const QModelIndex &current, const QModelIndex &previous);
38};
39#endif // DISSECTOR_TABLES_VIEW_H
A tree view widget specifically designed for displaying dissector tables.
Definition dissector_tables_view.h:22
void currentChanged(const QModelIndex &current, const QModelIndex &previous)
Slot triggered when the currently selected item in the view changes.
Definition dissector_tables_view.cpp:18