Skip to content

Commit

Permalink
Modified (readability) layout for member title in HTML and LaTex
Browse files Browse the repository at this point in the history
  • Loading branch information
PkLab committed Jun 22, 2016
1 parent 8bbf7e2 commit a2ae382
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 17 deletions.
10 changes: 7 additions & 3 deletions src/htmlgen.cpp
Expand Up @@ -1551,10 +1551,14 @@ void HtmlGenerator::endMemberDocList()
DBG_HTML(t << "<!-- endMemberDocList -->" << 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 << "<!-- startMemberDoc -->" << endl;)

t << "\n<h2 class=\"memtitle\">" << title << " "
<< "<a href=\"#" << anchor << "\" class=\"permantlink\"" "title=\"Permalink to this headline\">&#9854;</a>"
<< "</h2>"
<< endl;
t << "\n<div class=\"memitem\">" << endl;
t << "<div class=\"memproto\">" << endl;
}
Expand Down
2 changes: 1 addition & 1 deletion src/htmlgen.h
Expand Up @@ -225,7 +225,7 @@ class HtmlGenerator : public OutputGenerator
void endDescForItem() { t << "</dd>\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,
Expand Down
18 changes: 9 additions & 9 deletions src/latexgen.cpp
Expand Up @@ -1562,7 +1562,7 @@ void LatexGenerator::startMemberDoc(const char *clname,
if (compactLatex) level++;
t << "\\" << levelLab[level];

t << "[{";
t << "{";
if (pdfHyperlinks)
{
t << "\\texorpdfstring{";
Expand All @@ -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)
Expand All @@ -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);
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/latexgen.h
Expand Up @@ -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 *);
Expand Down
2 changes: 1 addition & 1 deletion src/memberdef.cpp
Expand Up @@ -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]+");
Expand Down
22 changes: 21 additions & 1 deletion templates/html/doxygen.css
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion templates/latex/doxygen.sty
Expand Up @@ -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}}%
}{%
}

Expand Down

0 comments on commit a2ae382

Please sign in to comment.