summaryrefslogtreecommitdiffstats
path: root/src/mangen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2011-03-28 14:10:48 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2011-03-28 14:10:48 (GMT)
commit145b564516f82be1bb4cc5a82277e7c9d10ca5ca (patch)
tree586c86db1de8495083071cb415bddb31c7e9cacb /src/mangen.cpp
parent62d4d65ad07413ca2f6d04939e2273dc3e0db957 (diff)
downloadDoxygen-145b564516f82be1bb4cc5a82277e7c9d10ca5ca.zip
Doxygen-145b564516f82be1bb4cc5a82277e7c9d10ca5ca.tar.gz
Doxygen-145b564516f82be1bb4cc5a82277e7c9d10ca5ca.tar.bz2
Release-1.7.4
Diffstat (limited to 'src/mangen.cpp')
-rw-r--r--src/mangen.cpp37
1 files changed, 30 insertions, 7 deletions
diff --git a/src/mangen.cpp b/src/mangen.cpp
index 55069d8..585754f 100644
--- a/src/mangen.cpp
+++ b/src/mangen.cpp
@@ -239,7 +239,7 @@ void ManGenerator::endHtmlLink()
// docify(url);
//}
-void ManGenerator::startGroupHeader()
+void ManGenerator::startGroupHeader(int)
{
if (!firstCol) t << endl;
t << ".SH \"";
@@ -247,7 +247,7 @@ void ManGenerator::startGroupHeader()
firstCol=FALSE;
}
-void ManGenerator::endGroupHeader()
+void ManGenerator::endGroupHeader(int)
{
t << "\"\n.PP " << endl;
firstCol=TRUE;
@@ -387,7 +387,7 @@ void ManGenerator::endCodeFragment()
col=0;
}
-void ManGenerator::startMemberDoc(const char *,const char *,const char *,const char *)
+void ManGenerator::startMemberDoc(const char *,const char *,const char *,const char *,bool)
{
if (!firstCol) t << endl;
t << ".SS \"";
@@ -586,8 +586,8 @@ void ManGenerator::startSection(const char *,const char *,SectionInfo::SectionTy
{
switch(type)
{
- case SectionInfo::Page: startGroupHeader(); break;
- case SectionInfo::Section: startGroupHeader(); break;
+ case SectionInfo::Page: startGroupHeader(FALSE); break;
+ case SectionInfo::Section: startGroupHeader(FALSE); break;
case SectionInfo::Subsection: startMemberHeader(0); break;
case SectionInfo::Subsubsection: startMemberHeader(0); break;
case SectionInfo::Paragraph: startMemberHeader(0); break;
@@ -602,8 +602,8 @@ void ManGenerator::endSection(const char *,SectionInfo::SectionType type)
{
switch(type)
{
- case SectionInfo::Page: endGroupHeader(); break;
- case SectionInfo::Section: endGroupHeader(); break;
+ case SectionInfo::Page: endGroupHeader(0); break;
+ case SectionInfo::Section: endGroupHeader(0); break;
case SectionInfo::Subsection: endMemberHeader(); break;
case SectionInfo::Subsubsection: endMemberHeader(); break;
case SectionInfo::Paragraph: endMemberHeader(); break;
@@ -715,5 +715,28 @@ void ManGenerator::endConstraintList()
{
}
+void ManGenerator::startInlineDescription()
+{
+}
+
+void ManGenerator::endInlineDescription()
+{
+}
+
+void ManGenerator::startInlineHeader()
+{
+ if (!firstCol)
+ {
+ t << endl << ".PP" << endl << ".in -1c" << endl;
+ }
+ t << ".RI \"\\fB";
+}
+
+void ManGenerator::endInlineHeader()
+{
+ t << "\\fP\"" << endl << ".in +1c" << endl;
+ firstCol = FALSE;
+}
+