diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp index 069cafaf38d..fff9693c312 100644 --- a/src/htmlgen.cpp +++ b/src/htmlgen.cpp @@ -1551,10 +1551,14 @@ void HtmlGenerator::endMemberDocList() DBG_HTML(t << "" << endl;) } -void HtmlGenerator::startMemberDoc(const char *,const char *,const char *,const char *,bool) -{ +void HtmlGenerator::startMemberDoc( const char *clName, const char *memName, + const char *anchor, const char *title, bool showInline) +{ DBG_HTML(t << "" << endl;) - + t << "\n

" << title << " " + << "" + << "

" + << endl; t << "\n
" << endl; t << "
" << endl; } diff --git a/src/htmlgen.h b/src/htmlgen.h index 924d04fad7a..e068c6e587b 100644 --- a/src/htmlgen.h +++ b/src/htmlgen.h @@ -225,7 +225,7 @@ class HtmlGenerator : public OutputGenerator void endDescForItem() { t << "\n"; } void lineBreak(const char *style); void writeChar(char c); - void startMemberDoc(const char *,const char *,const char *,const char *,bool); + void startMemberDoc(const char *clName, const char *memName, const char *anchor, const char *title, bool showInline); void endMemberDoc(bool); void startDoxyAnchor(const char *fName,const char *manName, const char *anchor,const char *name, diff --git a/src/latexgen.cpp b/src/latexgen.cpp index 53fc9db3ad8..20b4fb160ea 100644 --- a/src/latexgen.cpp +++ b/src/latexgen.cpp @@ -1562,7 +1562,7 @@ void LatexGenerator::startMemberDoc(const char *clname, if (compactLatex) level++; t << "\\" << levelLab[level]; - t << "[{"; + t << "{"; if (pdfHyperlinks) { t << "\\texorpdfstring{"; @@ -1572,9 +1572,9 @@ void LatexGenerator::startMemberDoc(const char *clname, { t << "}{" << latexEscapePDFString(title) << "}"; } - t << "}]"; - t << "{\\setlength{\\rightskip}{0pt plus 5cm}"; - disableLinks=TRUE; + t << "}"; + t << "\n{\\ttfamily "; + //disableLinks=TRUE; } void LatexGenerator::endMemberDoc(bool) @@ -1587,10 +1587,6 @@ void LatexGenerator::endMemberDoc(bool) void LatexGenerator::startDoxyAnchor(const char *fName,const char *, const char *anchor, const char *, const char *) -{ -} - -void LatexGenerator::endDoxyAnchor(const char *fName,const char *anchor) { static bool pdfHyperlinks = Config_getBool(PDF_HYPERLINKS); static bool usePDFLatex = Config_getBool(USE_PDFLATEX); @@ -1604,7 +1600,11 @@ void LatexGenerator::endDoxyAnchor(const char *fName,const char *anchor) t << "\\label{"; if (fName) t << stripPath(fName); if (anchor) t << "_" << anchor; - t << "}" << endl; + t << "} " << endl; +} + +void LatexGenerator::endDoxyAnchor(const char *fName,const char *anchor) +{ } void LatexGenerator::writeAnchor(const char *fName,const char *name) diff --git a/src/latexgen.h b/src/latexgen.h index 84382a7cde3..699afbf84b2 100644 --- a/src/latexgen.h +++ b/src/latexgen.h @@ -293,7 +293,7 @@ class LatexGenerator : public OutputGenerator void endTextBlock(bool) {} void startMemberDocPrefixItem() {} - void endMemberDocPrefixItem() {} + void endMemberDocPrefixItem() { t << "\\\\" << endl; } void startMemberDocName(bool) {} void endMemberDocName() {} void startParameterType(bool,const char *); diff --git a/src/memberdef.cpp b/src/memberdef.cpp index 2c888981d4d..ddd258473f6 100644 --- a/src/memberdef.cpp +++ b/src/memberdef.cpp @@ -2608,7 +2608,7 @@ void MemberDef::writeDocumentation(MemberList *ml,OutputList &ol, } else if (isFunction()) { - title+=argsString(); + title += "()"; } int i=0,l; static QRegExp r("@[0-9]+"); diff --git a/templates/html/doxygen.css b/templates/html/doxygen.css index ddbbbdae3c0..fee208ff720 100644 --- a/templates/html/doxygen.css +++ b/templates/html/doxygen.css @@ -510,6 +510,24 @@ table.memberdecls { /* Styles for detailed member documentation */ +.memtitle { + padding: 8px; + border-top: 1px solid #A8B8D9; + border-left: 1px solid #A8B8D9; + border-right: 1px solid #A8B8D9; + border-top-right-radius: 4px; + border-top-left-radius: 4px; + margin-bottom: -5px; + background-image: url('nav_f.png'); + background-repeat: repeat-x; + background-color: #E2E8F2; + float:left; + /* display: inline-block; */ +} +.permantlink +{ + +} .memtemplate { font-size: 80%; color: ##60; @@ -564,9 +582,11 @@ table.memberdecls { color: ##2b; font-weight: bold; text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); + /* background-image:url('nav_f.png'); background-repeat:repeat-x; - background-color: ##E6; + */ + background-color: #DDE3F0; /* opera specific markup */ box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); border-top-right-radius: 4px; diff --git a/templates/latex/doxygen.sty b/templates/latex/doxygen.sty index 687a1afe224..67860e0da9b 100644 --- a/templates/latex/doxygen.sty +++ b/templates/latex/doxygen.sty @@ -307,7 +307,7 @@ % Used for parameters within a detailed function description \newenvironment{DoxyParamCaption}{% - \renewcommand{\item}[2][]{##1 {\em ##2}}% + \renewcommand{\item}[2][]{\\ \hspace*{2.0cm} ##1 {\em ##2}}% }{% }