summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/config.xml15
-rw-r--r--src/dotnode.cpp20
2 files changed, 32 insertions, 3 deletions
diff --git a/src/config.xml b/src/config.xml
index 793b7d1..b90e243 100644
--- a/src/config.xml
+++ b/src/config.xml
@@ -3671,6 +3671,21 @@ remove the intermediate dot files that are used to generate the various graphs.
]]>
</docs>
</option>
+ <option type='int' id='DOT_MAX_FOLD' defval='17' minval='0' maxval='1000' depends='HAVE_DOT'>
+ <docs>
+<![CDATA[
+ The \c DOT_MAX_FOLD tag can be used to set the length to fold text of dot graphs.
+]]>
+ </docs>
+ </option>
+ <option type='bool' id='DOT_UML_DETAILS' defval='0' depends='HAVE_DOT'>
+ <docs>
+<![CDATA[
+If the \c DOT_UML_DETAILS tag is set to \c YES, doxygen will
+add details in the uml graphs.
+]]>
+ </docs>
+ </option>
<option type='obsolete' id='USE_WINDOWS_ENCODING'/>
<option type='obsolete' id='DETAILS_AT_TOP'/>
<option type='obsolete' id='QTHELP_FILE'/>
diff --git a/src/dotnode.cpp b/src/dotnode.cpp
index c02827f..89fe9a7 100644
--- a/src/dotnode.cpp
+++ b/src/dotnode.cpp
@@ -148,9 +148,23 @@ static void writeBoxMemberList(FTextStream &t,
else
{
t << prot << " ";
+ if(Config_getBool(DOT_UML_DETAILS))
+ {
+ t << DotNode::convertLabel(mma->typeString());
+ t << " ";
+ }
t << DotNode::convertLabel(mma->name());
- if (!mma->isObjCMethod() &&
- (mma->isFunction() || mma->isSlot() || mma->isSignal())) t << "()";
+ if (!mma->isObjCMethod() && (mma->isFunction() || mma->isSlot() || mma->isSignal()))
+ {
+ if(Config_getBool(DOT_UML_DETAILS))
+ {
+ t << DotNode::convertLabel(mma->argsString());
+ }
+ else
+ {
+ t << "()";
+ }
+ }
t << "\\l";
count++;
}
@@ -185,7 +199,7 @@ QCString DotNode::convertLabel(const QCString &l)
int len=p.length();
int charsLeft=len;
int sinceLast=0;
- int foldLen=17; // ideal text length
+ int foldLen = Config_getInt(DOT_MAX_FOLD); // ideal text length
while (idx < p.length())
{
c = p[idx++];