I thought it was QTableWidget.. 
#include <QHeaderView>
treeWidget->header()->resizeSection(0, 20); // column 0, width 20
tableWidget->horizontalHeader()->resizeSection(1, 50); // column 1, width 50
tableWidget->verticalHeader()->resizeSection(2, 15); // row 2, height 15
#include <QHeaderView>
QTreeWidget* treeWidget = ...;
treeWidget->header()->resizeSection(0, 20); // column 0, width 20
QTableWidget* tableWidget = ...;
tableWidget->horizontalHeader()->resizeSection(1, 50); // column 1, width 50
tableWidget->verticalHeader()->resizeSection(2, 15); // row 2, height 15
To copy to clipboard, switch view to plain text mode
Bookmarks