如何在QItemDelegate sizeHint()中获取QTreeView单元格宽度?

时间:2012-01-19 20:41:09

标签: python qt pyqt paint qitemdelegate

我在QTreeView中有一个自定义QItemDelegate绘图文本。在paint()中,我从样式中获取单元格的大小。然后我使用wordwrap使用当前单元格的宽度绘制文本。

在sizeHint()中,我真的只想计算高度。宽度应该是当前单元格宽度。当用户更改单元格宽度时,sizeHint将只计算单词包装文本的新高度并返回该高度。

问题是我无法像在paint()中那样获取sizeHint()中的单元格宽度。我正在使用:

style = QApplication.style()
style.subElementRect(QStyle.SE_ItemViewItemText, option).width()

这适用于paint(),但在sizeHint()中返回-1。如何在sizeHint()中获取当前单元格宽度?

1 个答案:

答案 0 :(得分:5)

原始:我使用基类'sizeHint()方法获取单元格大小,然后根据需要修改QSize,如下所示:

QSize MyDelegate::sizeHint ( const QStyleOptionViewItem & option, const QModelIndex & index ) const
{
    QSize sz=QItemDelegate::sizeHint(option, index);
    int h=sz.height();

    < MODIFY h HERE > 

    sz.setHeight(h);
    return sz;
}

似乎工作正常。

编辑:海报表明这对他不起作用......所以这是另一种选择,也许不是最优雅的:向代表添加一个视图成员(我无法想到从委托中获取的方法),并使用模型索引来获取标题的节大小。例如:

class MyDelegate : public QItemDelegate
{
public:
    <the usual, then add>

    void setView(QAbstractItemView* v) { theView=v; }

protected:
    QAbstractItemView* theView;
};

并在实施中

QSize MyDelegate::sizeHint ( const QStyleOptionViewItem & option, const QModelIndex & index ) const
{
    int theWidth=-1;

    // handle other types of view here if needed
    QTreeView* tree=qobject_cast<QTreeView*>(theView);
    if(tree)
    {
        qDebug("WIDTH @ %d : %d",index.column(),tree->header()->sectionSize(index.column()));
        theWidth=tree->header()->sectionSize(index.column());
    }

    QSize sz=QItemDelegate::sizeHint(option, index);
    if(theWidth>=0)
        sz.setWidth(theWidth);

    // compute height here and call sz.setHeight()

    return sz;
}

只剩下要做的事情就是在代码中创建委托后,调用setView():

MyDelegate* theDelegate=new MyDelegate(...);
theDelegate->setView(theView);