Wireshark 4.7.3
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
in_packet_find_delegate.h
Go to the documentation of this file.
1
9
10#ifndef IN_PACKET_FIND_DELEGATE_H
11#define IN_PACKET_FIND_DELEGATE_H
12
13#include <QStyledItemDelegate>
14
15class InPacketSearch;
16
17class InPacketFindDelegate : public QStyledItemDelegate
18{
19 Q_OBJECT
20
21public:
22 explicit InPacketFindDelegate(InPacketSearch *search, QObject *parent = nullptr);
23
24 void paint(QPainter *painter, const QStyleOptionViewItem &option,
25 const QModelIndex &index) const override;
26
27private:
28 InPacketSearch *search_;
29};
30
31#endif // IN_PACKET_FIND_DELEGATE_H
Search-within-current-packet logic shared by Find Packet (main window) and InPacketFindBar (single-pa...
Definition in_packet_search.h:24