aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/models/url_link_delegate.h
blob: c3539284dd80bc544aece4b628fd61bbdabe3a38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/** @file
 *
 * Delegates for displaying links as links, including elide model
 *
 * Wireshark - Network traffic analyzer
 * By Gerald Combs <gerald@wireshark.org>
 * Copyright 1998 Gerald Combs
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 */

#ifndef URL_LINK_DELEGATE_H
#define URL_LINK_DELEGATE_H

#include <QStyledItemDelegate>
#include <QStyleOptionViewItem>
#include <QModelIndex>
#include <QRegularExpression>

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