Embarassing to ask, but how would I access the top left corner header item in a QTableWidget that has both a horizontal and a vertical header? This is the header item they have in common. I can use

Qt Code:
  1. QTableWidget::setHorizontalHeaderLabels ( const QStringList & labels )
To copy to clipboard, switch view to plain text mode 
and
Qt Code:
  1. QTableWidget::setVerticalHeaderLabels ( const QStringList & labels )
To copy to clipboard, switch view to plain text mode 

but they don't seem to provide access to the item at the corner. Nor do

Qt Code:
  1. QTableWidgetItem * QTableWidget::horizontalHeaderItem ( int column ) const
To copy to clipboard, switch view to plain text mode 
and
Qt Code:
  1. QTableWidgetItem * QTableWidget::verticalHeaderItem ( int row) const
To copy to clipboard, switch view to plain text mode 

Perhaps accessing a header itself via

Qt Code:
  1. QHeaderView * QTableView::horizontalHeader () const
To copy to clipboard, switch view to plain text mode 
or
Qt Code:
  1. QHeaderView * QTableView::verticalHeader () const
To copy to clipboard, switch view to plain text mode 

but then what to do with it?

thanks!