如何在 Qt/Pyqt 中制作树形结构文本编辑器?
您能建议使用什么来制作树形结构文本编辑器吗?
我为此使用了 QTreeView (问了几个问题来解决我的问题),但它似乎不适合此目的。
预先感谢,
塞尔日
can you advice what to use for making tree structured text editor?
I used QTreeView for this (asked few questions to solve my problems), but it seams it's not suitable for this purpose.
Thanks in advance,
Serge
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“树形结构文本编辑器”到底是什么意思?
QTreeView
本身并不适合编辑器,但它可以用来选择要编辑/显示的文件。因此,您可以有两个主要小部件:左侧是带有文件/目录的树,右侧是文本编辑器小部件,例如 QTextEdit 用于编辑本身。What exactly do you mean by "tree structured text editor"?
QTreeView
itself is hardly suitable for an editor, but it can be used to select which files to edit/show. So you can have two main widgets: on the left a tree with files/directories, and on the right a text editor widget such as QTextEdit for the editing itself.