1

我有一个QTreeView并使用ProxyStyle它。

在此处输入图像描述

上面的图片只是标题。现在我需要在标题标签旁边绘制向上/向下箭头(用于排序项目),如图所示。为了将箭头放在正确的位置,我需要知道:

  • 左边距 = 文本和左边框之间的距离
  • 文字宽度
  • 右边距 = 文本和箭头之间的距离

在这种情况下如何计算文本宽度?我想过 QFontMetrics 但不知道如何接收要计算的文本。

在我的风格中,我只使用drawPrimitive函数

void MyStyle::drawPrimitive( PrimitiveElement p_pe, const QStyleOption *p_option, QPainter *p_painter, const QWidget *p_widget ) const
{
  int leftmargin = 10;
  int rightmargin = 10;
  if ( p_pe == PE_IndicatorHeaderArrow )
  {
     if ( const QStyleOptionHeader *header = qstyleoption_cast<const QStyleOptionHeader *>( p_option ) )
     {
        QPixmap pix;
        if ( header->sortIndicator & QStyleOptionHeader::SortUp )
        {
           pix = QPixmap( ":/sortUp.png" );
        }
        else if ( header->sortIndicator & QStyleOptionHeader::SortDown )
        {
           pix = QPixmap( ":/sortDown.png" );
        }
        p_painter->drawPixmap( header->rect.left() + leftmargin+ subElementRect( SE_HeaderLabel, p_option, p_widget ).width() + rightmargin, header->rect.top() + pix.height(), pix );
     }
  }
  else
  {
     QProxyStyle::drawPrimitive( p_pe, p_option, p_painter, p_widget );
  }
}

subElementRect( SE_HeaderLabel, p_option, p_widget ).width()在这种情况下使用,但这是错误的。如何计算文本的宽度?

4

1 回答 1

2

它都包含在QStyleOptionHeader. 可以通过调用获得文本宽度:

int textWidth = header->fontMetrics.boundingRect(header->text).width();
于 2018-10-17T15:23:10.930 回答