交互式QSqlTableModel

发布于 2024-10-31 22:16:36 字数 343 浏览 0 评论 0原文

请您给我一个建议。我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蝶…霜飞 2024-11-07 22:16:36

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

甜味拾荒者 2024-11-07 22:16:36

另一种方法是使用选择模型

使用选择模型

标准
视图类提供默认选择
可以在大多数情况下使用的模型
应用程序。一个选择模型
可以获得属于一个视图的
使用视图的 selectionModel()
功能,并在许多人之间共享
使用 setSelectionModel() 进行视图,因此
构建新的选择模型
一般不需要。

如果您有一个共享选择模型,那么无论哪一个发生变化,视图都会更新。然后你就可以对其做出反应。 选择标志控制是否需要单元格、行或多个选择。

另请参阅使用选择

//selection changes shall trigger a slot
     QItemSelectionModel *selectionModel= treeView->selectionModel();
     connect(selectionModel, SIGNAL(selectionChanged (const QItemSelection &, const QItemSelection &)),
             this, SLOT(selectionChangedSlot(const QItemSelection &, const QItemSelection &)));
 }

Another way is using the selection model

Using a selection model

The standard
view classes provide default selection
models that can be used in most
applications. A selection model
belonging to one view can be obtained
using the view's selectionModel()
function, and shared between many
views with setSelectionModel(), so the
construction of new selection models
is generally not required.

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 :

//selection changes shall trigger a slot
     QItemSelectionModel *selectionModel= treeView->selectionModel();
     connect(selectionModel, SIGNAL(selectionChanged (const QItemSelection &, const QItemSelection &)),
             this, SLOT(selectionChangedSlot(const QItemSelection &, const QItemSelection &)));
 }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文