我想在里面画一条线QTableWidgetItem
。为了划清界限,我重新实现了该QStyledItemDelegate::paint
方法。
但是,当我滚动或选择QTableWidget
. 一些项目失去了他们的绘画效果。
这是我的绘画实现:
void DrawLineDelegate::paint(QPainter *poPainter, const QStyleOptionViewItem &oOption, const QModelIndex &oIndex) const
{
// Valid index ?
if(!oIndex.isValid())
// Not valid.
return;
const QRect oRect( oOption.rect );
// Painter has certain settings
poPainter->save();
// Draw line
QColor oLineColor (oIndex.data(Qt::UserRole).toString());
poPainter->setRenderHint(QPainter::Antialiasing);
poPainter->setPen(QPen(oLineColor, 2, Qt::SolidLine, Qt::RoundCap));
poPainter->drawLine(oRect.left(), // Start X-coordinate
oRect.top() - oRect.height() / 2 , // Center Height (Y-coordinate)
oRect.left() + oRect.width(), // Line width
oRect.top() - oRect.height() / 2); // Center Height (Y-coordinate)
poPainter->restore();
QStyledItemDelegate::paint( poPainter, oOption, oIndex );
}
在 TableWidget 初始化函数中,我像这样设置委托项目
ui->tableWidget->setItemDelegateForColumn(2, new DrawLineDelegate(this) );
注意:我将每个项目的颜色名称存储为Qt::UserData
.
在 table init 上,线条画得很好,错误是当我在玩桌子时。
这是一些截图
有什么建议么 ?