4

我正在制作一个表格控件,除了其模型的 DisplayRole 中的那些之外,它还显示一些额外的文本数据。在所有其他方面,文本和单元格显示应该相同。我遇到的问题是正确显示突出显示的单元格。

我目前正在使用以下代码:

void MatchDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const
{

 if (option.state & QStyle::State_Selected)
      painter->fillRect(option.rect, option.palette.highlight());
 painter->save();
 QString str = qvariant_cast<QString>(index.data())+ "\n";
 str  += QString::number(qvariant_cast<float>(index.data(Qt::UserRole)));
 if (option.state & QStyle::State_Selected)
     painter->setBrush(option.palette.highlightedText());
 else
     painter->setBrush(qvariant_cast<QBrush>(index.data(Qt::ForegroundRole)));

 painter->drawText(option.rect, qvariant_cast<int>(index.data(Qt::TextAlignmentRole)), str);
 painter->restore();

}

但是,结果如下所示:

突出显示的单元格

文本颜色错误,单元格周围没有虚线,当控件失去焦点时,单元格保持蓝色而不是像默认单元格那样变成浅​​灰色。

应该如何更改绘画代码来解决这些问题?

4

1 回答 1

5

请尝试下面的代码,它会工作。

选择时设置drawControl,注意绘制虚线(让Qt在内部处理它)。

选择单元格时修复(虚线、文本颜色和多行)。

在此处输入图像描述

void MatchDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const
{         
QStyleOptionViewItemV4 opt = option;
        initStyleOption(&opt, index);

        const QWidget *widget = option.widget;
        QString str = qvariant_cast<QString>(index.data())+ "\n";
         str  += QString::number(qvariant_cast<float>(index.data(Qt::UserRole)));
           opt.text = "";
        //option
        QStyle *style = widget ? widget->style() : QApplication::style();


        if (option.state & QStyle::State_Selected)
        {
            // Whitee pen while selection
            painter->setPen(Qt::white);
            painter->setBrush(option.palette.highlightedText());
            // This call will take care to draw, dashed line while selecting
            style->drawControl(QStyle::CE_ItemViewItem, &opt, painter, widget);
        }
        else
        {
            painter->setPen(QPen(option.palette.foreground(), 0));
            painter->setBrush(qvariant_cast<QBrush>(index.data(Qt::ForegroundRole)));
        }

        painter->drawText(option.rect, qvariant_cast<int>(index.data(Qt::TextAlignmentRole)), str);
    }
于 2013-09-02T12:36:10.610 回答