Newer
Older
SurgeTankControl / navdelegate.h
[wangxitong] on 27 Jan 2022 500 bytes first commit
#ifndef NAVDELEGATE_H
#define NAVDELEGATE_H

#include <QStyledItemDelegate>

class NavDelegate : public QStyledItemDelegate
{
	Q_OBJECT

public:
	NavDelegate(QObject *parent);
	~NavDelegate();

public:
	QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const ;
	void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const;

	void SetPending(bool pending) { m_pending = pending; }

private:
	bool m_pending;
};

#endif // NAVDELEGATE_H