// SPDX-License-Identifier: BSD-3-Clause // Copyright (c) 2020, The Monero Project. #ifndef FEATHER_CSSPROGRESSDELEGATE_H #define FEATHER_CSSPROGRESSDELEGATE_H #include #include "model/CCSModel.h" class CCSProgressDelegate : public QStyledItemDelegate { Q_OBJECT public: explicit CCSProgressDelegate(CCSModel *model, QWidget *parent = nullptr); void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override; private: CCSModel *m_model; }; #endif //FEATHER_CSSPROGRESSDELEGATE_H