具有可扩展单元格的可编辑 QTreeView
我尝试编写一个基于 QTreeView 的可编辑表格,其中单元格中的文字换行内容反过来应该像 MSWord 中表格中的普通单元格一样在高度上扩展(整个文本可见),但遇到了不可克服的障碍:
首先 - 我不能设置固定单元格大小。
第二 - 我无法使文本在自动换行的单元格中显示。为此,我使用了 void QTreeWidget::setItemWidget ( QTreeWidgetItem * item, int column, QWidget * widget ),但它仅适用于只读解决方案。而且我还没有想出任何其他想法。
QTreeView的这种行为可以实现吗?而我的这些问题又该如何解决呢?
预先感谢
谢尔盖
I tried to write an editable table based on QTreeView with wordwraped content in cells which in turn should expand in height (that whole text was visible) like usual cells in tables like in MSWord, but have met insuperable obstacles:
first - i can't set fixed cell size.
second - i can't make text display in cells wordwraped. For this i used void QTreeWidget::setItemWidget ( QTreeWidgetItem * item, int column, QWidget * widget ), but it works only for readonly solutions. And i haven't come up with any other idea.
Can such behavior of QTreeView be realized? And how to solve those problems of mine?
Thanks in advance
Serge
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该继承QTreeView而不是QTreeWidget。
我担心您可能必须专门研究 QAbstractItemView、QAbstractItemDelegate 和 QAbstractItemModel。
You should inherit QTreeView instead of QTreeWidget.
And I fear that you may have to specialize from QAbstractItemView, QAbstractItemDelegate and QAbstractItemModel.