Search code examples
qtpaintqheaderview

How to draw text in derived from QHeaderView class


I need to draw text in derived from QHeaderView class. But this code does not work.

void HeaderView::paintSection(QPainter *painter, const QRect &, int) const
{
    painter->drawText(0, 0, "abcde");
}

Solution

  • The documentation says:

    Paints the section specified by the given logicalIndex, using the given painter and rect.

    That means, you have to use the rect getting as parameter:

    void HeaderView::paintSection(QPainter *painter, const QRect& rect, int) const
    {
        painter->drawText(rect, Qt::AlignCenter, "abcde");
    }