ColorDelegate.h 404 B

123456789101112131415161718
  1. #ifndef COLORDELEGATE_H
  2. #define COLORDELEGATE_H
  3. #include <QStyledItemDelegate>
  4. #include <QPainter>
  5. class ColorDelegate : public QStyledItemDelegate
  6. {
  7. Q_OBJECT
  8. public:
  9. ColorDelegate(QObject *parent = nullptr) : QStyledItemDelegate(parent) {}
  10. void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override;
  11. };
  12. #endif /* COLORDELEGATE_H */