QT:查看任何项目的类层次结构(基于对象实例或...)
有没有办法以图形方式查看任何 QT 项目的类层次结构? (使用QT-Creator制作的项目。) 我有一个很大的代码包..代码管理非常糟糕。 我需要开始使用它。但首先我需要好好研究一下。
一些工具:类似 VC++ (.NET) 中的类查看器!?
我想要 QT 项目类层次结构,如下所示: http://doc.trolltech.com/extras/qt43-class-chart。 pdf 或者像这样:http://doc.trolltech.com/4.5/hierarchy.html
关键字可以是:class Hierarchy Explorer
Is there any way to view class hierarchy of any QT project graphically? (Project made by using QT-Creator.)
I have a big code bundle .. very badly managed code.
I need to start working with it. but first I need to study it nicely.
Some tool : Class viewer like one in VC++ (.NET)!?
I want the QT project class hierarchy, look like this one:
http://doc.trolltech.com/extras/qt43-class-chart.pdf
Or like this one: http://doc.trolltech.com/4.5/hierarchy.html
Keyword can be: class hierarchy explorer
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Doxygen 可以创建图形和文本类层次结构。 这是我曾经为一个大学项目制作的一个。
要生成图形层次结构:
dot
程序(来自 Graphiz 包)已安装。Doxyfile
中将GRAPHICAL_HIERARCHY
和HAVE_DOT
设置为YES
。Doxygen can create both graphical and textual class hierarchies. This is one I once made for a university project.
To generate the graphical hierarchy:
dot
program (from the Graphiz package) installed.GRAPHICAL_HIERARCHY
andHAVE_DOT
toYES
in yourDoxyfile
.