You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wowlet/src/widgets/ccsprogressdelegate.h

24 lines
570 B

// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 2020-2021, The Monero Project.
#ifndef WOWLET_CSSPROGRESSDELEGATE_H
#define WOWLET_CSSPROGRESSDELEGATE_H
#include <QStyledItemDelegate>
#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 //WOWLET_CSSPROGRESSDELEGATE_H