我想在 a 中显示两列,显示QTableWidget
两个刺之间的差异(之前由一些 Levenshtein 距离算法计算)。这些部分存储在每个的数据中QTableWidgetItem
,作为QStringList
. 第一部分必须显示为黑色,下一个为红色,然后再次交替显示黑色、红色等。
为此,我使用最终调用方法QStyledItemDelegate
的自定义函数实现了一个:paint()
drawText()
void DifferencesDelegate::drawText(QPainter *painter,
const QStyleOptionViewItem &option,
const QModelIndex &index) const
{
painter->save();
const QPen defaultPen = painter->pen();
QStyleOptionViewItem opt = option;
initStyleOption(&opt, index);
opt.text.clear();
QStyle *style = opt.widget ? opt.widget->style() : QApplication::style();
style->drawControl(QStyle::CE_ItemViewItem, &opt, painter, opt.widget);
opt.rect.moveRight(opt.rect.right() + 3);
int color = 1;
for (const QString &part : index.data(Qt::UserRole).toStringList()) {
color++;
color = color % 2;
if (color) {
painter->setPen(Qt::red);
} else {
painter->setPen(defaultPen);
}
style->drawItemText(painter, opt.rect, opt.displayAlignment, opt.palette, true, part);
opt.rect.moveRight(opt.rect.right() + painter->fontMetrics().width(part));
}
painter->restore();
}
只要列的宽度足够,这就会导致正确的绘画:
但是一旦列变小,我就会得到一个凌乱的溢出:
这肯定是opt.rect
因为应用于显示的每个部分,而不是应用于整个文本。
唯一的问题是我不知道如何解决这个问题 ;-) 任何帮助将不胜感激!提前致谢!