diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-11-26 14:55:14 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-11-26 14:55:14 (GMT) |
commit | a30c2e3c5ea41ae1947e9893c82ed8c8b6d7c5a2 (patch) | |
tree | 0bbfa006a4c63e8fe48b3d0022699cffaea24b47 /src/htmlhelp.cpp | |
parent | 2f32e4c28047cdec982a818e8abe5632af2d9511 (diff) | |
download | Doxygen-a30c2e3c5ea41ae1947e9893c82ed8c8b6d7c5a2.zip Doxygen-a30c2e3c5ea41ae1947e9893c82ed8c8b6d7c5a2.tar.gz Doxygen-a30c2e3c5ea41ae1947e9893c82ed8c8b6d7c5a2.tar.bz2 |
Release-1.2.3-20001126
Diffstat (limited to 'src/htmlhelp.cpp')
-rw-r--r-- | src/htmlhelp.cpp | 32 |
1 files changed, 23 insertions, 9 deletions
diff --git a/src/htmlhelp.cpp b/src/htmlhelp.cpp index 064aec2..1802a48 100644 --- a/src/htmlhelp.cpp +++ b/src/htmlhelp.cpp @@ -267,7 +267,7 @@ void HtmlHelp::initialize() cts << "<!DOCTYPE HTML PUBLIC \"-//IETF//DTD HTML//EN\">\n" "<HTML><HEAD></HEAD><BODY>\n" "<OBJECT type=\"text/site properties\">\n" - "<param name=\"ImageType\" value=\"Folder\">\n" + "<param name=\"FrameName\" value=\"right\">\n" "</OBJECT>\n" "<UL>\n"; @@ -284,7 +284,7 @@ void HtmlHelp::initialize() kts << "<!DOCTYPE HTML PUBLIC \"-//IETF//DTD HTML//EN\">\n" "<HTML><HEAD></HEAD><BODY>\n" "<OBJECT type=\"text/site properties\">\n" - "<param name=\"ImageType\" value=\"Folder\">\n" + "<param name=\"FrameName\" value=\"right\">\n" "</OBJECT>\n" "<UL>\n"; } @@ -297,19 +297,21 @@ void HtmlHelp::createProjectFile() if (f.open(IO_WriteOnly)) { QTextStream t(&f); + QCString indexName="index.html"; + if (Config::ftvHelpFlag) indexName="main.html"; t << "[OPTIONS]\n" "Compatibility=1.1\n" "Full-text search=Yes\n" "Contents file=index.hhc\n" "Default Window=main\n" - "Default topic=index.html\n" + "Default topic=" << indexName << "\n" "Index file=index.hhk\n" "Title=" << Config::projectName << endl << endl; t << "[WINDOWS]" << endl; t << "main=\"" << Config::projectName << "\",\"index.hhc\"," - "\"index.hhk\",\"index.html\",\"index.html\",,,,,0x23520,," - "0x3006,,,,,,,,0" << endl << endl; + "\"index.hhk\",\"" << indexName << "\",\"" << + indexName << "\",,,,,0x23520,,0x3006,,,,,,,,0" << endl << endl; t << "[FILES]" << endl; char *s = indexFiles.first(); @@ -380,19 +382,30 @@ int HtmlHelp::decContentsDepth() * \param name the name of the item. * \param ref the URL of to the item. */ -void HtmlHelp::addContentsItem(const char *name,const char *ref, +void HtmlHelp::addContentsItem(bool isDir, + const char *name,const char *ref, const char *anchor) { int i; for (i=0;i<dc;i++) cts << " "; cts << "<LI><OBJECT type=\"text/sitemap\">"; - if (ref) + cts << "<param name=\"Name\" value=\"" << name << "\">"; + if (ref) // made ref optional param - KPW { cts << "<param name=\"Local\" value=\"" << ref << ".html"; if (anchor) cts << "#" << anchor; cts << "\">"; } - cts << "<param name=\"Name\" value=\"" << name << "\">" - "</OBJECT>\n"; + cts << "<param name=\"ImageNumber\" value=\""; + if (isDir) // added - KPW + { + cts << (int)BOOK_CLOSED ; + } + else + { + cts << (int)TEXT; + } + cts << "\">"; + cts << "</OBJECT>\n"; } /*! Add an list item to the index file. @@ -406,3 +419,4 @@ void HtmlHelp::addIndexItem(const char *level1, const char *level2, index->addItem(level1,level2,ref,anchor,TRUE); index->addItem(level2,level1,ref,anchor,FALSE); } + |