在 Qt 中以图形方式表示树节点的最佳方式
我正在尝试在 Qt 中可视化一棵树。
到目前为止,我的所有节点都由简单的圆圈组成并基于 QGraphicsItem 类。但我需要在每个节点上显示一些文本,如何将 QLabel“附加”到我的节点?
提前致谢。
I'm trying to visualise a tree in Qt.
So far, all my nodes consist of simple circles and based on QGraphicsItem class. But I need to display some text over every node, how can I "attach" a QLabel to my nodes?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在节点上使用
QGraphicsTextItem
。You can use a
QGraphicsTextItem
on your nodes.那么,为什么不使用 QTreeView 来查看你的树呢?您只需必须使用自己的模型对 QAbstractItemModel 进行子类化并使用它。
Well, why don't you use QTreeView to view your tree ? You just have to subclass QAbstractItemModel with your own model and use it.