Wireshark 4.7.3
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
dissector_tables_view.h
Go to the documentation of this file.
1
11
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) override;
38};
39#endif // DISSECTOR_TABLES_VIEW_H
void currentChanged(const QModelIndex &current, const QModelIndex &previous) override
Slot triggered when the currently selected item in the view changes.
Definition dissector_tables_view.cpp:18
DissectorTablesTreeView(QWidget *parent=0)
Constructs a new DissectorTablesTreeView.
Definition dissector_tables_view.cpp:14