/* related_packet_delegate.h * * Wireshark - Network traffic analyzer * By Gerald Combs * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef RELATED_PACKET_DELEGATE_H #define RELATED_PACKET_DELEGATE_H #include #include "epan/conversation.h" #include #include class QPainter; struct conversation; class RelatedPacketDelegate : public QStyledItemDelegate { Q_OBJECT public: RelatedPacketDelegate(QWidget *parent = 0); void clear(); void setCurrentFrame(guint32 current_frame); void setConversation(struct conversation *conv); public slots: void addRelatedFrame(int frame_num, ft_framenum_type_t framenum_type = FT_FRAMENUM_NONE); protected: void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const; QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const; private: QHash related_frames_; struct conversation *conv_; guint32 current_frame_; void drawArrow(QPainter *painter, const QPoint tail, const QPoint head, int head_size) const; void drawChevrons(QPainter *painter, const QPoint tail, const QPoint head, int head_size) const; void drawCheckMark(QPainter *painter, const QRect bbox) const; signals: }; #endif // RELATED_PACKET_DELEGATE_H /* * Editor modelines * * Local Variables: * c-basic-offset: 4 * tab-width: 8 * indent-tabs-mode: nil * End: * * ex: set shiftwidth=4 tabstop=8 expandtab: * :indentSize=4:tabSize=8:noTabs=true: */