如何将QPushButton插入TableView?
我正在实现 QAbstractTableModel,我想在每行的最后一列插入一个 QPushButton。当用户单击此按钮时,将显示一个新窗口,其中包含有关此行的更多信息。
您知道如何插入按钮吗?我了解委托系统,但所有示例都只是关于“如何使用组合框编辑颜色”......
I am implementing QAbstractTableModel
and I would like to insert a QPushButton
in the last column of each row. When users click on this button, a new window is shown with more information about this row.
Do you have any idea how to insert the button? I know about delegating system but all examples are only about "how to edit color with the combo box"...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用
You can use
模型视图架构并不是为了将小部件插入到不同的单元格中,但您可以在单元格内绘制按钮。
区别在于:
槽说,这是如何做到这一点:
子类 QAbstractItemDelegate (或 QStyledItemDelegate)并实现
paint()
方法。要绘制按钮控件(或任何其他与此相关的控件),您需要使用样式或QStylePainter::drawControl()
方法:由于委托将您保持在模型视图领域内,因此请使用有关选择和编辑的视图信号来弹出信息窗口。
The model-view architecture isn't made to insert widgets into different cells, but you can draw the push button within the cell.
The differences are:
That said, here's how to do it:
Subclass QAbstractItemDelegate (or QStyledItemDelegate) and implement the
paint()
method. To draw the pushbutton control (or any other control for that matter) you'll need to use a style or theQStylePainter::drawControl()
method:Since the delegate keeps you within the model-view realm, use the views signals about selection and edits to popup your information window.
您可以使用
setCellWidget(row,column,QWidget*)
在特定单元格中设置小部件。You can use
setCellWidget(row,column,QWidget*)
to set a widget in a specific cell.