交互式QSqlTableModel
请您给我一个建议。我使用 QSqlTableModel 类来访问数据库表,并使用 QTableView 来查看它。我应该处理什么实例的信号来了解用户在 QTableView 中移动光标?
我想在光标移动到 QTableView A 后更新 TableView B 的内容(表 B 在数据库中具有到表 A 的外键)
可能有点来自于此 http://doc.trolltech.com/latest/qabstractitemmodel.html?
谢谢。
Please could you give me an advice. I am using QSqlTableModel class to access the database table and QTableView to view it. What signal of what instance should I handle to know about user move the cursor in QTableView?
I want to update the content of TableView B after the cursor moved in QTableView A (Table B have foreign keys to table A in database)
May be somewhat from this http://doc.trolltech.com/latest/qabstractitemmodel.html?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Ivan,如果您正在谈论表格光标,您可以重新实现 QAbstractItemView::moveCursor 方法是虚拟的。
如果您正在谈论鼠标光标,则可以使用 QAbstractItemView::viewportEvent 检测鼠标移动事件的方法。您需要将 QWidget::setMouseTracking(true) 设置为 QTableView 的视口。
希望有帮助
Ivan, if you are talking about table cursor, you can reimplement QAbstractItemView::moveCursor method which is virtual.
If you're talking about mouse cursor, you can use QAbstractItemView::viewportEvent method to detect mouse move event. You need to set QWidget::setMouseTracking(true) to the viewport of your QTableView.
Hope that helps
另一种方法是使用选择模型
如果您有一个共享选择模型,那么无论哪一个发生变化,视图都会更新。然后你就可以对其做出反应。 选择标志控制是否需要单元格、行或多个选择。
另请参阅使用选择:
Another way is using the selection model
If you have an shared selection model the views will be updated not matter which one changes. You can then react to it. The selection flags control if you want a cell, row or multiple selections.
See also working with selections :