I can get the current row and column via the index
Qt Code:
  1. QModelIndex index = tableViewPowerDegree->currentIndex();
  2. tableViewPowerDegree->selectRow(index.row() + 1);
  3. tableViewPowerDegree->selectColumn(1);
To copy to clipboard, switch view to plain text mode 
However I cannot modify the index and setting the row and column one
after the other
as above, because that really selects the comlete row and column, but
not the item at (row, column)
Qt Code:
  1. tableViewPowerDegree->setCurrentIndex(...)
To copy to clipboard, switch view to plain text mode 
seems not to be an option, at least I do not see how to use it.

Matthias