summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMartin Smith <msmith@trolltech.com>2010-04-13 13:36:25 (GMT)
committerMartin Smith <msmith@trolltech.com>2010-04-13 13:36:25 (GMT)
commit68eea9b1006074853a42853f9a34cc4eb1e04b8f (patch)
tree5af0b5af7f4b7740fae0950adf2fdb06b55f0b56 /tools
parentaa7881ad6fbc3f79b273f5a03a3796febe7da976 (diff)
downloadQt-68eea9b1006074853a42853f9a34cc4eb1e04b8f.zip
Qt-68eea9b1006074853a42853f9a34cc4eb1e04b8f.tar.gz
Qt-68eea9b1006074853a42853f9a34cc4eb1e04b8f.tar.bz2
qdoc: Added TOC to module pages.
Diffstat (limited to 'tools')
-rw-r--r--tools/qdoc3/htmlgenerator.cpp34
1 files changed, 19 insertions, 15 deletions
diff --git a/tools/qdoc3/htmlgenerator.cpp b/tools/qdoc3/htmlgenerator.cpp
index e6e2127..508c83a 100644
--- a/tools/qdoc3/htmlgenerator.cpp
+++ b/tools/qdoc3/htmlgenerator.cpp
@@ -2030,31 +2030,37 @@ void HtmlGenerator::generateTableOfContents(const Node *node,
*/
void HtmlGenerator::generateTableOfContents(const Node *node, CodeMarker *marker)
{
- if (!node->doc().hasTableOfContents())
- return;
+ if (!node->doc().hasTableOfContents()) {
+ if (node->subType() != Node::Module)
+ return;
+ }
QList<Atom *> toc = node->doc().tableOfContents();
- if (toc.isEmpty())
- return;
+ if (toc.isEmpty()) {
+ if (node->subType() != Node::Module)
+ return;
+ }
Doc::SectioningUnit sectioningUnit = Doc::Section4;
- QString nodeName = node->name();
-
QStringList sectionNumber;
- int columnSize = 0;
// disable nested links in table of contents
inContents = true;
inLink = true;
out() << "<div class=\"toc\">\n";
-#if 0
- if (moduleNamespaceMap.contains(fake->name())) {
- out() << "<a name=\"" << registerRef("namespaces") << "\"></a>\n";
+ sectionNumber.append("1");
+ out() << "<ul class=\"level" << sectionNumber.size() << "\">\n";
+
+ if (node->subType() == Node::Module) {
+ if (moduleNamespaceMap.contains(node->name())) {
+ out() << "<li><a href=\"#" << registerRef("namespaces") << "\">Namespaces</a></li>\n";
}
- if (moduleClassMap.contains(fake->name())) {
- out() << "<a name=\"" << registerRef("classes") << "\"></a>\n";
+ if (moduleClassMap.contains(node->name())) {
+ out() << "<li><a href=\"#" << registerRef("classes") << "\">Classes</a></li>\n";
}
-#endif
+ out() << "<li><a href=\"#" << registerRef("details") << "\">Detailed Description</a></li>\n";
+ }
+
for (int i = 0; i < toc.size(); ++i) {
Atom *atom = toc.at(i);
@@ -2084,8 +2090,6 @@ void HtmlGenerator::generateTableOfContents(const Node *node, CodeMarker *marker
<< "\">";
generateAtomList(headingText.firstAtom(), node, marker, true, numAtoms);
out() << "</a></li>\n";
-
- ++columnSize;
}
while (!sectionNumber.isEmpty()) {
out() << "</ul>\n";