12#ifndef URL_LINK_DELEGATE_H
13#define URL_LINK_DELEGATE_H
15#include <QStyledItemDelegate>
16#include <QStyleOptionViewItem>
18#include <QRegularExpression>
53 virtual void paint(QPainter *painter,
const QStyleOptionViewItem &option,
const QModelIndex &index)
const override;
60 QRegularExpression *url_re_;
virtual void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override
Custom paint method to render the cell text as a URL if it matches the pattern.
Definition url_link_delegate.cpp:34
UrlLinkDelegate(QObject *parent=Q_NULLPTR)
Constructs a new UrlLinkDelegate object.
Definition url_link_delegate.cpp:17
~UrlLinkDelegate()
Destroys the UrlLinkDelegate object.
Definition url_link_delegate.cpp:23
void setColCheck(int column, QString &pattern)
Configures a column to be checked against a regular expression pattern for URL rendering.
Definition url_link_delegate.cpp:28