具有可扩展单元格的可编辑 QTreeView

发布于 2024-08-29 09:38:58 字数 355 浏览 3 评论 0原文

我尝试编写一个基于 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 技术交流群。

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

发布评论

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

评论(1

始终不够爱げ你 2024-09-05 09:38:58

您应该继承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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文