diff options
author | Martin Smith <martin.smith@nokia.com> | 2010-09-22 08:04:45 (GMT) |
---|---|---|
committer | Martin Smith <martin.smith@nokia.com> | 2010-09-22 08:04:45 (GMT) |
commit | d10863a6d155f5a57fc30dbaf1229e29eef1ba98 (patch) | |
tree | 42f8ae64b4f6abf4556c0ff831b5c91cb59c5604 /tools/qdoc3/ditaxmlgenerator.h | |
parent | 0840b0a1c14093c3dc1cbe16561ae6c8d7096fa9 (diff) | |
download | Qt-d10863a6d155f5a57fc30dbaf1229e29eef1ba98.zip Qt-d10863a6d155f5a57fc30dbaf1229e29eef1ba98.tar.gz Qt-d10863a6d155f5a57fc30dbaf1229e29eef1ba98.tar.bz2 |
qdoc: Changed the <apiDesc> in the <cxxClass>.
This <apiDesc> is now the first part of the generated
documentation for a C++ class rather than the first
section of the detailed description. This includes
the brief text, the inheritance stuff, the inherited-by
stuff, and a few other preamble type texts.
Diffstat (limited to 'tools/qdoc3/ditaxmlgenerator.h')
-rw-r--r-- | tools/qdoc3/ditaxmlgenerator.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/tools/qdoc3/ditaxmlgenerator.h b/tools/qdoc3/ditaxmlgenerator.h index 6a52441..5ec4a6c 100644 --- a/tools/qdoc3/ditaxmlgenerator.h +++ b/tools/qdoc3/ditaxmlgenerator.h @@ -150,7 +150,9 @@ class DitaXmlGenerator : public PageGenerator void generateBreadCrumbs(const QString& title, const Node* node, CodeMarker* marker); - void generateHeader(const Node* node, const QString& name); + void generateHeader(const Node* node, + const QString& name, + bool subpage = false); void generateTitle(const QString& title, const Text& subTitle, SubTitleSize subTitleSize, @@ -261,10 +263,10 @@ class DitaXmlGenerator : public PageGenerator virtual void beginSubPage(const Location& location, const QString& fileName); virtual void endSubPage(); QXmlStreamWriter& xmlWriter(); - void writeDetailSections(const Node* node, - CodeMarker* marker, - bool apiDesc, - const QString& title); + void writeDetailedDescription(const Node* node, + CodeMarker* marker, + bool apiDesc, + const QString& title); void addLink(const QString& href, const QStringRef& text); private: |