Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
in_packet_find_delegate.h
Go to the documentation of this file.
1
10#ifndef IN_PACKET_FIND_DELEGATE_H
11#define IN_PACKET_FIND_DELEGATE_H
12
13#include <QStyledItemDelegate>
14
15class InPacketFindBar;
16
17class InPacketFindDelegate : public QStyledItemDelegate
18{
19 Q_OBJECT
20
21public:
22 explicit InPacketFindDelegate(InPacketFindBar *find_bar, QObject *parent = nullptr);
23
24 void paint(QPainter *painter, const QStyleOptionViewItem &option,
25 const QModelIndex &index) const override;
26
27private:
28 InPacketFindBar *find_bar_;
29};
30
31#endif // IN_PACKET_FIND_DELEGATE_H
Find bar widget for searching within a specific packet's protocol tree.
Definition in_packet_find_bar.h:28
Definition in_packet_find_delegate.h:18