summaryrefslogtreecommitdiffstats
path: root/src/htmlgen.cpp
diff options
context:
space:
mode:
authorPkLab.net <github@pklab.net>2016-06-22 07:17:56 (GMT)
committerPkLab.net <github@pklab.net>2016-06-22 07:18:15 (GMT)
commita2ae382198092537b6b5c85f9c7e5615046d3c78 (patch)
treeeccbe959615e21d4c86d0a69331d421bd81bd58d /src/htmlgen.cpp
parent8bbf7e266783c438d7ef3e424161857433916ec1 (diff)
downloadDoxygen-a2ae382198092537b6b5c85f9c7e5615046d3c78.zip
Doxygen-a2ae382198092537b6b5c85f9c7e5615046d3c78.tar.gz
Doxygen-a2ae382198092537b6b5c85f9c7e5615046d3c78.tar.bz2
Modified (readability) layout for member title in HTML and LaTex
Diffstat (limited to 'src/htmlgen.cpp')
-rw-r--r--src/htmlgen.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp
index 069cafa..fff9693 100644
--- a/src/htmlgen.cpp
+++ b/src/htmlgen.cpp
@@ -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;
}