PowerModeler/include/textColorPreserveDelegate.h

25 lines
570 B
C
Raw Permalink Normal View History

2025-04-18 18:44:26 +08:00
/**
*\brief item选中时保持前景色()
*
*\author dsc
*/
#ifndef TEXTCOLORPRESERVEDELEGATE_H
#define TEXTCOLORPRESERVEDELEGATE_H
#include <QStyledItemDelegate>
class TextColorPreserveDelegate : public QStyledItemDelegate
{
Q_OBJECT
public:
explicit TextColorPreserveDelegate(QObject* parent = nullptr);
~TextColorPreserveDelegate();
protected:
void paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const override;
};
#endif // TEXTCOLORPRESERVEDELEGATE_H