Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PyQt:How do i set different header sizes for individual headers?

I have a list containing lists with two items,a word and a number.This list will be presented using a tablewidget.

My aim is to produce a table with two columns and with the neccessary rows,but the header of the column which will have the words should be larger than the numbers column.

I could use resize columns to content,but I want the table without the white empty white space around the table,after the resize.

For the creation of the gui code I am using QtDesigner.Thanks.

like image 995
IordanouGiannis Avatar asked Dec 20 '11 01:12

IordanouGiannis


Video Answer


2 Answers

the best solution for this, in Qt5 you have to use setSectionResizeMode instead of setResizeMode:

tabv = QTableView()
tabv.horizontalHeader().setSectionResizeMode(QHeaderView.Stretch)

or

tabv.horizontalHeader().setSectionResizeMode(1)
like image 52
Jhon Escobar Avatar answered Oct 09 '22 19:10

Jhon Escobar


There are a few methods of the QHeaderView class that will probably do what you want. The simplest is:

table.horizontalHeader().setStretchLastSection(True)

This will ensure that the last column is automatically resized to fit the available space in the table, leaving the width of the other columns as they are (and resizable by the user).

Alternatively, there are methods for setting the ResizeMode of the columns.

For Qt5:

table.setColumnWidth(1, 80)
table.horizontalHeader().setSectionResizeMode(0, QHeaderView.Stretch)

For Qt4:

table.setColumnWidth(1, 80)
table.horizontalHeader().setResizeMode(0, QHeaderView.Stretch)

This will fix the width of the second column, and ensure the first column is automatically resized to fill the remaining space (but preventing any other resizing by the user).

like image 30
ekhumoro Avatar answered Oct 09 '22 18:10

ekhumoro