Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
expert_info_view.h
Go to the documentation of this file.
1
12#ifndef EXPERT_INFO_VIEW_H
13#define EXPERT_INFO_VIEW_H
14
15#include <config.h>
16#include <QTreeView>
17
21class ExpertInfoTreeView : public QTreeView
22{
23 Q_OBJECT
24public:
29 ExpertInfoTreeView(QWidget *parent = 0);
30
31signals:
37 void goToPacket(int packet_num, int hf_id);
38
39protected slots:
45 void currentChanged(const QModelIndex &current, const QModelIndex &previous);
46};
47#endif // EXPERT_INFO_VIEW_H
A custom tree view for displaying expert information.
Definition expert_info_view.h:22
void goToPacket(int packet_num, int hf_id)
Signal emitted to navigate to a specific packet.
void currentChanged(const QModelIndex &current, const QModelIndex &previous)
Handles the event when the current item selection changes.
Definition expert_info_view.cpp:21