summaryrefslogtreecommitdiffstats
path: root/src/util.h
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2011-04-26 10:48:48 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2011-04-26 10:48:48 (GMT)
commit3c0d4d412c7b6c2afa9e76fcfd5ef5ea8586ad68 (patch)
tree5b1b526ababed94fc83b11349dd828da3bf11882 /src/util.h
parentda2223bed0d63aef0bb6b9e583b90f7319363586 (diff)
downloadDoxygen-3c0d4d412c7b6c2afa9e76fcfd5ef5ea8586ad68.zip
Doxygen-3c0d4d412c7b6c2afa9e76fcfd5ef5ea8586ad68.tar.gz
Doxygen-3c0d4d412c7b6c2afa9e76fcfd5ef5ea8586ad68.tar.bz2
Release-1.7.4-20110426
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/util.h b/src/util.h
index 5853e00..615f70e 100644
--- a/src/util.h
+++ b/src/util.h
@@ -65,7 +65,7 @@ class TextGeneratorIntf
public:
virtual ~TextGeneratorIntf() {}
virtual void writeString(const char *,bool) const = 0;
- virtual void writeBreak() const = 0;
+ virtual void writeBreak(int indent) const = 0;
virtual void writeLink(const char *extRef,const char *file,
const char *anchor,const char *text
) const = 0;
@@ -77,7 +77,7 @@ class TextGeneratorOLImpl : public TextGeneratorIntf
virtual ~TextGeneratorOLImpl() {}
TextGeneratorOLImpl(OutputDocInterface &od);
void writeString(const char *s,bool keepSpaces) const;
- void writeBreak() const;
+ void writeBreak(int indent) const;
void writeLink(const char *extRef,const char *file,
const char *anchor,const char *text
) const;
@@ -113,7 +113,8 @@ void linkifyText(const TextGeneratorIntf &ol,
const char *text,
bool autoBreak=FALSE,
bool external=TRUE,
- bool keepSpaces=FALSE
+ bool keepSpaces=FALSE,
+ int indentLevel=0
);
void setAnchors(ClassDef *cd,char id,MemberList *ml,int groupId=-1);
@@ -307,8 +308,10 @@ QCString escapeCharsInString(const char *name,bool allowDots,bool allowUnderscor
void addGroupListToTitle(OutputList &ol,Definition *d);
void filterLatexString(FTextStream &t,const char *str,
- bool insideTabbing=FALSE,bool insidePre=FALSE,
- bool insideItem=FALSE);
+ bool insideTabbing=FALSE,
+ bool insidePre=FALSE,
+ bool insideItem=FALSE,
+ bool forceBreaks=FALSE);
QCString rtfFormatBmkStr(const char *name);