27 lines
593 B
C++
27 lines
593 B
C++
// SPDX-FileCopyrightText: 2022 Contributors to Chatterino <https://chatterino.com>
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#pragma once
|
|
|
|
#include <QRegularExpression>
|
|
#include <QStyledItemDelegate>
|
|
|
|
namespace chatterino {
|
|
|
|
class RegExpItemDelegate : public QStyledItemDelegate
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
RegExpItemDelegate(QObject *parent, QRegularExpression regexp);
|
|
|
|
QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option,
|
|
const QModelIndex &index) const override;
|
|
|
|
private:
|
|
const QRegularExpression regexp_;
|
|
};
|
|
|
|
} // namespace chatterino
|