Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set width of QTableView columns by model?

I'm using QTableView with a subclass of QAbstractTableModel as its model. By implementing data() and headerdata() in the subclassed model, it is feasible to control many properties of the table like data, header values, font, and so on.

In my case, I want the model to set the width of each table column. How can this be done?

like image 720
sjtaheri Avatar asked Jan 16 '23 09:01

sjtaheri


1 Answers

There are two ways:

  1. In your model's data method you can return the role SizeHintRole.

  2. A better way would be to subclass QItemDelegate and override the method.

See here (qitemdelegate.html#sizeHint)

Example -

QSize ItemDelegate::sizeHint( const QStyleOptionViewItem & option, const QModelIndex & index ) const
{
    QSize sz;

    if(index.column()==2)
    {
        return QSize(128, option.rect().height());
    }

    return QSize();
}

Here I am setting the width of column 2 to 128 pixels and I am filling in the height from the item rectangle held in QStyleOptionViewItem.

like image 102
effjae Avatar answered Jan 28 '23 03:01

effjae