/** @file * * Delegates for displaying links as links, including elide model * * Wireshark - Network traffic analyzer * By Gerald Combs * Copyright 1998 Gerald Combs * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef URL_LINK_DELEGATE_H #define URL_LINK_DELEGATE_H #include #include #include #include class UrlLinkDelegate : public QStyledItemDelegate { public: explicit UrlLinkDelegate(QObject *parent = Q_NULLPTR); ~UrlLinkDelegate(); // If pattern matches the string in column, render as a URL. // Otherwise render as plain text. void setColCheck(int column, QString &pattern); protected: virtual void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const; private: int re_col_; QRegularExpression *url_re_; }; #endif // URL_LINK_DELEGATE_H