如何在 doxygen 类图中仅显示类名?
在我的 C# 项目中使用 doxygen 和 graphviz,我可以在文档页面中生成类图。这些图表中包含完整的类名和命名空间,例如,
Acme.MyProduct.MyClasses.MyClass
是否可以配置 doxygen 将其缩减为仅包含类名?
MyClass
完全限定的路径甚至使简单的图表变得相当宽和笨拙。我想尽量减少水平滚动的需要。
Using doxygen and graphviz with my C# project, I can generate class diagrams in the documentation pages. These diagrams have the full class names and namespaces in them, e.g.
Acme.MyProduct.MyClasses.MyClass
Is it possible to configure doxygen to cut this down a bit to just the class name?
MyClass
The fully qualified paths make even simple diagrams rather wide and unwieldy. I'd like to minimize the need for horizontal scrolling.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我怀疑您已经解决了这个问题,因为它已有一年了,但答案可能对其他搜索此问题的人有用(就像我刚刚所做的那样)。您可以使用“HIDE_SCOPE_NAMES”选项。将其设置为 YES(或在 doxywizard GUI 中检查)将隐藏名称空间。从我的 doxygen 文件中:
I suspect that you've already solved this as it is a year old, but an answer might be useful for anyone else searching for this (as I just did). You can use the "HIDE_SCOPE_NAMES" option. Setting it to YES (or checking it in the doxywizard GUI) will hide namespaces. From my doxygen file:
HIDE_SCOPE_NAMES 效果很好,但只隐藏类图中的范围,而不隐藏每个方法的调用者/被调用者图。
要将这些图的宽度减小到可读大小,您可以使用输入过滤器重命名范围。这不会删除命名空间,但会将其缩小到更易读的宽度。
例如,要将命名空间“COMPANY_NAMESPACE”重命名为“sf”,请使用:
The HIDE_SCOPE_NAMES works great but only hides the scope in the class diagram but not the caller/callee graphs for each method.
To reduce the width of those diagrams to a readable size you can rename the scope using the input filter. This will not remove the namespace but will reduce it to a more readable width.
For example to rename the namespace "COMPANY_NAMESPACE" to "sf" use: