Qt: QTableView如何获取(行)选中、行切换信息

情景:做一个信息表格,需要多个Model切换,必须用QTableView,而不能用QTableWidget,因为后者不可以进行setModel()。

方案:
QTableView和选择有关的的信号有:

void activated(const QModelIndex &index)
void clicked(const QModelIndex &index)
void doubleClicked(const QModelIndex &index)
void entered(const QModelIndex &index)
void pressed(const QModelIndex &index)

没有类似currentRowChanged()信号怎么办?自己响应clicked(const QModelIndex &index)信号吗?虽然可以,但是比较麻烦。
这里的推荐方法是使用QItemSelectionModel(),此类的信号有:

void currentChanged(const QModelIndex ¤t, const QModelIndex &previous)
void currentColumnChanged(const QModelIndex ¤t, const QModelIndex &previous)
void currentRowChanged(const QModelIndex ¤t, const QModelIndex &previous)
void selectionChanged(const QItemSelection &selected, const QItemSelection &deselected)

这些信号中可以获取所有选中状态的变化情况,而且便于使用。

细节:
另外,使用中发现,QTableView必须setModel之后,QTableView::selectionModel()返回值为NULL,说明必须在View中有Model之后,才可以进行信号连接。

你可能感兴趣的:(Qt开发)