オリジナル: 基本クラスの 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);