1234567891011121314151617181920212223 |
- #ifndef COLORDELEGATE_H
- #define COLORDELEGATE_H
- #include <QStyledItemDelegate>
- #include <QPainter>
- /**
- * @brief 下拉框中显示颜色的代理类
- *
- */
- class ColorDelegate : public QStyledItemDelegate
- {
- Q_OBJECT
- public:
- ColorDelegate(QObject *parent = nullptr) : QStyledItemDelegate(parent) {}
- void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override;
-
- };
- #endif /* COLORDELEGATE_H */
|