Hello,

wondering if its possible ( basically i think so) to define a fix column width in my QTablewidget.

Example code:
Qt Code:
  1. // Table which displays informations about this computer
  2. tableWidget = new QTableWidget(this);
  3. tableWidget->setRowCount(5);
  4. tableWidget->setColumnCount(1);
  5. tableWidget->setShowGrid(true); // show Grid
  6. tableWidget->setWindowModality(Qt::ApplicationModal); //tableWidget->setSizePolicy(Expanding, Expanding, 0,0);
  7. tableWidget->setSortingEnabled(false);
  8. tableWidget->setCornerButtonEnabled(true);
To copy to clipboard, switch view to plain text mode 

I would like to be able to define the width of both columns i am using right now.
Would be great if you could help me locating the correct keyword for the Qt docs.
My search for size, width etc was not successfull unfortunaly

Best regards
ape