ColorDelegate.h 464 B

1234567891011121314151617181920212223
  1. #ifndef COLORDELEGATE_H
  2. #define COLORDELEGATE_H
  3. #include <QStyledItemDelegate>
  4. #include <QPainter>
  5. /**
  6. * @brief 下拉框中显示颜色的代理类
  7. *
  8. */
  9. class ColorDelegate : public QStyledItemDelegate
  10. {
  11. Q_OBJECT
  12. public:
  13. ColorDelegate(QObject *parent = nullptr) : QStyledItemDelegate(parent) {}
  14. void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override;
  15. };
  16. #endif /* COLORDELEGATE_H */