Esempio n. 1
0
/** Round-robin table. Represents one round-robin group of players.
 */
RatingsTable::RatingsTable( Group* group, QWidget* parent )
: GroupTable( group, parent ) 
{
  setupCells();
  updateMatchCells();
  updateTotalRatings();

  resizeColumnsToContents();
}
/** Round-robin table. Represents one round-robin group of players.
 */
RatingsTable::RatingsTable( Group* group, QWidget* parent )
: GroupTable( group, parent ) 
{
  setupCells();
  updateMatchCells();
  updateTotalRatings();

  resizeColumnsToContents();

  setSelectionMode( QAbstractItemView::SingleSelection );
  setSelectionBehavior( QAbstractItemView::SelectRows );
}