Is it possible to make only one cell (or item) selectable at a time in a QTableWidget
, rather than the default of allowing multiple?
tableWidget->setSelectionBehavior( QAbstractItemView::SelectItems );
tableWidget->setSelectionMode( QAbstractItemView::SingleSelection );