Is there some way to read which row of Qt's QTableView widget is selected by user? Does it have something to do with QModelIndex class?
+2
A:
Yes, you can use QTableView::selectionModel()
(an inherited function from QAbstractItemView
) which returns you a QItemSelectionModel
. You then can call QItemSelectionModel::selectedIndexes()
, which returns a list of QModelIndex
es.
For reference, see QAbstractItemView::selectionModel()
.
swongu
2009-04-15 22:16:06