/**************************************************************************** ** ** Copyright (C) 2019 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the tools applications of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3 as published by the Free Software ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-3.0.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ /* htmlgenerator.cpp */ #include "htmlgenerator.h" #include "codemarker.h" #include "codeparser.h" #include "helpprojectwriter.h" #include "node.h" #include "qdocdatabase.h" #include "separator.h" #include "tree.h" #include "quoter.h" #include #include #include #include #include #include #include #include QT_BEGIN_NAMESPACE int HtmlGenerator::id = 0; bool HtmlGenerator::debugging_on = false; QString HtmlGenerator::divNavTop; static bool showBrokenLinks = false; static QRegExp linkTag("(<@link node=\"([^\"]+)\">).*()"); static QRegExp funcTag("(<@func target=\"([^\"]*)\">)(.*)()"); static QRegExp typeTag("(<@(type|headerfile|func)(?: +[^>]*)?>)(.*)()"); static QRegExp spanTag(""); static QRegExp unknownTag("]*>"); static void addLink(const QString &linkTarget, const QStringRef &nestedStuff, QString *res) { if (!linkTarget.isEmpty()) { *res += QLatin1String(""); *res += nestedStuff; *res += QLatin1String(""); } else { *res += nestedStuff; } } /*! Constructs the HTML output generator. */ HtmlGenerator::HtmlGenerator() : codeIndent(0), helpProjectWriter(nullptr), inObsoleteLink(false), funcLeftParen("\\S(\\()"), obsoleteLinks(false) { } /*! Destroys the HTML output generator. Deletes the singleton instance of HelpProjectWriter. */ HtmlGenerator::~HtmlGenerator() { if (helpProjectWriter) { delete helpProjectWriter; helpProjectWriter = nullptr; } } /*! Initializes the HTML output generator's data structures from the configuration class \a config. */ void HtmlGenerator::initializeGenerator(const Config &config) { static const struct { const char *key; const char *left; const char *right; } defaults[] = { { ATOM_FORMATTING_BOLD, "", "" }, { ATOM_FORMATTING_INDEX, "" }, { ATOM_FORMATTING_ITALIC, "", "" }, { ATOM_FORMATTING_PARAMETER, "", "" }, { ATOM_FORMATTING_SUBSCRIPT, "", "" }, { ATOM_FORMATTING_SUPERSCRIPT, "", "" }, { ATOM_FORMATTING_TELETYPE, "", "" }, // tag is not supported in HTML5 { ATOM_FORMATTING_UICONTROL, "", "" }, { ATOM_FORMATTING_UNDERLINE, "", "" }, { nullptr, nullptr, nullptr } }; Generator::initializeGenerator(config); obsoleteLinks = config.getBool(CONFIG_OBSOLETELINKS); setImageFileExtensions(QStringList() << "png" << "jpg" << "jpeg" << "gif"); /* The formatting maps are owned by Generator. They are cleared in Generator::terminate(). */ int i = 0; while (defaults[i].key) { formattingLeftMap().insert(QLatin1String(defaults[i].key), QLatin1String(defaults[i].left)); formattingRightMap().insert(QLatin1String(defaults[i].key), QLatin1String(defaults[i].right)); i++; } style = config.getString(HtmlGenerator::format() + Config::dot + CONFIG_STYLE); endHeader = config.getString(HtmlGenerator::format() + Config::dot + CONFIG_ENDHEADER); postHeader = config.getString(HtmlGenerator::format() + Config::dot + HTMLGENERATOR_POSTHEADER); postPostHeader = config.getString(HtmlGenerator::format() + Config::dot + HTMLGENERATOR_POSTPOSTHEADER); prologue = config.getString(HtmlGenerator::format() + Config::dot + HTMLGENERATOR_PROLOGUE); footer = config.getString(HtmlGenerator::format() + Config::dot + HTMLGENERATOR_FOOTER); address = config.getString(HtmlGenerator::format() + Config::dot + HTMLGENERATOR_ADDRESS); pleaseGenerateMacRef = config.getBool(HtmlGenerator::format() + Config::dot + HTMLGENERATOR_GENERATEMACREFS); noNavigationBar = config.getBool(HtmlGenerator::format() + Config::dot + HTMLGENERATOR_NONAVIGATIONBAR); navigationSeparator = config.getString(HtmlGenerator::format() + Config::dot + HTMLGENERATOR_NAVIGATIONSEPARATOR); tocDepth = config.getInt(HtmlGenerator::format() + Config::dot + HTMLGENERATOR_TOCDEPTH); project = config.getString(CONFIG_PROJECT); projectDescription = config.getString(CONFIG_DESCRIPTION); if (projectDescription.isEmpty() && !project.isEmpty()) projectDescription = project + QLatin1String(" Reference Documentation"); projectUrl = config.getString(CONFIG_URL); tagFile_ = config.getString(CONFIG_TAGFILE); #ifndef QT_NO_TEXTCODEC outputEncoding = config.getString(CONFIG_OUTPUTENCODING); if (outputEncoding.isEmpty()) outputEncoding = QLatin1String("UTF-8"); outputCodec = QTextCodec::codecForName(outputEncoding.toLocal8Bit()); #endif naturalLanguage = config.getString(CONFIG_NATURALLANGUAGE); if (naturalLanguage.isEmpty()) naturalLanguage = QLatin1String("en"); const QSet editionNames = config.subVars(CONFIG_EDITION); for (const auto &editionName : editionNames) { QStringList editionModules = config.getStringList(CONFIG_EDITION + Config::dot + editionName + Config::dot + "modules"); QStringList editionGroups = config.getStringList(CONFIG_EDITION + Config::dot + editionName + Config::dot + "groups"); if (!editionModules.isEmpty()) editionModuleMap[editionName] = editionModules; if (!editionGroups.isEmpty()) editionGroupMap[editionName] = editionGroups; } codeIndent = config.getInt(CONFIG_CODEINDENT); // QTBUG-27798 codePrefix = config.getString(CONFIG_CODEPREFIX); codeSuffix = config.getString(CONFIG_CODESUFFIX); /* The help file write should be allocated once and only once per qdoc execution. */ if (helpProjectWriter) helpProjectWriter->reset(config, project.toLower() + ".qhp", this); else helpProjectWriter = new HelpProjectWriter(config, project.toLower() + ".qhp", this); // Documentation template handling headerScripts = config.getString(HtmlGenerator::format() + Config::dot + CONFIG_HEADERSCRIPTS); headerStyles = config.getString(HtmlGenerator::format() + Config::dot + CONFIG_HEADERSTYLES); QString prefix = CONFIG_QHP + Config::dot + project + Config::dot; manifestDir = QLatin1String("qthelp://") + config.getString(prefix + QLatin1String("namespace")); manifestDir += QLatin1Char('/') + config.getString(prefix + QLatin1String("virtualFolder")) + QLatin1Char('/'); readManifestMetaContent(config); examplesPath = config.getString(CONFIG_EXAMPLESINSTALLPATH); if (!examplesPath.isEmpty()) examplesPath += QLatin1Char('/'); // Retrieve the config for the navigation bar homepage = config.getString(CONFIG_NAVIGATION + Config::dot + CONFIG_HOMEPAGE); hometitle = config.getString(CONFIG_NAVIGATION + Config::dot + CONFIG_HOMETITLE, homepage); landingpage = config.getString(CONFIG_NAVIGATION + Config::dot + CONFIG_LANDINGPAGE); landingtitle = config.getString(CONFIG_NAVIGATION + Config::dot + CONFIG_LANDINGTITLE, landingpage); cppclassespage = config.getString(CONFIG_NAVIGATION + Config::dot + CONFIG_CPPCLASSESPAGE); cppclassestitle = config.getString(CONFIG_NAVIGATION + Config::dot + CONFIG_CPPCLASSESTITLE, QLatin1String("C++ Classes")); qmltypespage = config.getString(CONFIG_NAVIGATION + Config::dot + CONFIG_QMLTYPESPAGE); qmltypestitle = config.getString(CONFIG_NAVIGATION + Config::dot + CONFIG_QMLTYPESTITLE, QLatin1String("QML Types")); buildversion = config.getString(CONFIG_BUILDVERSION); } /*! Gracefully terminates the HTML output generator. */ void HtmlGenerator::terminateGenerator() { Generator::terminateGenerator(); } QString HtmlGenerator::format() { return "HTML"; } /*! Generate targets for any \keyword commands that were seen in the qdoc comment for the \a node. */ void HtmlGenerator::generateKeywordAnchors(const Node *node) { Q_UNUSED(node); // Disabled: keywords always link to the top of the QDoc // comment they appear in, and do not use a dedicated anchor. } /*! If qdoc is in the \c {-prepare} phase, traverse the primary tree to generate the index file for the current module. If qdoc is in the \c {-generate} phase, traverse the primary tree to generate all the HTML documentation for the current module. Then generate the help file and the tag file. */ void HtmlGenerator::generateDocs() { Node *qflags = qdb_->findClassNode(QStringList("QFlags")); if (qflags) qflagsHref_ = linkForNode(qflags, nullptr); if (!preparing()) Generator::generateDocs(); if (Generator::generating() && Generator::writeQaPages()) generateQAPage(); if (!generating()) { QString fileBase = project.toLower().simplified().replace(QLatin1Char(' '), QLatin1Char('-')); qdb_->generateIndex(outputDir() + QLatin1Char('/') + fileBase + ".index", projectUrl, projectDescription, this); } if (!preparing()) { helpProjectWriter->generate(); generateManifestFiles(); /* Generate the XML tag file, if it was requested. */ qdb_->generateTagFile(tagFile_, this); } } /*! Output the module's Quality Assurance page. */ void HtmlGenerator::generateQAPage() { NamespaceNode *node = qdb_->primaryTreeRoot(); beginSubPage(node, "aaa-" + defaultModuleName().toLower() + "-qa-page.html"); CodeMarker *marker = CodeMarker::markerForFileName(node->location().filePath()); QString title = "Quality Assurance Page for " + defaultModuleName(); QString t = "Quality assurance information for checking the " + defaultModuleName() + " documentation."; generateHeader(title, node, marker); generateTitle(title, Text() << t, LargeSubTitle, node, marker); QStringList strings; QVector counts; QString depends = qdb_->getLinkCounts(strings, counts); if (!strings.isEmpty()) { t = "Intermodule Link Counts"; QString ref = registerRef(t); out() << "" << divNavTop << '\n'; out() << "

" << protectEnc(t) << "

\n"; out() << "" << "\n"; QString fileName; for (int i = 0; i < strings.size(); ++i) { fileName = generateLinksToLinksPage(strings.at(i), marker); out() << "\n"; } int count = 0; fileName = generateLinksToBrokenLinksPage(marker, count); if (count != 0) { out() << "\n"; } out() << "
Destination ModuleLink Count
" << "" << strings.at(i) << "" << "" << counts.at(i) << "
" << "" << "Broken Links" << "" << "" << count << "
\n"; t = "The Optimal \"depends\" Variable"; out() << "

" << protectEnc(t) << "

\n"; t = "Consider replacing the depends variable in " + defaultModuleName().toLower() + ".qdocconf with this one, if the two are not identical:"; out() << "

" << protectEnc(t) << "

\n"; out() << "

" << protectEnc(depends) << "

\n"; } generateFooter(); endSubPage(); } /*! Generate an html file with the contents of a C++ or QML source file. */ void HtmlGenerator::generateExampleFilePage(const Node *en, const QString &file, CodeMarker *marker) { SubTitleSize subTitleSize = LargeSubTitle; QString fullTitle = en->fullTitle(); beginFilePage(en, linkForExampleFile(file, en)); generateHeader(fullTitle, en, marker); generateTitle(fullTitle, Text() << en->subtitle(), subTitleSize, en, marker); Text text; Quoter quoter; Doc::quoteFromFile(en->doc().location(), quoter, file); QString code = quoter.quoteTo(en->location(), QString(), QString()); CodeMarker *codeMarker = CodeMarker::markerForFileName(file); text << Atom(codeMarker->atomType(), code); Atom a(codeMarker->atomType(), code); generateText(text, en, codeMarker); endFilePage(); } /*! This function writes an html file containing a list of links to links that originate in the current module and go to targets in the specified \a module. The \a marker is used for the same thing the marker is always used for. */ QString HtmlGenerator::generateLinksToLinksPage(const QString &module, CodeMarker *marker) { NamespaceNode *node = qdb_->primaryTreeRoot(); QString fileName = "aaa-links-to-" + module + ".html"; beginSubPage(node, fileName); QString title = "Links from " + defaultModuleName() + " to " + module; generateHeader(title, node, marker); generateTitle(title, Text(), SmallSubTitle, node, marker); out() << "

This is a list of links from " << defaultModuleName() << " to " << module << ". "; out() << "Click on a link to go to the location of the link. The link is marked "; out() << "with red asterisks. "; out() << "Click on the marked link to see if it goes to the right place.

\n"; const TargetList *tlist = qdb_->getTargetList(module); if (tlist) { out() << "\n"; for (const TargetLoc *t : *tlist) { // e.g.: Layout Management out() << ""; out() << ""; out() << "\n"; } out() << "
Link to link...In file...Somewhere after line number...
"; out() << "fileName_ << "#" << t->target_ << "\">"; out() << t->text_ << ""; QString f = t->loc_->doc().location().filePath(); out() << f << ""; out() << t->loc_->doc().location().lineNo() << "
\n"; } generateFooter(); endSubPage(); return fileName; } /*! This function writes an html file containing a list of links to broken links that originate in the current module and go nowwhere. It returns the name of the file it generates, and it sets \a count to the number of broken links that were found. The \a marker is used for the same thing the marker is always used for. */ QString HtmlGenerator::generateLinksToBrokenLinksPage(CodeMarker *marker, int &count) { QString fileName; NamespaceNode *node = qdb_->primaryTreeRoot(); const TargetList *tlist = qdb_->getTargetList("broken"); if (tlist && !tlist->isEmpty()) { count = tlist->size(); fileName = "aaa-links-to-broken-links.html"; beginSubPage(node, fileName); QString title = "Broken links in " + defaultModuleName(); generateHeader(title, node, marker); generateTitle(title, Text(), SmallSubTitle, node, marker); out() << "

This is a list of broken links in " << defaultModuleName() << ". "; out() << "Click on a link to go to the broken link. "; out() << "The link's target could not be found.

\n"; out() << "\n"; for (const TargetLoc *t : *tlist) { // e.g.: Layout Management out() << ""; out() << ""; out() << "\n"; } out() << "
Link to broken link...In " "file...Somewhere after line number...
"; out() << "fileName_ << "#" << t->target_ << "\">"; out() << t->text_ << ""; QString f = t->loc_->doc().location().filePath(); out() << f << ""; out() << t->loc_->doc().location().lineNo() << "
\n"; generateFooter(); endSubPage(); } return fileName; } /*! Generate html from an instance of Atom. */ int HtmlGenerator::generateAtom(const Atom *atom, const Node *relative, CodeMarker *marker) { int idx, skipAhead = 0; static bool in_para = false; switch (atom->type()) { case Atom::AutoLink: { QString name = atom->string(); if (relative && relative->name() == name.replace(QLatin1String("()"), QLatin1String())) { out() << protectEnc(atom->string()); break; } } Q_FALLTHROUGH(); case Atom::NavAutoLink: if (!inLink_ && !inContents_ && !inSectionHeading_) { const Node *node = nullptr; QString link = getAutoLink(atom, relative, &node); if (link.isEmpty()) { if (autolinkErrors()) relative->doc().location().warning( tr("Can't autolink to '%1'").arg(atom->string())); } else if (node && node->isObsolete()) { if ((relative->parent() != node) && !relative->isObsolete()) link.clear(); } if (link.isEmpty()) { out() << protectEnc(atom->string()); } else { if (Generator::writeQaPages() && node && (atom->type() != Atom::NavAutoLink)) { QString text = atom->string(); QString target = qdb_->getNewLinkTarget(relative, node, outFileName(), text); out() << ""; } beginLink(link, node, relative); generateLink(atom, marker); endLink(); } } else { out() << protectEnc(atom->string()); } break; case Atom::BaseName: break; case Atom::BriefLeft: if (!hasBrief(relative)) { skipAhead = skipAtoms(atom, Atom::BriefRight); break; } out() << "

"; rewritePropertyBrief(atom, relative); break; case Atom::BriefRight: if (hasBrief(relative)) out() << "

\n"; break; case Atom::C: // This may at one time have been used to mark up C++ code but it is // now widely used to write teletype text. As a result, text marked // with the \c command is not passed to a code marker. out() << formattingLeftMap()[ATOM_FORMATTING_TELETYPE]; out() << protectEnc(plainCode(atom->string())); out() << formattingRightMap()[ATOM_FORMATTING_TELETYPE]; break; case Atom::CaptionLeft: out() << "

"; in_para = true; break; case Atom::CaptionRight: endLink(); if (in_para) { out() << "

\n"; in_para = false; } break; case Atom::Qml: out() << "
"
              << trimmedTrailing(highlightedCode(indent(codeIndent, atom->string()), relative,
                                                 false, Node::QML),
                                 codePrefix, codeSuffix)
              << "
\n"; break; case Atom::JavaScript: out() << "
"
              << trimmedTrailing(highlightedCode(indent(codeIndent, atom->string()), relative,
                                                 false, Node::JS),
                                 codePrefix, codeSuffix)
              << "
\n"; break; case Atom::CodeNew: out() << "

you can rewrite it as

\n"; Q_FALLTHROUGH(); case Atom::Code: out() << "
"
              << trimmedTrailing(highlightedCode(indent(codeIndent, atom->string()), relative),
                                 codePrefix, codeSuffix)
              << "
\n"; break; case Atom::CodeOld: out() << "

For example, if you have code like

\n"; Q_FALLTHROUGH(); case Atom::CodeBad: out() << "
"
              << trimmedTrailing(protectEnc(plainCode(indent(codeIndent, atom->string()))),
                                 codePrefix, codeSuffix)
              << "
\n"; break; case Atom::DivLeft: out() << "string().isEmpty()) out() << ' ' << atom->string(); out() << '>'; break; case Atom::DivRight: out() << ""; break; case Atom::FootnoteLeft: // ### For now if (in_para) { out() << "

\n"; in_para = false; } out() << ""; break; case Atom::FormatElse: case Atom::FormatEndif: case Atom::FormatIf: break; case Atom::FormattingLeft: if (atom->string().startsWith("span ")) { out() << '<' + atom->string() << '>'; } else out() << formattingLeftMap()[atom->string()]; if (atom->string() == ATOM_FORMATTING_PARAMETER) { if (atom->next() != nullptr && atom->next()->type() == Atom::String) { QRegExp subscriptRegExp("([a-z]+)_([0-9n])"); if (subscriptRegExp.exactMatch(atom->next()->string())) { out() << subscriptRegExp.cap(1) << "" << subscriptRegExp.cap(2) << ""; skipAhead = 1; } } } break; case Atom::FormattingRight: if (atom->string() == ATOM_FORMATTING_LINK) { endLink(); } else if (atom->string().startsWith("span ")) { out() << ""; } else { out() << formattingRightMap()[atom->string()]; } break; case Atom::AnnotatedList: { const CollectionNode *cn = qdb_->getCollectionNode(atom->string(), Node::Group); if (cn) generateList(cn, marker, atom->string()); } break; case Atom::GeneratedList: if (atom->string() == QLatin1String("annotatedclasses")) { generateAnnotatedList(relative, marker, qdb_->getCppClasses()); } else if (atom->string() == QLatin1String("annotatedexamples")) { generateAnnotatedLists(relative, marker, qdb_->getExamples()); } else if (atom->string() == QLatin1String("annotatedattributions")) { generateAnnotatedLists(relative, marker, qdb_->getAttributions()); } else if (atom->string() == QLatin1String("classes")) { generateCompactList(Generic, relative, qdb_->getCppClasses(), true, QStringLiteral("")); } else if (atom->string().contains("classes ")) { QString rootName = atom->string().mid(atom->string().indexOf("classes") + 7).trimmed(); generateCompactList(Generic, relative, qdb_->getCppClasses(), true, rootName); } else if (atom->string() == QLatin1String("qmlbasictypes")) { generateCompactList(Generic, relative, qdb_->getQmlBasicTypes(), true, QStringLiteral("")); } else if (atom->string() == QLatin1String("qmltypes")) { generateCompactList(Generic, relative, qdb_->getQmlTypes(), true, QStringLiteral("")); } else if ((idx = atom->string().indexOf(QStringLiteral("bymodule"))) != -1) { QString moduleName = atom->string().mid(idx + 8).trimmed(); Node::NodeType type = typeFromString(atom); QDocDatabase *qdb = QDocDatabase::qdocDB(); const CollectionNode *cn = qdb->getCollectionNode(moduleName, type); if (cn) { if (type == Node::Module) { NodeMap m; cn->getMemberClasses(m); if (!m.isEmpty()) { generateAnnotatedList(relative, marker, m); } } else generateAnnotatedList(relative, marker, cn->members()); } } else if (atom->string().startsWith("examplefiles") || atom->string().startsWith("exampleimages")) { if (relative->isExample()) { qDebug() << "GENERATE FILE LIST CALLED" << relative->name() << atom->string(); } else relative->location().warning(QString("'\\generatelist \1' can only be used with " "'\\example' topic command") .arg(atom->string())); } else if (atom->string() == QLatin1String("classhierarchy")) { generateClassHierarchy(relative, qdb_->getCppClasses()); } else if (atom->string() == QLatin1String("obsoleteclasses")) { generateCompactList(Generic, relative, qdb_->getObsoleteClasses(), false, QStringLiteral("Q")); } else if (atom->string() == QLatin1String("obsoleteqmltypes")) { generateCompactList(Generic, relative, qdb_->getObsoleteQmlTypes(), false, QStringLiteral("")); } else if (atom->string() == QLatin1String("obsoletecppmembers")) { generateCompactList(Obsolete, relative, qdb_->getClassesWithObsoleteMembers(), false, QStringLiteral("Q")); } else if (atom->string() == QLatin1String("obsoleteqmlmembers")) { generateCompactList(Obsolete, relative, qdb_->getQmlTypesWithObsoleteMembers(), false, QStringLiteral("")); } else if (atom->string() == QLatin1String("functionindex")) { generateFunctionIndex(relative); } else if (atom->string() == QLatin1String("attributions")) { generateAnnotatedList(relative, marker, qdb_->getAttributions()); } else if (atom->string() == QLatin1String("legalese")) { generateLegaleseList(relative, marker); } else if (atom->string() == QLatin1String("overviews")) { generateList(relative, marker, "overviews"); } else if (atom->string() == QLatin1String("cpp-modules")) { generateList(relative, marker, "cpp-modules"); } else if (atom->string() == QLatin1String("qml-modules")) { generateList(relative, marker, "qml-modules"); } else if (atom->string() == QLatin1String("namespaces")) { generateAnnotatedList(relative, marker, qdb_->getNamespaces()); } else if (atom->string() == QLatin1String("related")) { generateList(relative, marker, "related"); } else { const CollectionNode *cn = qdb_->getCollectionNode(atom->string(), Node::Group); if (cn) { if (!generateGroupList(const_cast(cn))) relative->location().warning( QString("'\\generatelist \1' group is empty").arg(atom->string())); } else { relative->location().warning( QString("'\\generatelist \1' no such group").arg(atom->string())); } } break; case Atom::SinceList: { const NodeMultiMap &nsmap = qdb_->getSinceMap(atom->string()); if (nsmap.isEmpty()) break; const NodeMap &ncmap = qdb_->getClassMap(atom->string()); const NodeMap &nqcmap = qdb_->getQmlTypeMap(atom->string()); Sections sections(nsmap); out() << "
    \n"; const QVector
    sinceSections = sections.sinceSections(); for (const auto §ion : sinceSections) { if (!section.members().isEmpty()) { out() << "
  • " << "" << section.title() << "
  • \n"; } } out() << "
\n"; int idx = 0; for (const auto §ion : sinceSections) { if (!section.members().isEmpty()) { out() << "\n"; out() << "

" << protectEnc(section.title()) << "

\n"; if (idx == Sections::SinceClasses) generateCompactList(Generic, nullptr, ncmap, false, QStringLiteral("Q")); else if (idx == Sections::SinceQmlTypes) generateCompactList(Generic, nullptr, nqcmap, false, QStringLiteral("")); else if (idx == Sections::SinceMemberFunctions) { ParentMaps parentmaps; ParentMaps::iterator pmap; const QVector members = section.members(); for (const auto &member : members) { Node *parent = (*member).parent(); pmap = parentmaps.find(parent); if (pmap == parentmaps.end()) pmap = parentmaps.insert(parent, NodeMultiMap()); pmap->insert(member->name(), member); } for (auto map = parentmaps.begin(); map != parentmaps.end(); ++map) { NodeVector nv = map->values().toVector(); out() << "

Class "; out() << ""; QStringList pieces = map.key()->fullName().split("::"); out() << protectEnc(pieces.last()); out() << "" << ":

\n"; generateSection(nv, nullptr, marker); out() << "
"; } } else { generateSection(section.members(), nullptr, marker); } } ++idx; } } break; case Atom::BR: out() << "
\n"; break; case Atom::HR: out() << "
\n"; break; case Atom::Image: case Atom::InlineImage: { QString fileName = imageFileName(relative, atom->string()); QString text; if (atom->next() != nullptr) text = atom->next()->string(); if (atom->type() == Atom::Image) out() << "

"; if (fileName.isEmpty()) { relative->location().warning(tr("Missing image: %1").arg(protectEnc(atom->string()))); out() << "[Missing image " << protectEnc(atom->string()) << "]"; } else { QString prefix; out() << "\"""; helpProjectWriter->addExtraFile(fileName); setImageFileName(relative, fileName); } if (atom->type() == Atom::Image) out() << "

"; } break; case Atom::ImageText: break; case Atom::ImportantLeft: out() << "

"; out() << formattingLeftMap()[ATOM_FORMATTING_BOLD]; out() << "Important: "; out() << formattingRightMap()[ATOM_FORMATTING_BOLD]; break; case Atom::ImportantRight: out() << "

"; break; case Atom::NoteLeft: out() << "

"; out() << formattingLeftMap()[ATOM_FORMATTING_BOLD]; out() << "Note: "; out() << formattingRightMap()[ATOM_FORMATTING_BOLD]; break; case Atom::NoteRight: out() << "

"; break; case Atom::LegaleseLeft: out() << "
"; break; case Atom::LegaleseRight: out() << "
"; break; case Atom::LineBreak: out() << "
"; break; case Atom::Link: case Atom::NavLink: { inObsoleteLink = false; const Node *node = nullptr; QString link = getLink(atom, relative, &node); if (link.isEmpty() && (node != relative) && !noLinkErrors()) { relative->doc().location().warning(tr("Can't link to '%1'").arg(atom->string())); if (Generator::writeQaPages() && (atom->type() != Atom::NavAutoLink)) { QString text = atom->next()->next()->string(); QString target = qdb_->getNewLinkTarget(relative, node, outFileName(), text, true); out() << ""; } } else { if (Generator::writeQaPages() && node && (atom->type() != Atom::NavLink)) { QString text = atom->next()->next()->string(); QString target = qdb_->getNewLinkTarget(relative, node, outFileName(), text); out() << ""; } node = nullptr; } beginLink(link, node, relative); skipAhead = 1; } break; case Atom::ExampleFileLink: { QString link = linkForExampleFile(atom->string(), relative); if (link.isEmpty() && !noLinkErrors()) relative->doc().location().warning(tr("Can't link to '%1'").arg(atom->string())); beginLink(link); skipAhead = 1; } break; case Atom::ExampleImageLink: { QString link = atom->string(); if (link.isEmpty() && !noLinkErrors()) relative->doc().location().warning(tr("Can't link to '%1'").arg(atom->string())); link = "images/used-in-examples/" + link; beginLink(link); skipAhead = 1; } break; case Atom::LinkNode: { const Node *node = CodeMarker::nodeForString(atom->string()); beginLink(linkForNode(node, relative), node, relative); skipAhead = 1; } break; case Atom::ListLeft: if (in_para) { out() << "

\n"; in_para = false; } if (atom->string() == ATOM_LIST_BULLET) { out() << "
    \n"; } else if (atom->string() == ATOM_LIST_TAG) { out() << "
    \n"; } else if (atom->string() == ATOM_LIST_VALUE) { out() << "
    "; threeColumnEnumValueTable_ = isThreeColumnEnumValueTable(atom); if (threeColumnEnumValueTable_) { if (++numTableRows_ % 2 == 1) out() << ""; else out() << ""; out() << ""; // If not in \enum topic, skip the value column if (relative->isEnumType()) out() << ""; out() << "\n"; } else { out() << "\n"; } } else { QString olType; if (atom->string() == ATOM_LIST_UPPERALPHA) { olType = "A"; } else if (atom->string() == ATOM_LIST_LOWERALPHA) { olType = "a"; } else if (atom->string() == ATOM_LIST_UPPERROMAN) { olType = "I"; } else if (atom->string() == ATOM_LIST_LOWERROMAN) { olType = "i"; } else { // (atom->string() == ATOM_LIST_NUMERIC) olType = "1"; } if (atom->next() != nullptr && atom->next()->string().toInt() > 1) { out() << QString("
      ") .arg(olType) .arg(atom->next()->string()); } else out() << QString("
        ").arg(olType); } break; case Atom::ListItemNumber: break; case Atom::ListTagLeft: if (atom->string() == ATOM_LIST_TAG) { out() << "
        "; } else { // (atom->string() == ATOM_LIST_VALUE) QPair pair = getAtomListValue(atom); skipAhead = pair.second; QString t = protectEnc(plainCode(marker->markedUpEnumValue(pair.first, relative))); out() << "
    \n"; } else { out() << "\n"; } break; case Atom::ListRight: if (atom->string() == ATOM_LIST_BULLET) { out() << "\n"; } else if (atom->string() == ATOM_LIST_TAG) { out() << "\n"; } else if (atom->string() == ATOM_LIST_VALUE) { out() << "
    ConstantValueDescription
    ConstantValue
    " << t << ""; if (relative->isEnumType()) { out() << ""; const EnumNode *enume = static_cast(relative); QString itemValue = enume->itemValue(atom->next()->string()); if (itemValue.isEmpty()) out() << '?'; else out() << "" << protectEnc(itemValue) << ""; } } break; case Atom::SinceTagRight: case Atom::ListTagRight: if (atom->string() == ATOM_LIST_TAG) out() << "\n"; break; case Atom::ListItemLeft: if (atom->string() == ATOM_LIST_TAG) { out() << "
    "; } else if (atom->string() == ATOM_LIST_VALUE) { if (threeColumnEnumValueTable_) { out() << "
    "; if (matchAhead(atom, Atom::ListItemRight)) out() << " "; } } else { out() << "
  • "; } if (matchAhead(atom, Atom::ParaLeft)) skipAhead = 1; break; case Atom::ListItemRight: if (atom->string() == ATOM_LIST_TAG) { out() << "\n"; } else if (atom->string() == ATOM_LIST_VALUE) { out() << "
  • \n"; } else { out() << "\n"; } break; case Atom::Nop: break; case Atom::ParaLeft: out() << "

    "; in_para = true; break; case Atom::ParaRight: endLink(); if (in_para) { out() << "

    \n"; in_para = false; } // if (!matchAhead(atom, Atom::ListItemRight) && !matchAhead(atom, Atom::TableItemRight)) // out() << "

    \n"; break; case Atom::QuotationLeft: out() << "
    "; break; case Atom::QuotationRight: out() << "
    \n"; break; case Atom::RawString: out() << atom->string(); break; case Atom::SectionLeft: out() << "" << divNavTop << '\n'; break; case Atom::SectionRight: break; case Atom::SectionHeadingLeft: { int unit = atom->string().toInt() + hOffset(relative); out() << ""; inSectionHeading_ = true; break; } case Atom::SectionHeadingRight: out() << "string().toInt() + hOffset(relative)) + ">\n"; inSectionHeading_ = false; break; case Atom::SidebarLeft: break; case Atom::SidebarRight: break; case Atom::String: if (inLink_ && !inContents_ && !inSectionHeading_) { generateLink(atom, marker); } else { out() << protectEnc(atom->string()); } break; case Atom::TableLeft: { QPair pair = getTableWidthAttr(atom); QString attr = pair.second; QString width = pair.first; if (in_para) { out() << "

    \n"; in_para = false; } out() << "
    \n "; numTableRows_ = 0; } break; case Atom::TableRight: out() << "
    \n"; break; case Atom::TableHeaderLeft: out() << ""; inTableHeader_ = true; break; case Atom::TableHeaderRight: out() << ""; if (matchAhead(atom, Atom::TableHeaderLeft)) { skipAhead = 1; out() << "\n"; } else { out() << "\n"; inTableHeader_ = false; } break; case Atom::TableRowLeft: if (!atom->string().isEmpty()) out() << "string() << '>'; else if (++numTableRows_ % 2 == 1) out() << ""; else out() << ""; break; case Atom::TableRowRight: out() << "\n"; break; case Atom::TableItemLeft: { if (inTableHeader_) out() << "count(); ++i) { if (i > 0) out() << ' '; QString p = atom->string(i); if (p.contains('=')) { out() << p; } else { QStringList spans = p.split(QLatin1Char(',')); if (spans.size() == 2) { if (spans.at(0) != "1") out() << " colspan=\"" << spans.at(0) << '"'; if (spans.at(1) != "1") out() << " rowspan=\"" << spans.at(1) << '"'; } } } if (inTableHeader_) out() << '>'; else { out() << '>'; } if (matchAhead(atom, Atom::ParaLeft)) skipAhead = 1; } break; case Atom::TableItemRight: if (inTableHeader_) out() << ""; else { out() << ""; } if (matchAhead(atom, Atom::ParaLeft)) skipAhead = 1; break; case Atom::TableOfContents: break; case Atom::Keyword: break; case Atom::Target: out() << "string()) << "\">"; break; case Atom::UnhandledFormat: out() << "<Missing HTML>"; break; case Atom::UnknownCommand: out() << "\\" << protectEnc(atom->string()) << ""; break; case Atom::QmlText: case Atom::EndQmlText: // don't do anything with these. They are just tags. break; case Atom::CodeQuoteArgument: case Atom::CodeQuoteCommand: case Atom::SnippetCommand: case Atom::SnippetIdentifier: case Atom::SnippetLocation: // no HTML output (ignore) break; default: unknownAtom(atom); } return skipAhead; } /*! Generate a reference page for the C++ class, namespace, or header file documented in \a node using the code \a marker provided. */ void HtmlGenerator::generateCppReferencePage(Aggregate *aggregate, CodeMarker *marker) { QString title; QString rawTitle; QString fullTitle; NamespaceNode *ns = nullptr; SectionVector *summarySections = nullptr; SectionVector *detailsSections = nullptr; Sections sections(aggregate); QString word = aggregate->typeWord(true); if (aggregate->isNamespace()) { rawTitle = aggregate->plainName(); fullTitle = aggregate->plainFullName(); title = rawTitle + " Namespace"; ns = static_cast(aggregate); summarySections = §ions.stdSummarySections(); detailsSections = §ions.stdDetailsSections(); } else if (aggregate->isClassNode()) { rawTitle = aggregate->plainName(); fullTitle = aggregate->plainFullName(); if (aggregate->isStruct()) word = QLatin1String("Struct"); else if (aggregate->isUnion()) word = QLatin1String("Union"); title = rawTitle + " " + word; summarySections = §ions.stdCppClassSummarySections(); detailsSections = §ions.stdCppClassDetailsSections(); } else if (aggregate->isHeader()) { title = fullTitle = rawTitle = aggregate->fullTitle(); summarySections = §ions.stdSummarySections(); detailsSections = §ions.stdDetailsSections(); } Text subtitleText; if (rawTitle != fullTitle) { if (aggregate->parent()->isClassNode()) { QString word2 = aggregate->parent()->typeWord(false); subtitleText << word << " " << rawTitle << " is declared in " << word2 << " " << Atom(Atom::AutoLink, aggregate->parent()->plainName()) << "." << Atom(Atom::LineBreak); } else { subtitleText << "(" << Atom(Atom::AutoLink, fullTitle) << ")" << Atom(Atom::LineBreak); } } generateHeader(title, aggregate, marker); generateTableOfContents(aggregate, marker, summarySections); generateKeywordAnchors(aggregate); generateTitle(title, subtitleText, SmallSubTitle, aggregate, marker); if (ns && !ns->hasDoc() && ns->docNode()) { NamespaceNode *NS = ns->docNode(); Text brief; brief << "The " << ns->name() << " namespace includes the following elements from module " << ns->tree()->camelCaseModuleName() << ". The full namespace is " << "documented in module " << NS->tree()->camelCaseModuleName() << Atom(Atom::LinkNode, CodeMarker::stringForNode(NS)) << Atom(Atom::FormattingLeft, ATOM_FORMATTING_LINK) << Atom(Atom::String, " here.") << Atom(Atom::FormattingRight, ATOM_FORMATTING_LINK); out() << "

    "; generateText(brief, ns, marker); out() << "

    \n"; } else generateBrief(aggregate, marker); if (!aggregate->parent()->isClassNode()) generateRequisites(aggregate, marker); generateStatus(aggregate, marker); generateSince(aggregate, marker); out() << "\n"; generateThreadSafeness(aggregate, marker); bool needOtherSection = false; for (const auto §ion : qAsConst(*summarySections)) { if (section.members().isEmpty() && section.reimplementedMembers().isEmpty()) { if (!section.inheritedMembers().isEmpty()) needOtherSection = true; } else { if (!section.members().isEmpty()) { QString ref = registerRef(section.title().toLower()); out() << "" << divNavTop << "\n"; out() << "

    " << protectEnc(section.title()) << "

    \n"; generateSection(section.members(), aggregate, marker); } if (!section.reimplementedMembers().isEmpty()) { QString name = QString("Reimplemented ") + section.title(); QString ref = registerRef(name.toLower()); out() << "" << divNavTop << "\n"; out() << "

    " << protectEnc(name) << "

    \n"; generateSection(section.reimplementedMembers(), aggregate, marker); } if (!section.inheritedMembers().isEmpty()) { out() << "
      \n"; generateSectionInheritedList(section, aggregate); out() << "
    \n"; } } } if (needOtherSection) { out() << "

    Additional Inherited Members

    \n" "
      \n"; for (const auto §ion : qAsConst(*summarySections)) { if (section.members().isEmpty() && !section.inheritedMembers().isEmpty()) generateSectionInheritedList(section, aggregate); } out() << "
    \n"; } QString detailsRef = registerRef("details"); out() << "" << divNavTop << '\n'; if (aggregate->doc().isEmpty()) { QString command = "documentation"; if (aggregate->isClassNode()) command = "\'\\class\' comment"; aggregate->location().warning( tr("No %1 for '%2'").arg(command).arg(aggregate->plainSignature())); } else { generateExtractionMark(aggregate, DetailedDescriptionMark); out() << "
    \n" // QTBUG-9504 << "

    " << "Detailed Description" << "

    \n"; generateBody(aggregate, marker); out() << "
    \n"; // QTBUG-9504 generateAlsoList(aggregate, marker); generateMaintainerList(aggregate, marker); generateExtractionMark(aggregate, EndMark); } for (const auto §ion : qAsConst(*detailsSections)) { bool headerGenerated = false; if (section.isEmpty()) continue; const QVector members = section.members(); for (const auto &member : members) { if (member->access() == Node::Private) // ### check necessary? continue; if (!headerGenerated) { if (!section.divClass().isEmpty()) out() << "
    \n"; // QTBUG-9504 out() << "

    " << protectEnc(section.title()) << "

    \n"; headerGenerated = true; } if (!member->isClassNode()) generateDetailedMember(member, aggregate, marker); else { out() << "

    class "; generateFullName(member, aggregate); out() << "

    "; generateBrief(member, marker, aggregate); } QStringList names; names << member->name(); if (member->isFunction()) { const FunctionNode *func = reinterpret_cast(member); if (func->isSomeCtor() || func->isDtor() || func->overloadNumber() != 0) names.clear(); } else if (member->isProperty()) { const PropertyNode *prop = reinterpret_cast(member); if (!prop->getters().isEmpty() && !names.contains(prop->getters().first()->name())) names << prop->getters().first()->name(); if (!prop->setters().isEmpty()) names << prop->setters().first()->name(); if (!prop->resetters().isEmpty()) names << prop->resetters().first()->name(); if (!prop->notifiers().isEmpty()) names << prop->notifiers().first()->name(); } else if (member->isEnumType()) { const EnumNode *enume = reinterpret_cast(member); if (enume->flagsType()) names << enume->flagsType()->name(); const auto &enumItemNameList = enume->doc().enumItemNames(); const auto &omitEnumItemNameList = enume->doc().omitEnumItemNames(); const auto items = QSet(enumItemNameList.cbegin(), enumItemNameList.cend()) - QSet(omitEnumItemNameList.cbegin(), omitEnumItemNameList.cend()); for (const QString &enumName : items) { names << plainCode(marker->markedUpEnumValue(enumName, enume)); } } } if (headerGenerated && !section.divClass().isEmpty()) out() << "
    \n"; // QTBUG-9504 } generateFooter(aggregate); } void HtmlGenerator::generateProxyPage(Aggregate *aggregate, CodeMarker *marker) { Q_ASSERT(aggregate->isProxyNode()); QString title; QString rawTitle; QString fullTitle; Text subtitleText; SectionVector *summarySections = nullptr; SectionVector *detailsSections = nullptr; Sections sections(aggregate); rawTitle = aggregate->plainName(); fullTitle = aggregate->plainFullName(); title = rawTitle + " Proxy Page"; summarySections = §ions.stdSummarySections(); detailsSections = §ions.stdDetailsSections(); generateHeader(title, aggregate, marker); generateTitle(title, subtitleText, SmallSubTitle, aggregate, marker); generateBrief(aggregate, marker); for (auto it = summarySections->constBegin(); it != summarySections->constEnd(); ++it) { if (!it->members().isEmpty()) { QString ref = registerRef(it->title().toLower()); out() << "" << divNavTop << "\n"; out() << "

    " << protectEnc(it->title()) << "

    \n"; generateSection(it->members(), aggregate, marker); } } QString detailsRef = registerRef("details"); out() << "" << divNavTop << '\n'; if (!aggregate->doc().isEmpty()) { generateExtractionMark(aggregate, DetailedDescriptionMark); out() << "
    \n" // QTBUG-9504 << "

    " << "Detailed Description" << "

    \n"; generateBody(aggregate, marker); out() << "
    \n"; // QTBUG-9504 generateAlsoList(aggregate, marker); generateMaintainerList(aggregate, marker); generateExtractionMark(aggregate, EndMark); } for (const auto §ion : qAsConst(*detailsSections)) { if (section.isEmpty()) continue; if (!section.divClass().isEmpty()) out() << "
    \n"; // QTBUG-9504 out() << "

    " << protectEnc(section.title()) << "

    \n"; const QVector &members = section.members(); for (const auto &member : members) { if (!member->isPrivate()) { // ### check necessary? if (!member->isClassNode()) generateDetailedMember(member, aggregate, marker); else { out() << "

    class "; generateFullName(member, aggregate); out() << "

    "; generateBrief(member, marker, aggregate); } QStringList names; names << member->name(); if (member->isFunction()) { const FunctionNode *func = reinterpret_cast(member); if (func->isSomeCtor() || func->isDtor() || func->overloadNumber() != 0) names.clear(); } else if (member->isEnumType()) { const EnumNode *enume = reinterpret_cast(member); if (enume->flagsType()) names << enume->flagsType()->name(); const auto &enumItemNameList = enume->doc().enumItemNames(); const auto &omitEnumItemNameList = enume->doc().omitEnumItemNames(); const auto items = QSet(enumItemNameList.cbegin(), enumItemNameList.cend()) - QSet(omitEnumItemNameList.cbegin(), omitEnumItemNameList.cend()); for (const QString &enumName : items) names << plainCode(marker->markedUpEnumValue(enumName, enume)); } } } if (!section.divClass().isEmpty()) out() << "
    \n"; // QTBUG-9504 } generateFooter(aggregate); } /*! Generate the HTML page for a QML type. \qcn is the QML type. \marker is the code markeup object. */ void HtmlGenerator::generateQmlTypePage(QmlTypeNode *qcn, CodeMarker *marker) { Generator::setQmlTypeContext(qcn); SubTitleSize subTitleSize = LargeSubTitle; QString htmlTitle = qcn->fullTitle(); if (qcn->isJsType()) htmlTitle += " JavaScript Type"; else htmlTitle += " QML Type"; generateHeader(htmlTitle, qcn, marker); Sections sections(qcn); generateTableOfContents(qcn, marker, §ions.stdQmlTypeSummarySections()); marker = CodeMarker::markerForLanguage(QLatin1String("QML")); generateKeywordAnchors(qcn); generateTitle(htmlTitle, Text() << qcn->subtitle(), subTitleSize, qcn, marker); generateBrief(qcn, marker); generateQmlRequisites(qcn, marker); QString allQmlMembersLink = generateAllQmlMembersFile(sections, marker); QString obsoleteLink = generateObsoleteQmlMembersFile(sections, marker); if (!allQmlMembersLink.isEmpty() || !obsoleteLink.isEmpty()) { out() << "\n"; } const QVector
    &stdQmlTypeSummarySections = sections.stdQmlTypeSummarySections(); for (const auto §ion : stdQmlTypeSummarySections) { if (!section.isEmpty()) { QString ref = registerRef(section.title().toLower()); out() << "" << divNavTop << '\n'; out() << "

    " << protectEnc(section.title()) << "

    \n"; generateQmlSummary(section.members(), qcn, marker); } } generateExtractionMark(qcn, DetailedDescriptionMark); QString detailsRef = registerRef("details"); out() << "" << divNavTop << '\n'; out() << "

    " << "Detailed Description" << "

    \n"; generateBody(qcn, marker); ClassNode *cn = qcn->classNode(); if (cn) generateQmlText(cn->doc().body(), cn, marker, qcn->name()); generateAlsoList(qcn, marker); generateExtractionMark(qcn, EndMark); const QVector
    &stdQmlTypeDetailsSections = sections.stdQmlTypeDetailsSections(); for (const auto §ion : stdQmlTypeDetailsSections) { if (!section.isEmpty()) { out() << "

    " << protectEnc(section.title()) << "

    \n"; const QVector members = section.members(); for (const auto member : members) { generateDetailedQmlMember(member, qcn, marker); out() << "
    \n"; } } } generateFooter(qcn); Generator::setQmlTypeContext(nullptr); } /*! Generate the HTML page for the QML basic type represented by the QML basic type node \a qbtn. */ void HtmlGenerator::generateQmlBasicTypePage(QmlBasicTypeNode *qbtn, CodeMarker *marker) { SubTitleSize subTitleSize = LargeSubTitle; QString htmlTitle = qbtn->fullTitle(); if (qbtn->isJsType()) htmlTitle += " JavaScript Basic Type"; else htmlTitle += " QML Basic Type"; marker = CodeMarker::markerForLanguage(QLatin1String("QML")); generateHeader(htmlTitle, qbtn, marker); Sections sections(qbtn); generateTableOfContents(qbtn, marker, §ions.stdQmlTypeSummarySections()); generateKeywordAnchors(qbtn); generateTitle(htmlTitle, Text() << qbtn->subtitle(), subTitleSize, qbtn, marker); const QVector
    &stdQmlTypeSummarySections = sections.stdQmlTypeSummarySections(); for (const auto §ion : stdQmlTypeSummarySections) { if (!section.isEmpty()) { QString ref = registerRef(section.title().toLower()); out() << "" << divNavTop << '\n'; out() << "

    " << protectEnc(section.title()) << "

    \n"; generateQmlSummary(section.members(), qbtn, marker); } } generateExtractionMark(qbtn, DetailedDescriptionMark); out() << "
    \n"; // QTBUG-9504 generateBody(qbtn, marker); out() << "
    \n"; // QTBUG-9504 generateAlsoList(qbtn, marker); generateExtractionMark(qbtn, EndMark); const QVector
    &stdQmlTypeDetailsSections = sections.stdQmlTypeDetailsSections(); for (const auto §ion : stdQmlTypeDetailsSections) { if (!section.isEmpty()) { out() << "

    " << protectEnc(section.title()) << "

    \n"; const QVector members = section.members(); for (const auto member : members) { generateDetailedQmlMember(member, qbtn, marker); out() << "
    \n"; } } } generateFooter(qbtn); } /*! Generate the HTML page for an entity that doesn't map to any underlying parsable C++, QML, or Javascript element. */ void HtmlGenerator::generatePageNode(PageNode *pn, CodeMarker *marker) { SubTitleSize subTitleSize = LargeSubTitle; QString fullTitle = pn->fullTitle(); generateHeader(fullTitle, pn, marker); /* Generate the TOC for the new doc format. Don't generate a TOC for the home page. */ if ((pn->name() != QLatin1String("index.html"))) generateTableOfContents(pn, marker, nullptr); generateKeywordAnchors(pn); generateTitle(fullTitle, Text() << pn->subtitle(), subTitleSize, pn, marker); if (pn->isExample()) { generateBrief(pn, marker, nullptr, false); } generateExtractionMark(pn, DetailedDescriptionMark); out() << "
    \n"; // QTBUG-9504 generateBody(pn, marker); out() << "
    \n"; // QTBUG-9504 generateAlsoList(pn, marker); generateExtractionMark(pn, EndMark); generateFooter(pn); } /*! Generate the HTML page for a group, module, or QML module. */ void HtmlGenerator::generateCollectionNode(CollectionNode *cn, CodeMarker *marker) { SubTitleSize subTitleSize = LargeSubTitle; QString fullTitle = cn->fullTitle(); QString ref; generateHeader(fullTitle, cn, marker); generateTableOfContents(cn, marker, nullptr); generateKeywordAnchors(cn); generateTitle(fullTitle, Text() << cn->subtitle(), subTitleSize, cn, marker); if (cn->isModule()) { // Generate brief text and status for modules. generateBrief(cn, marker); generateStatus(cn, marker); generateSince(cn, marker); NodeMultiMap nmm; cn->getMemberNamespaces(nmm); if (!nmm.isEmpty()) { ref = registerRef("namespaces"); out() << "" << divNavTop << '\n'; out() << "

    Namespaces

    \n"; generateAnnotatedList(cn, marker, nmm); } nmm.clear(); cn->getMemberClasses(nmm); if (!nmm.isEmpty()) { ref = registerRef("classes"); out() << "" << divNavTop << '\n'; out() << "

    Classes

    \n"; generateAnnotatedList(cn, marker, nmm); } nmm.clear(); } Text brief = cn->doc().briefText(); if (cn->isModule() && !brief.isEmpty()) { generateExtractionMark(cn, DetailedDescriptionMark); ref = registerRef("details"); out() << "" << divNavTop << '\n'; out() << "
    \n"; // QTBUG-9504 out() << "

    " << "Detailed Description" << "

    \n"; } else { generateExtractionMark(cn, DetailedDescriptionMark); out() << "
    \n"; // QTBUG-9504 } generateBody(cn, marker); out() << "
    \n"; // QTBUG-9504 generateAlsoList(cn, marker); generateExtractionMark(cn, EndMark); if (!cn->noAutoList()) { if (cn->isGroup()) generateAnnotatedList(cn, marker, cn->members()); else if (cn->isQmlModule() || cn->isJsModule()) generateAnnotatedList(cn, marker, cn->members()); } generateFooter(cn); } /*! Generate the HTML page for a generic collection. This is usually a collection of C++ elements that are related to an element in a different module. */ void HtmlGenerator::generateGenericCollectionPage(CollectionNode *cn, CodeMarker *marker) { SubTitleSize subTitleSize = LargeSubTitle; QString fullTitle = cn->name(); QString ref; generateHeader(fullTitle, cn, marker); generateKeywordAnchors(cn); generateTitle(fullTitle, Text() << cn->subtitle(), subTitleSize, cn, marker); Text brief; brief << "Each function or type documented here is related to a class or " << "namespace that is documented in a different module. The reference " << "page for that class or namespace will link to the function or type " << "on this page."; out() << "

    "; generateText(brief, cn, marker); out() << "

    \n"; const QList members = cn->members(); for (const auto &member : members) generateDetailedMember(member, cn, marker); generateFooter(cn); } /*! Returns "html" for this subclass of Generator. */ QString HtmlGenerator::fileExtension() const { return "html"; } /*! Output navigation list in the html file. */ void HtmlGenerator::generateNavigationBar(const QString &title, const Node *node, CodeMarker *marker, const QString &buildversion, bool tableItems) { if (noNavigationBar || node == nullptr) return; Text navigationbar; // Set list item types based on the navigation bar type Atom::AtomType itemLeft = tableItems ? Atom::TableItemLeft : Atom::ListItemLeft; Atom::AtomType itemRight = tableItems ? Atom::TableItemRight : Atom::ListItemRight; if (hometitle == title) return; if (!homepage.isEmpty()) navigationbar << Atom(itemLeft) << Atom(Atom::NavLink, homepage) << Atom(Atom::FormattingLeft, ATOM_FORMATTING_LINK) << Atom(Atom::String, hometitle) << Atom(Atom::FormattingRight, ATOM_FORMATTING_LINK) << Atom(itemRight); if (!landingpage.isEmpty() && landingtitle != title) navigationbar << Atom(itemLeft) << Atom(Atom::NavLink, landingpage) << Atom(Atom::FormattingLeft, ATOM_FORMATTING_LINK) << Atom(Atom::String, landingtitle) << Atom(Atom::FormattingRight, ATOM_FORMATTING_LINK) << Atom(itemRight); if (node->isClassNode()) { if (!cppclassespage.isEmpty() && !cppclassestitle.isEmpty()) navigationbar << Atom(itemLeft) << Atom(Atom::NavLink, cppclassespage) << Atom(Atom::FormattingLeft, ATOM_FORMATTING_LINK) << Atom(Atom::String, cppclassestitle) << Atom(Atom::FormattingRight, ATOM_FORMATTING_LINK) << Atom(itemRight); if (!node->name().isEmpty()) navigationbar << Atom(itemLeft) << Atom(Atom::String, node->name()) << Atom(itemRight); } else if (node->isQmlType() || node->isQmlBasicType() || node->isJsType() || node->isJsBasicType()) { if (!qmltypespage.isEmpty() && !qmltypestitle.isEmpty()) navigationbar << Atom(itemLeft) << Atom(Atom::NavLink, qmltypespage) << Atom(Atom::FormattingLeft, ATOM_FORMATTING_LINK) << Atom(Atom::String, qmltypestitle) << Atom(Atom::FormattingRight, ATOM_FORMATTING_LINK) << Atom(itemRight) << Atom(itemLeft) << Atom(Atom::String, title) << Atom(itemRight); } else { if (node->isAggregate()) { QStringList groups = static_cast(node)->groupNames(); if (groups.length() == 1) { const Node *groupNode = qdb_->findNodeByNameAndType(QStringList(groups[0]), &Node::isGroup); if (groupNode && !groupNode->title().isEmpty()) { navigationbar << Atom(itemLeft) << Atom(Atom::NavLink, groupNode->name()) << Atom(Atom::FormattingLeft, ATOM_FORMATTING_LINK) << Atom(Atom::String, groupNode->title()) << Atom(Atom::FormattingRight, ATOM_FORMATTING_LINK) << Atom(itemRight); } } } if (!navigationbar.isEmpty()) { navigationbar << Atom(itemLeft) << Atom(Atom::String, title) << Atom(itemRight); } } generateText(navigationbar, node, marker); if (buildversion.isEmpty()) return; navigationbar.clear(); if (tableItems) { out() << "\n" << "\n"; else out() << "\n"; } void HtmlGenerator::generateHeader(const QString &title, const Node *node, CodeMarker *marker) { #ifndef QT_NO_TEXTCODEC out() << QString("\n").arg(outputEncoding); #else out() << QString("\n"); #endif out() << "\n"; out() << QString("\n").arg(naturalLanguage); out() << "\n"; out() << " \n"; if (node && !node->doc().location().isEmpty()) out() << "\n"; // determine the rest of the element content: "title | titleSuffix version" QString titleSuffix; if (!landingtitle.isEmpty()) { // for normal pages: "title | landingtitle version" titleSuffix = landingtitle; } else if (!hometitle.isEmpty()) { // for pages that set the homepage title but not landing page title: // "title | hometitle version" if (title != hometitle) titleSuffix = hometitle; } else if (!project.isEmpty()) { // for projects outside of Qt or Qt 5: "title | project version" if (title != project) titleSuffix = project; } else // default: "title | Qt version" titleSuffix = QLatin1String("Qt "); if (title == titleSuffix) titleSuffix.clear(); QString divider; if (!titleSuffix.isEmpty() && !title.isEmpty()) divider = QLatin1String(" | "); // Generating page title out() << " <title>" << protectEnc(title) << divider << titleSuffix; // append a full version to the suffix if neither suffix nor title // include (a prefix of) version information QVersionNumber projectVersion = QVersionNumber::fromString(qdb_->version()); if (!projectVersion.isNull()) { QVersionNumber titleVersion; QRegExp re("\\d+\\.\\d+"); const QString &versionedTitle = titleSuffix.isEmpty() ? title : titleSuffix; if (versionedTitle.contains(re)) titleVersion = QVersionNumber::fromString(re.cap()); if (titleVersion.isNull() || !titleVersion.isPrefixOf(projectVersion)) out() << QLatin1Char(' ') << projectVersion.toString(); } out() << "\n"; // Include style sheet and script links. out() << headerStyles; out() << headerScripts; if (endHeader.isEmpty()) out() << "\n\n"; else out() << endHeader; #ifdef GENERATE_MAC_REFS if (mainPage) generateMacRef(node, marker); #endif out() << QString(postHeader).replace("\\" + COMMAND_VERSION, qdb_->version()); bool usingTable = postHeader.trimmed().endsWith(QLatin1String("")); generateNavigationBar(title, node, marker, buildversion, usingTable); out() << QString(postPostHeader).replace("\\" + COMMAND_VERSION, qdb_->version()); navigationLinks.clear(); refMap.clear(); if (node && !node->links().empty()) { QPair linkPair; QPair anchorPair; const Node *linkNode; bool useSeparator = false; if (node->links().contains(Node::PreviousLink)) { linkPair = node->links()[Node::PreviousLink]; linkNode = qdb_->findNodeForTarget(linkPair.first, node); if (linkNode == nullptr) node->doc().location().warning(tr("Cannot link to '%1'").arg(linkPair.first)); if (linkNode == nullptr || linkNode == node) anchorPair = linkPair; else anchorPair = anchorForNode(linkNode); out() << " \n"; navigationLinks += ""; if (linkPair.first == linkPair.second && !anchorPair.second.isEmpty()) navigationLinks += protect(anchorPair.second); else navigationLinks += protect(linkPair.second); navigationLinks += "\n"; useSeparator = !navigationSeparator.isEmpty(); } if (node->links().contains(Node::NextLink)) { linkPair = node->links()[Node::NextLink]; linkNode = qdb_->findNodeForTarget(linkPair.first, node); if (linkNode == nullptr) node->doc().location().warning(tr("Cannot link to '%1'").arg(linkPair.first)); if (linkNode == nullptr || linkNode == node) anchorPair = linkPair; else anchorPair = anchorForNode(linkNode); out() << " \n"; if (useSeparator) navigationLinks += navigationSeparator; navigationLinks += ""; if (linkPair.first == linkPair.second && !anchorPair.second.isEmpty()) navigationLinks += protect(anchorPair.second); else navigationLinks += protect(linkPair.second); navigationLinks += "\n"; } if (node->links().contains(Node::StartLink)) { linkPair = node->links()[Node::StartLink]; linkNode = qdb_->findNodeForTarget(linkPair.first, node); if (linkNode == nullptr) node->doc().location().warning(tr("Cannot link to '%1'").arg(linkPair.first)); if (linkNode == nullptr || linkNode == node) anchorPair = linkPair; else anchorPair = anchorForNode(linkNode); out() << " \n"; } } if (node && !node->links().empty()) out() << "

    \n" << navigationLinks << "

    \n"; } void HtmlGenerator::generateTitle(const QString &title, const Text &subtitle, SubTitleSize subTitleSize, const Node *relative, CodeMarker *marker) { out() << QString(prologue).replace("\\" + COMMAND_VERSION, qdb_->version()); if (!title.isEmpty()) out() << "

    " << protectEnc(title) << "

    \n"; if (!subtitle.isEmpty()) { out() << ""; else out() << " class=\"subtitle\">"; generateText(subtitle, relative, marker); out() << "\n"; } } void HtmlGenerator::generateFooter(const Node *node) { if (node && !node->links().empty()) out() << "

    \n" << navigationLinks << "

    \n"; out() << QString(footer).replace("\\" + COMMAND_VERSION, qdb_->version()) << QString(address).replace("\\" + COMMAND_VERSION, qdb_->version()); out() << "\n"; out() << "\n"; } /*! Lists the required imports and includes in a table. The number of rows is known. */ void HtmlGenerator::generateRequisites(Aggregate *aggregate, CodeMarker *marker) { QMap requisites; Text text; const QString headerText = "Header"; const QString sinceText = "Since"; const QString inheritedBytext = "Inherited By"; const QString inheritsText = "Inherits"; const QString instantiatedByText = "Instantiated By"; const QString qtVariableText = "qmake"; // add the include files to the map if (!aggregate->includeFiles().isEmpty()) { text.clear(); text << highlightedCode( indent(codeIndent, marker->markedUpIncludes(aggregate->includeFiles())), aggregate); requisites.insert(headerText, text); } // The order of the requisites matter QStringList requisiteorder; requisiteorder << headerText << qtVariableText << sinceText << instantiatedByText << inheritsText << inheritedBytext; // add the since and project into the map if (!aggregate->since().isEmpty()) { text.clear(); text << formatSince(aggregate) << Atom::ParaRight; requisites.insert(sinceText, text); } if (aggregate->isClassNode() || aggregate->isNamespace()) { // add the QT variable to the map if (!aggregate->physicalModuleName().isEmpty()) { const CollectionNode *cn = qdb_->getCollectionNode(aggregate->physicalModuleName(), Node::Module); if (cn && !cn->qtVariable().isEmpty()) { text.clear(); text << "QT += " + cn->qtVariable(); requisites.insert(qtVariableText, text); } } } if (aggregate->isClassNode()) { ClassNode *classe = static_cast(aggregate); if (classe->qmlElement() != nullptr && !classe->isInternal()) { text.clear(); text << Atom(Atom::LinkNode, CodeMarker::stringForNode(classe->qmlElement())) << Atom(Atom::FormattingLeft, ATOM_FORMATTING_LINK) << Atom(Atom::String, classe->qmlElement()->name()) << Atom(Atom::FormattingRight, ATOM_FORMATTING_LINK); requisites.insert(instantiatedByText, text); } // add the inherits to the map if (!classe->baseClasses().isEmpty()) { int index = 0; text.clear(); const auto baseClasses = classe->baseClasses(); for (const auto &cls : baseClasses) { if (cls.node_) { appendFullName(text, cls.node_, classe); if (cls.access_ == Node::Protected) { text << " (protected)"; } else if (cls.access_ == Node::Private) { text << " (private)"; } text << comma(index++, classe->baseClasses().count()); } } text << Atom::ParaRight; if (index > 0) requisites.insert(inheritsText, text); } // add the inherited-by to the map if (!classe->derivedClasses().isEmpty()) { text.clear(); text << Atom::ParaLeft; int count = appendSortedNames(text, classe, classe->derivedClasses()); text << Atom::ParaRight; if (count > 0) requisites.insert(inheritedBytext, text); } } if (!requisites.isEmpty()) { // generate the table out() << "
    "; } else { out() << "
  • "; } // Link buildversion string to navigation.landingpage if (!landingpage.isEmpty() && landingtitle != title) { navigationbar << Atom(Atom::NavLink, landingpage) << Atom(Atom::FormattingLeft, ATOM_FORMATTING_LINK) << Atom(Atom::String, buildversion) << Atom(Atom::FormattingRight, ATOM_FORMATTING_LINK); generateText(navigationbar, node, marker); } else { out() << buildversion; } if (tableItems) out() << "
  • \n"; for (auto it = requisiteorder.constBegin(); it != requisiteorder.constEnd(); ++it) { if (requisites.contains(*it)) { out() << "" << ""; } } out() << "
    " << *it << ":" " "; if (*it == headerText) out() << requisites.value(*it).toString(); else generateText(requisites.value(*it), aggregate, marker); out() << "
    "; } } /*! Lists the required imports and includes in a table. The number of rows is known. */ void HtmlGenerator::generateQmlRequisites(QmlTypeNode *qcn, CodeMarker *marker) { if (qcn == nullptr) return; QMap requisites; Text text; const QString importText = "Import Statement:"; const QString sinceText = "Since:"; const QString inheritedBytext = "Inherited By:"; const QString inheritsText = "Inherits:"; const QString instantiatesText = "Instantiates:"; // add the module name and version to the map QString logicalModuleVersion; const CollectionNode *collection = qdb_->getCollectionNode(qcn->logicalModuleName(), qcn->nodeType()); if (collection != nullptr) logicalModuleVersion = collection->logicalModuleVersion(); else logicalModuleVersion = qcn->logicalModuleVersion(); if (logicalModuleVersion.isEmpty() || qcn->logicalModuleName().isEmpty()) qcn->doc().location().warning(tr("Could not resolve QML import " "statement for type '%1'") .arg(qcn->name()), tr("Maybe you forgot to use the " "'\\%1' command?") .arg(COMMAND_INQMLMODULE)); text.clear(); text << "import " + qcn->logicalModuleName() + QLatin1Char(' ') + logicalModuleVersion; requisites.insert(importText, text); // add the since and project into the map if (!qcn->since().isEmpty()) { text.clear(); text << formatSince(qcn) << Atom::ParaRight; requisites.insert(sinceText, text); } // add the instantiates to the map ClassNode *cn = qcn->classNode(); if (cn && !cn->isInternal()) { text.clear(); text << Atom(Atom::LinkNode, CodeMarker::stringForNode(qcn)); text << Atom(Atom::FormattingLeft, ATOM_FORMATTING_LINK); text << Atom(Atom::LinkNode, CodeMarker::stringForNode(cn)); text << Atom(Atom::FormattingLeft, ATOM_FORMATTING_LINK); text << Atom(Atom::String, cn->name()); text << Atom(Atom::FormattingRight, ATOM_FORMATTING_LINK); requisites.insert(instantiatesText, text); } // add the inherits to the map QmlTypeNode *base = qcn->qmlBaseNode(); while (base && base->isInternal()) { base = base->qmlBaseNode(); } if (base) { text.clear(); text << Atom::ParaLeft << Atom(Atom::LinkNode, CodeMarker::stringForNode(base)) << Atom(Atom::FormattingLeft, ATOM_FORMATTING_LINK) << Atom(Atom::String, base->name()) << Atom(Atom::FormattingRight, ATOM_FORMATTING_LINK) << Atom::ParaRight; requisites.insert(inheritsText, text); } // add the inherited-by to the map NodeList subs; QmlTypeNode::subclasses(qcn, subs); if (!subs.isEmpty()) { text.clear(); text << Atom::ParaLeft; int count = appendSortedQmlNames(text, qcn, subs); text << Atom::ParaRight; if (count > 0) requisites.insert(inheritedBytext, text); } // The order of the requisites matter const QStringList requisiteorder { importText, sinceText, instantiatesText, inheritsText, inheritedBytext }; if (!requisites.isEmpty()) { // generate the table out() << "
    \n"; for (const auto &requisite : requisiteorder) { if (requisites.contains(requisite)) { out() << "" << ""; } } out() << "
    " << requisite << " "; if (requisite == importText) out() << requisites.value(requisite).toString(); else generateText(requisites.value(requisite), qcn, marker); out() << "
    "; } } void HtmlGenerator::generateBrief(const Node *node, CodeMarker *marker, const Node *relative, bool addLink) { Text brief = node->doc().briefText(); if (!brief.isEmpty()) { if (!brief.lastAtom()->string().endsWith('.')) { brief << Atom(Atom::String, "."); node->doc().location().warning( tr("'\\brief' statement does not end with a full stop.")); } generateExtractionMark(node, BriefMark); out() << "

    "; generateText(brief, node, marker); if (addLink) { if (!relative || node == relative) out() << " More..."; } out() << "

    \n"; generateExtractionMark(node, EndMark); } } /*! Revised for the new doc format. Generates a table of contents beginning at \a node. */ void HtmlGenerator::generateTableOfContents(const Node *node, CodeMarker *marker, QVector
    *sections) { QVector toc; if (node->doc().hasTableOfContents()) toc = node->doc().tableOfContents(); if (tocDepth == 0 || (toc.isEmpty() && !sections && !node->isModule())) { generateSidebar(); return; } int sectionNumber = 1; int detailsBase = 0; // disable nested links in table of contents inContents_ = true; inLink_ = true; out() << "
    \n"; out() << "
    \n"; out() << "

    Contents

    \n"; out() << "
      \n"; if (node->isModule()) { if (node->hasNamespaces()) { out() << "
    • Namespaces
    • \n"; } if (node->hasClasses()) { out() << "
    • Classes
    • \n"; } out() << "
    • Detailed Description
    • \n"; for (int i = 0; i < toc.size(); ++i) { if (toc.at(i)->string().toInt() == 1) { detailsBase = 1; break; } } } else if (sections && (node->isClassNode() || node->isNamespace() || node->isQmlType() || node->isJsType())) { for (const auto §ion : qAsConst(*sections)) { if (!section.members().isEmpty()) { out() << "
    • " << section.title() << "
    • \n"; } if (!section.reimplementedMembers().isEmpty()) { QString ref = QString("Reimplemented ") + section.plural(); out() << "
    • " << QString("Reimplemented ") + section.title() << "
    • \n"; } } if (!node->isNamespace() || node->hasDoc()) { out() << "
    • Detailed Description
    • \n"; } for (int i = 0; i < toc.size(); ++i) { if (toc.at(i)->string().toInt() == 1) { detailsBase = 1; break; } } } for (const auto &atom : toc) { sectionNumber = atom->string().toInt() + detailsBase; // restrict the ToC depth to the one set by the HTML.tocdepth variable or // print all levels if tocDepth is not set. if (sectionNumber <= tocDepth || tocDepth < 0) { int numAtoms; Text headingText = Text::sectionHeading(atom); QString s = headingText.toString(); out() << "
    • "; out() << ""; generateAtomList(headingText.firstAtom(), node, marker, true, numAtoms); out() << "
    • \n"; } } out() << "
    \n"; out() << "
    \n"; out() << "
    "; out() << "
    \n"; inContents_ = false; inLink_ = false; } /*! Outputs a placeholder div where the style can add customized sidebar content. */ void HtmlGenerator::generateSidebar() { out() << "
    "; out() << "
    "; out() << "
    \n"; } QString HtmlGenerator::generateAllMembersFile(const Section §ion, CodeMarker *marker) { if (section.isEmpty()) return QString(); const Aggregate *aggregate = section.aggregate(); QString fileName = fileBase(aggregate) + "-members." + fileExtension(); beginSubPage(aggregate, fileName); QString title = "List of All Members for " + aggregate->name(); generateHeader(title, aggregate, marker); generateSidebar(); generateTitle(title, Text(), SmallSubTitle, aggregate, marker); out() << "

    This is the complete list of members for "; generateFullName(aggregate, nullptr); out() << ", including inherited members.

    \n"; generateSectionList(section, aggregate, marker); generateFooter(); endSubPage(); return fileName; } /*! This function creates an html page on which are listed all the members of the QML class used to generte the \a sections, including the inherited members. The \a marker is used for formatting stuff. */ QString HtmlGenerator::generateAllQmlMembersFile(const Sections §ions, CodeMarker *marker) { if (sections.allMembersSection().isEmpty()) return QString(); const Aggregate *aggregate = sections.aggregate(); QString fileName = fileBase(aggregate) + "-members." + fileExtension(); beginSubPage(aggregate, fileName); QString title = "List of All Members for " + aggregate->name(); generateHeader(title, aggregate, marker); generateSidebar(); generateTitle(title, Text(), SmallSubTitle, aggregate, marker); out() << "

    This is the complete list of members for "; generateFullName(aggregate, nullptr); out() << ", including inherited members.

    \n"; ClassKeysNodesList &cknl = sections.allMembersSection().classKeysNodesList(); if (!cknl.isEmpty()) { for (int i = 0; i < cknl.size(); i++) { ClassKeysNodes *ckn = cknl[i]; const QmlTypeNode *qcn = ckn->first; KeysAndNodes &kn = ckn->second; QStringList &keys = kn.first; NodeVector &nodes = kn.second; if (nodes.isEmpty()) continue; if (i != 0) { out() << "

    The following members are inherited from "; generateFullName(qcn, nullptr); out() << ".

    \n"; } out() << "
      \n"; for (int j = 0; j < keys.size(); j++) { Node *node = nodes[j]; if (node->access() == Node::Private || node->isInternal()) continue; if (node->isSharingComment() && node->sharedCommentNode()->isPropertyGroup()) continue; std::function generate = [&](Node *n) { out() << "
    • "; generateQmlItem(n, aggregate, marker, true); if (n->isDefault()) out() << " [default]"; else if (n->isAttached()) out() << " [attached]"; // Indent property group members if (n->isPropertyGroup()) { out() << "
        \n"; const QVector &collective = static_cast(n)->collective(); std::for_each(collective.begin(), collective.end(), generate); out() << "
      \n"; } out() << "
    • \n"; }; generate(node); } out() << "
    \n"; } } generateFooter(); endSubPage(); return fileName; } QString HtmlGenerator::generateObsoleteMembersFile(const Sections §ions, CodeMarker *marker) { SectionPtrVector summary_spv; SectionPtrVector details_spv; if (!sections.hasObsoleteMembers(&summary_spv, &details_spv)) return QString(); Aggregate *aggregate = sections.aggregate(); QString title = "Obsolete Members for " + aggregate->name(); QString fileName = fileBase(aggregate) + "-obsolete." + fileExtension(); QString link; if (useOutputSubdirs() && !Generator::outputSubdir().isEmpty()) link = QString("../" + Generator::outputSubdir() + QLatin1Char('/')); link += fileName; aggregate->setObsoleteLink(link); beginSubPage(aggregate, fileName); generateHeader(title, aggregate, marker); generateSidebar(); generateTitle(title, Text(), SmallSubTitle, aggregate, marker); out() << "

    The following members of class " << "" << protectEnc(aggregate->name()) << "" << " are obsolete. " << "They are provided to keep old source code working. " << "We strongly advise against using them in new code.

    \n"; for (const auto §ion : summary_spv) { out() << "

    " << protectEnc(section->title()) << "

    \n"; generateSectionList(*section, aggregate, marker, Section::Obsolete); } for (const auto §ion : details_spv) { out() << "

    " << protectEnc(section->title()) << "

    \n"; const NodeVector &members = section->obsoleteMembers(); for (const auto &member : members) { if (member->access() != Node::Private) generateDetailedMember(member, aggregate, marker); } } generateFooter(); endSubPage(); return fileName; } /*! Generates a separate file where obsolete members of the QML type \a qcn are listed. The \a marker is used to generate the section lists, which are then traversed and output here. Note that this function currently only handles correctly the case where \a status is \c {Section::Obsolete}. */ QString HtmlGenerator::generateObsoleteQmlMembersFile(const Sections §ions, CodeMarker *marker) { SectionPtrVector summary_spv; SectionPtrVector details_spv; if (!sections.hasObsoleteMembers(&summary_spv, &details_spv)) return QString(); Aggregate *aggregate = sections.aggregate(); QString title = "Obsolete Members for " + aggregate->name(); QString fileName = fileBase(aggregate) + "-obsolete." + fileExtension(); QString link; if (useOutputSubdirs() && !Generator::outputSubdir().isEmpty()) link = QString("../" + Generator::outputSubdir() + QLatin1Char('/')); link += fileName; aggregate->setObsoleteLink(link); beginSubPage(aggregate, fileName); generateHeader(title, aggregate, marker); generateSidebar(); generateTitle(title, Text(), SmallSubTitle, aggregate, marker); out() << "

    The following members of QML type " << "" << protectEnc(aggregate->name()) << "" << " are obsolete. " << "They are provided to keep old source code working. " << "We strongly advise against using them in new code.

    \n"; for (const auto §ion : summary_spv) { QString ref = registerRef(section->title().toLower()); out() << "" << divNavTop << '\n'; out() << "

    " << protectEnc(section->title()) << "

    \n"; generateQmlSummary(section->obsoleteMembers(), aggregate, marker); } for (const auto §ion : details_spv) { out() << "

    " << protectEnc(section->title()) << "

    \n"; const NodeVector &members = section->obsoleteMembers(); for (const auto &member : members) { generateDetailedQmlMember(member, aggregate, marker); out() << "
    \n"; } } generateFooter(); endSubPage(); return fileName; } void HtmlGenerator::generateClassHierarchy(const Node *relative, NodeMap &classMap) { if (classMap.isEmpty()) return; NodeMap topLevel; for (auto it = classMap.begin(); it != classMap.end(); ++it) { ClassNode *classe = static_cast(*it); if (classe->baseClasses().isEmpty()) topLevel.insert(classe->name(), classe); } QStack stack; stack.push(topLevel); out() << "
      \n"; while (!stack.isEmpty()) { if (stack.top().isEmpty()) { stack.pop(); out() << "
    \n"; } else { ClassNode *child = static_cast(*stack.top().begin()); out() << "
  • "; generateFullName(child, relative); out() << "
  • \n"; stack.top().erase(stack.top().begin()); NodeMap newTop; const auto derivedClasses = child->derivedClasses(); for (const RelatedClass &d : derivedClasses) { if (d.node_ && d.node_->isInAPI()) newTop.insert(d.node_->name(), d.node_); } if (!newTop.isEmpty()) { stack.push(newTop); out() << "
      \n"; } } } } /*! Output an annotated list of the nodes in \a nodeMap. A two-column table is output. */ void HtmlGenerator::generateAnnotatedList(const Node *relative, CodeMarker *marker, const NodeMultiMap &nmm) { if (nmm.isEmpty() || relative == nullptr) return; generateAnnotatedList(relative, marker, nmm.values()); } /*! */ void HtmlGenerator::generateAnnotatedList(const Node *relative, CodeMarker *marker, const NodeList &unsortedNodes) { NodeMultiMap nmm; bool allInternal = true; for (auto *node : unsortedNodes) { if (!node->isInternal() && !node->isObsolete()) { allInternal = false; nmm.insert(node->fullName(relative), node); } } if (allInternal) return; out() << "
      \n"; int row = 0; NodeList nodes = nmm.values(); std::sort(nodes.begin(), nodes.end(), Node::nodeNameLessThan); for (const auto *node : qAsConst(nodes)) { if (++row % 2 == 1) out() << ""; else out() << ""; out() << ""; if (!node->isTextPageNode()) { Text brief = node->doc().trimmedBriefText(node->name()); if (!brief.isEmpty()) { out() << ""; } else if (!node->reconstitutedBrief().isEmpty()) { out() << ""; } } else { out() << ""; } out() << "\n"; } out() << "

      "; generateFullName(node, relative); out() << "

      "; generateText(brief, node, marker); out() << "

      "; out() << node->reconstitutedBrief(); out() << "

      "; if (!node->reconstitutedBrief().isEmpty()) { out() << node->reconstitutedBrief(); } else out() << protectEnc(node->doc().briefText().toString()); out() << "

      \n"; } /*! Outputs a series of annotated lists from the nodes in \a nmm, divided into sections based by the key names in the multimap. */ void HtmlGenerator::generateAnnotatedLists(const Node *relative, CodeMarker *marker, const NodeMultiMap &nmm) { const auto &uniqueKeys = nmm.uniqueKeys(); for (const QString &name : uniqueKeys) { if (!name.isEmpty()) { out() << "

      " << protectEnc(name) << "

      \n"; } generateAnnotatedList(relative, marker, nmm.values(name)); } } /*! This function finds the common prefix of the names of all the classes in the class map \a nmm and then generates a compact list of the class names alphabetized on the part of the name not including the common prefix. You can tell the function to use \a commonPrefix as the common prefix, but normally you let it figure it out itself by looking at the name of the first and last classes in the class map \a nmm. */ void HtmlGenerator::generateCompactList(ListType listType, const Node *relative, const NodeMultiMap &nmm, bool includeAlphabet, QString commonPrefix) { if (nmm.isEmpty()) return; const int NumParagraphs = 37; // '0' to '9', 'A' to 'Z', '_' int commonPrefixLen = commonPrefix.length(); /* Divide the data into 37 paragraphs: 0, ..., 9, A, ..., Z, underscore (_). QAccel will fall in paragraph 10 (A) and QXtWidget in paragraph 33 (X). This is the only place where we assume that NumParagraphs is 37. Each paragraph is a NodeMultiMap. */ NodeMultiMap paragraph[NumParagraphs + 1]; QString paragraphName[NumParagraphs + 1]; QSet usedParagraphNames; for (auto c = nmm.constBegin(); c != nmm.constEnd(); ++c) { QStringList pieces = c.key().split("::"); int idx = commonPrefixLen; if (idx > 0 && !pieces.last().startsWith(commonPrefix, Qt::CaseInsensitive)) idx = 0; QString last = pieces.last().toLower(); QString key = last.mid(idx); int paragraphNr = NumParagraphs - 1; if (key[0].digitValue() != -1) { paragraphNr = key[0].digitValue(); } else if (key[0] >= QLatin1Char('a') && key[0] <= QLatin1Char('z')) { paragraphNr = 10 + key[0].unicode() - 'a'; } paragraphName[paragraphNr] = key[0].toUpper(); usedParagraphNames.insert(key[0].toLower().cell()); paragraph[paragraphNr].insert(last, c.value()); } /* Each paragraph j has a size: paragraph[j].count(). In the discussion, we will assume paragraphs 0 to 5 will have sizes 3, 1, 4, 1, 5, 9. We now want to compute the paragraph offset. Paragraphs 0 to 6 start at offsets 0, 3, 4, 8, 9, 14, 23. */ int paragraphOffset[NumParagraphs + 1]; // 37 + 1 paragraphOffset[0] = 0; for (int i = 0; i < NumParagraphs; i++) // i = 0..36 paragraphOffset[i + 1] = paragraphOffset[i] + paragraph[i].count(); /* Output the alphabet as a row of links. */ if (includeAlphabet) { out() << "

      "; for (int i = 0; i < 26; i++) { QChar ch('a' + i); if (usedParagraphNames.contains(char('a' + i))) out() << QString("%2 ").arg(ch).arg(ch.toUpper()); } out() << "

      \n"; } /* Output a
      element to contain all the
      elements. */ out() << "
      \n"; numTableRows_ = 0; int curParNr = 0; int curParOffset = 0; QString previousName; bool multipleOccurrences = false; for (int i = 0; i < nmm.count(); i++) { while ((curParNr < NumParagraphs) && (curParOffset == paragraph[curParNr].count())) { ++curParNr; curParOffset = 0; } /* Starting a new paragraph means starting a new
      . */ if (curParOffset == 0) { if (i > 0) out() << "
      \n"; if (++numTableRows_ % 2 == 1) out() << "
      "; else out() << "
      "; out() << "
      "; if (includeAlphabet) { QChar c = paragraphName[curParNr][0].toLower(); out() << QString("").arg(c); } out() << "" << paragraphName[curParNr] << ""; out() << "
      \n"; } /* Output a
      for the current offset in the current paragraph. */ out() << "
      "; if ((curParNr < NumParagraphs) && !paragraphName[curParNr].isEmpty()) { NodeMultiMap::Iterator it; NodeMultiMap::Iterator next; it = paragraph[curParNr].begin(); for (int i = 0; i < curParOffset; i++) ++it; if (listType == Generic) { /* Previously, we used generateFullName() for this, but we require some special formatting. */ out() << ""; } else if (listType == Obsolete) { QString fileName = fileBase(it.value()) + "-obsolete." + fileExtension(); QString link; if (useOutputSubdirs()) { link = QString("../" + it.value()->outputSubdirectory() + QLatin1Char('/')); } link += fileName; out() << ""; } QStringList pieces; if (it.value()->isQmlType() || it.value()->isJsType()) { QString name = it.value()->name(); next = it; ++next; if (name != previousName) multipleOccurrences = false; if ((next != paragraph[curParNr].end()) && (name == next.value()->name())) { multipleOccurrences = true; previousName = name; } if (multipleOccurrences) name += ": " + it.value()->tree()->camelCaseModuleName(); pieces << name; } else pieces = it.value()->fullName(relative).split("::"); out() << protectEnc(pieces.last()); out() << ""; if (pieces.size() > 1) { out() << " ("; generateFullName(it.value()->parent(), relative); out() << ')'; } } out() << "
      \n"; curParOffset++; } if (nmm.count() > 0) out() << "
      \n"; out() << "
      \n"; } void HtmlGenerator::generateFunctionIndex(const Node *relative) { out() << "

      "; for (int i = 0; i < 26; i++) { QChar ch('a' + i); out() << QString("%2 ").arg(ch).arg(ch.toUpper()); } out() << "

      \n"; char nextLetter = 'a'; char currentLetter; out() << "
        \n"; NodeMapMap &funcIndex = qdb_->getFunctionIndex(); for (auto fnMap = funcIndex.constBegin(); fnMap != funcIndex.constEnd(); ++fnMap) { out() << "
      • "; out() << protectEnc(fnMap.key()) << ':'; currentLetter = fnMap.key()[0].unicode(); while (islower(currentLetter) && currentLetter >= nextLetter) { out() << QString("").arg(nextLetter); nextLetter++; } for (auto it = (*fnMap).constBegin(); it != (*fnMap).constEnd(); ++it) { out() << ' '; generateFullName((*it)->parent(), relative, *it); } out() << "
      • "; out() << '\n'; } out() << "
      \n"; } void HtmlGenerator::generateLegaleseList(const Node *relative, CodeMarker *marker) { TextToNodeMap &legaleseTexts = qdb_->getLegaleseTexts(); QMap::ConstIterator it = legaleseTexts.constBegin(); while (it != legaleseTexts.constEnd()) { Text text = it.key(); generateText(text, relative, marker); out() << "
        \n"; do { out() << "
      • "; generateFullName(it.value(), relative); out() << "
      • \n"; ++it; } while (it != legaleseTexts.constEnd() && it.key() == text); out() << "
      \n"; } } void HtmlGenerator::generateQmlItem(const Node *node, const Node *relative, CodeMarker *marker, bool summary) { QString marked = marker->markedUpQmlItem(node, summary); QRegExp templateTag("(<[^@>]*>)"); if (marked.indexOf(templateTag) != -1) { QString contents = protectEnc(marked.mid(templateTag.pos(1), templateTag.cap(1).length())); marked.replace(templateTag.pos(1), templateTag.cap(1).length(), contents); } // Look for the _ character in the member name followed by a number (or n): // this is intended to be rendered as a subscript. marked.replace(QRegExp("<@param>([a-z]+)_([0-9]+|n)"), "\\1\\2"); // Replace some markup by HTML tags. Do both the opening and the closing tag // in one go (instead of <@param> and separately, for instance). marked.replace("@param>", "i>"); if (summary) marked.replace("@name>", "b>"); marked.replace("@extra>", "code>"); if (summary) { marked.remove("<@type>"); marked.remove(""); } out() << highlightedCode(marked, relative, false, Node::QML); } /*! This function generates a simple bullet list for the members of collection node \a {cn}. The collection node must be a group and must not be empty. If it is empty, nothing is output, and false is returned. Otherewise, the list is generated and true is returned. */ bool HtmlGenerator::generateGroupList(CollectionNode *cn) { qdb_->mergeCollections(cn); if (cn->members().isEmpty()) return false; out() << "\n"; return true; } void HtmlGenerator::generateList(const Node *relative, CodeMarker *marker, const QString &selector) { CNMap cnm; Node::NodeType type = Node::NoType; if (selector == QLatin1String("overviews")) type = Node::Group; else if (selector == QLatin1String("cpp-modules")) type = Node::Module; else if (selector == QLatin1String("qml-modules")) type = Node::QmlModule; else if (selector == QLatin1String("js-modules")) type = Node::JsModule; if (type != Node::NoType) { NodeList nodeList; qdb_->mergeCollections(type, cnm, relative); const auto collectionList = cnm.values(); nodeList.reserve(collectionList.size()); for (auto *collectionNode : collectionList) nodeList.append(collectionNode); generateAnnotatedList(relative, marker, nodeList); } else { /* \generatelist {selector} is only allowed in a comment where the topic is \group, \module, \qmlmodule, or \jsmodule */ if (relative && !relative->isCollectionNode()) { relative->doc().location().warning(tr("\\generatelist {%1} is only allowed in \\group, " "\\module, \\qmlmodule, and \\jsmodule comments.") .arg(selector)); return; } Node *n = const_cast(relative); CollectionNode *cn = static_cast(n); qdb_->mergeCollections(cn); generateAnnotatedList(cn, marker, cn->members()); } } void HtmlGenerator::generateSection(const NodeVector &nv, const Node *relative, CodeMarker *marker) { bool alignNames = true; if (!nv.isEmpty()) { bool twoColumn = false; if (nv.first()->isProperty()) { twoColumn = (nv.count() >= 5); alignNames = false; } if (alignNames) { out() << "
      \n"; } else { if (twoColumn) out() << "
      \n" << "\n"; else out() << "\n"; i++; } if (alignNames) out() << "
      "; out() << "
        \n"; } int i = 0; for (const auto &member : nv) { if (member->access() == Node::Private) continue; if (alignNames) { out() << "
      "; } else { if (twoColumn && i == (nv.count() + 1) / 2) out() << "
        \n"; out() << "
      • "; } generateSynopsis(member, relative, marker, Section::Summary, alignNames); if (alignNames) out() << "
      \n"; else { out() << "
    \n"; if (twoColumn) out() << "\n\n"; } } } void HtmlGenerator::generateSectionList(const Section §ion, const Node *relative, CodeMarker *marker, Section::Status status) { bool alignNames = true; const NodeVector &members = (status == Section::Obsolete ? section.obsoleteMembers() : section.members()); if (!members.isEmpty()) { bool hasPrivateSignals = false; bool isInvokable = false; bool twoColumn = false; if (section.style() == Section::AllMembers) { alignNames = false; twoColumn = (members.count() >= 16); } else if (members.first()->isProperty()) { twoColumn = (members.count() >= 5); alignNames = false; } if (alignNames) { out() << "
    \n"; } else { if (twoColumn) out() << "
    \n" << "\n"; else out() << "\n"; i++; } if (alignNames) out() << "
    "; out() << "
      \n"; } int i = 0; for (const auto &member : members) { if (member->access() == Node::Private) continue; if (alignNames) { out() << "
    "; } else { if (twoColumn && i == (members.count() + 1) / 2) out() << "
      \n"; out() << "
    • "; } QString prefix; const QStringList &keys = section.keys(status); if (!keys.isEmpty()) { prefix = keys.at(i).mid(1); prefix = prefix.left(keys.at(i).indexOf("::") + 1); } generateSynopsis(member, relative, marker, section.style(), alignNames, &prefix); if (member->isFunction()) { const FunctionNode *fn = static_cast(member); if (fn->isPrivateSignal()) { hasPrivateSignals = true; if (alignNames) out() << "
    [see note below]"; } else if (fn->isInvokable()) { isInvokable = true; if (alignNames) out() << "[see note below]"; } } if (alignNames) out() << "
    \n"; else { out() << "
\n"; if (twoColumn) out() << "\n\n"; } if (hasPrivateSignals && alignNames) generatePrivateSignalNote(relative, marker); if (isInvokable && alignNames) generateInvokableNote(relative, marker); } if (status != Section::Obsolete && section.style() == Section::Summary && !section.inheritedMembers().isEmpty()) { out() << "
    \n"; generateSectionInheritedList(section, relative); out() << "
\n"; } } void HtmlGenerator::generateSectionInheritedList(const Section §ion, const Node *relative) { const QVector> &inheritedMembers = section.inheritedMembers(); for (const auto &member : inheritedMembers) { out() << "
  • "; out() << member.second << ' '; if (member.second == 1) { out() << section.singular(); } else { out() << section.plural(); } out() << " inherited from " << protectEnc(member.first->plainFullName(relative)) << "
  • \n"; } } void HtmlGenerator::generateSynopsis(const Node *node, const Node *relative, CodeMarker *marker, Section::Style style, bool alignNames, const QString *prefix) { QString marked = marker->markedUpSynopsis(node, relative, style); if (prefix) marked.prepend(*prefix); QRegExp templateTag("(<[^@>]*>)"); if (marked.indexOf(templateTag) != -1) { QString contents = protectEnc(marked.mid(templateTag.pos(1), templateTag.cap(1).length())); marked.replace(templateTag.pos(1), templateTag.cap(1).length(), contents); } marked.replace(QRegExp("<@param>([a-z]+)_([1-9n])"), "\\1\\2"); marked.replace("<@param>", ""); marked.replace("", ""); if (style == Section::Summary) { marked.remove("<@name>"); // was "" marked.remove(""); // was "" } if (style == Section::AllMembers) { QRegExp extraRegExp("<@extra>.*"); extraRegExp.setMinimal(true); marked.remove(extraRegExp); } else { marked.replace("<@extra>", ""); marked.replace("", ""); } if (style != Section::Details) { marked.remove("<@type>"); marked.remove(""); } out() << highlightedCode(marked, relative, alignNames); } QString HtmlGenerator::highlightedCode(const QString &markedCode, const Node *relative, bool alignNames, Node::Genus genus) { QString src = markedCode; QString html; html.reserve(src.size()); QStringRef arg; QStringRef par1; const QChar charLangle = '<'; const QChar charAt = '@'; static const QString typeTag("type"); static const QString headerTag("headerfile"); static const QString funcTag("func"); static const QString linkTag("link"); // replace all <@link> tags: "(<@link node=\"([^\"]+)\">).*()" // replace all <@func> tags: "(<@func target=\"([^\"]*)\">)(.*)()" // replace all "(<@(type|headerfile)(?: +[^>]*)?>)(.*)()" tags bool done = false; for (int i = 0, srcSize = src.size(); i < srcSize;) { if (src.at(i) == charLangle && src.at(i + 1) == charAt) { if (alignNames && !done) { html += QLatin1String(""); done = true; } i += 2; if (parseArg(src, linkTag, &i, srcSize, &arg, &par1)) { html += QLatin1String(""); const Node *n = CodeMarker::nodeForString(par1.toString()); QString link = linkForNode(n, relative); addLink(link, arg, &html); html += QLatin1String(""); } else if (parseArg(src, funcTag, &i, srcSize, &arg, &par1)) { const FunctionNode *fn = qdb_->findFunctionNode(par1.toString(), relative, genus); QString link = linkForNode(fn, relative); addLink(link, arg, &html); par1 = QStringRef(); } else if (parseArg(src, typeTag, &i, srcSize, &arg, &par1)) { par1 = QStringRef(); const Node *n = qdb_->findTypeNode(arg.toString(), relative, genus); html += QLatin1String(""); if (n && (n->isQmlBasicType() || n->isJsBasicType())) { if (relative && (relative->genus() == n->genus() || genus == n->genus())) addLink(linkForNode(n, relative), arg, &html); else html += arg; } else addLink(linkForNode(n, relative), arg, &html); html += QLatin1String(""); } else if (parseArg(src, headerTag, &i, srcSize, &arg, &par1)) { par1 = QStringRef(); if (arg.startsWith(QLatin1Char('&'))) html += arg; else { const Node *n = qdb_->findNodeForInclude(QStringList(arg.toString())); if (n && n != relative) addLink(linkForNode(n, relative), arg, &html); else html += arg; } } else { html += charLangle; html += charAt; } } else { html += src.at(i++); } } // replace all // "<@comment>" -> ""; // "<@preprocessor>" -> ""; // "<@string>" -> ""; // "<@char>" -> ""; // "<@number>" -> ""; // "<@op>" -> ""; // "<@type>" -> ""; // "<@name>" -> ""; // "<@keyword>" -> ""; // "" -> "" src = html; html = QString(); html.reserve(src.size()); static const QLatin1String spanTags[] = { QLatin1String("comment>"), QLatin1String(""), QLatin1String("preprocessor>"), QLatin1String(""), QLatin1String("string>"), QLatin1String(""), QLatin1String("char>"), QLatin1String(""), QLatin1String("number>"), QLatin1String(""), QLatin1String("op>"), QLatin1String(""), QLatin1String("type>"), QLatin1String(""), QLatin1String("name>"), QLatin1String(""), QLatin1String("keyword>"), QLatin1String("") }; int nTags = 9; // Update the upper bound of k in the following code to match the length // of the above array. for (int i = 0, n = src.size(); i < n;) { if (src.at(i) == QLatin1Char('<')) { if (src.at(i + 1) == QLatin1Char('@')) { i += 2; bool handled = false; for (int k = 0; k != nTags; ++k) { const QLatin1String &tag = spanTags[2 * k]; if (i + tag.size() <= src.length() && tag == QStringRef(&src, i, tag.size())) { html += spanTags[2 * k + 1]; i += tag.size(); handled = true; break; } } if (!handled) { // drop 'our' unknown tags (the ones still containing '@') while (i < n && src.at(i) != QLatin1Char('>')) ++i; ++i; } continue; } else if (src.at(i + 1) == QLatin1Char('/') && src.at(i + 2) == QLatin1Char('@')) { i += 3; bool handled = false; for (int k = 0; k != nTags; ++k) { const QLatin1String &tag = spanTags[2 * k]; if (i + tag.size() <= src.length() && tag == QStringRef(&src, i, tag.size())) { html += QLatin1String(""); i += tag.size(); handled = true; break; } } if (!handled) { // drop 'our' unknown tags (the ones still containing '@') while (i < n && src.at(i) != QLatin1Char('>')) ++i; ++i; } continue; } } html += src.at(i); ++i; } return html; } void HtmlGenerator::generateLink(const Atom *atom, CodeMarker *marker) { static QRegExp camelCase("[A-Z][A-Z][a-z]|[a-z][A-Z0-9]|_"); if (funcLeftParen.indexIn(atom->string()) != -1 && marker->recognizeLanguage("Cpp")) { // hack for C++: move () outside of link int k = funcLeftParen.pos(1); out() << protectEnc(atom->string().left(k)); if (link_.isEmpty()) { if (showBrokenLinks) out() << ""; } else { out() << ""; } inLink_ = false; out() << protectEnc(atom->string().mid(k)); } else { out() << protectEnc(atom->string()); } } QString HtmlGenerator::protectEnc(const QString &string) { #ifndef QT_NO_TEXTCODEC return protect(string, outputEncoding); #else return protect(string); #endif } QString HtmlGenerator::protect(const QString &string, const QString &outputEncoding) { #define APPEND(x) \ if (html.isEmpty()) { \ html = string; \ html.truncate(i); \ } \ html += (x); QString html; int n = string.length(); for (int i = 0; i < n; ++i) { QChar ch = string.at(i); if (ch == QLatin1Char('&')) { APPEND("&"); } else if (ch == QLatin1Char('<')) { APPEND("<"); } else if (ch == QLatin1Char('>')) { APPEND(">"); } else if (ch == QLatin1Char('"')) { APPEND("""); } else if ((outputEncoding == QLatin1String("ISO-8859-1") && ch.unicode() > 0x007F) || (ch == QLatin1Char('*') && i + 1 < n && string.at(i) == QLatin1Char('/')) || (ch == QLatin1Char('.') && i > 2 && string.at(i - 2) == QLatin1Char('.'))) { // we escape '*/' and the last dot in 'e.g.' and 'i.e.' for the Javadoc generator APPEND("&#x"); html += QString::number(ch.unicode(), 16); html += QLatin1Char(';'); } else { if (!html.isEmpty()) html += ch; } } if (!html.isEmpty()) return html; return string; #undef APPEND } QString HtmlGenerator::fileBase(const Node *node) const { QString result = Generator::fileBase(node); if (!node->isAggregate() && node->isObsolete()) result += QLatin1String("-obsolete"); return result; } QString HtmlGenerator::fileName(const Node *node) { if (node->isExternalPage()) return node->name(); return Generator::fileName(node); } void HtmlGenerator::generateFullName(const Node *apparentNode, const Node *relative, const Node *actualNode) { if (actualNode == nullptr) actualNode = apparentNode; out() << "isObsolete()) out() << "\" class=\"obsolete"; out() << "\">"; out() << protectEnc(apparentNode->fullName(relative)); out() << ""; } void HtmlGenerator::generateDetailedMember(const Node *node, const PageNode *relative, CodeMarker *marker) { const EnumNode *etn; #ifdef GENERATE_MAC_REFS generateMacRef(node, marker); #endif generateExtractionMark(node, MemberMark); generateKeywordAnchors(node); QString nodeRef = nullptr; if (node->isSharedCommentNode()) { const SharedCommentNode *scn = reinterpret_cast(node); const QVector &collective = scn->collective(); if (collective.size() > 1) out() << "
    \n"; for (const auto *node : collective) { nodeRef = refForNode(node); out() << "

    "; out() << ""; generateSynopsis(node, relative, marker, Section::Details); out() << "

    "; } if (collective.size() > 1) out() << "
    "; out() << divNavTop << '\n'; } else { nodeRef = refForNode(node); if (node->isEnumType() && (etn = static_cast(node))->flagsType()) { #ifdef GENERATE_MAC_REFS generateMacRef(etn->flagsType(), marker); #endif out() << "

    "; out() << ""; generateSynopsis(etn, relative, marker, Section::Details); out() << "
    "; generateSynopsis(etn->flagsType(), relative, marker, Section::Details); out() << "

    \n"; } else { out() << "

    "; out() << ""; generateSynopsis(node, relative, marker, Section::Details); out() << "

    " << divNavTop << '\n'; } } generateStatus(node, marker); generateBody(node, marker); generateOverloadedSignal(node, marker); generateThreadSafeness(node, marker); generateSince(node, marker); if (node->isProperty()) { const auto property = static_cast(node); Section section(Section::Accessors, Section::Active); section.appendMembers(property->getters().toVector()); section.appendMembers(property->setters().toVector()); section.appendMembers(property->resetters().toVector()); if (!section.members().isEmpty()) { out() << "

    Access functions:

    \n"; generateSectionList(section, node, marker); } Section notifiers(Section::Accessors, Section::Active); notifiers.appendMembers(property->notifiers().toVector()); if (!notifiers.members().isEmpty()) { out() << "

    Notifier signal:

    \n"; generateSectionList(notifiers, node, marker); } } else if (node->isFunction()) { const FunctionNode *fn = static_cast(node); if (fn->isPrivateSignal()) generatePrivateSignalNote(node, marker); if (fn->isInvokable()) generateInvokableNote(node, marker); generateAssociatedPropertyNotes(const_cast(fn)); } else if (node->isEnumType()) { const EnumNode *etn = static_cast(node); if (etn->flagsType()) { out() << "

    The " << protectEnc(etn->flagsType()->name()) << " type is a typedef for " << "QFlags<" << protectEnc(etn->name()) << ">. It stores an OR combination of " << protectEnc(etn->name()) << " values.

    \n"; } } generateAlsoList(node, marker); generateExtractionMark(node, EndMark); } #ifdef GENERATE_MAC_REFS /* No longer valid. */ void HtmlGenerator::generateMacRef(const Node *node, CodeMarker *marker) { if (!pleaseGenerateMacRef || marker == 0) return; const QStringList macRefs = marker->macRefsForNode(node); for (const auto &macRef : macRefs) out() << "\n"; } #endif /*! This version of the function is called when outputting the link to an example file or example image, where the \a link is known to be correct. */ void HtmlGenerator::beginLink(const QString &link) { link_ = link; if (link_.isEmpty()) { if (showBrokenLinks) out() << ""; } out() << ""; inLink_ = true; } void HtmlGenerator::beginLink(const QString &link, const Node *node, const Node *relative) { link_ = link; if (link_.isEmpty()) { if (showBrokenLinks) out() << ""; } else if (node == nullptr || (relative != nullptr && node->status() == relative->status())) out() << ""; else if (node->isObsolete()) out() << ""; else out() << ""; inLink_ = true; } void HtmlGenerator::endLink() { if (inLink_) { if (link_.isEmpty()) { if (showBrokenLinks) out() << ""; } else { if (inObsoleteLink) { out() << "(obsolete)"; } out() << ""; } } inLink_ = false; inObsoleteLink = false; } /*! Generates the summary list for the \a members. Only used for sections of QML element documentation. */ void HtmlGenerator::generateQmlSummary(const NodeVector &members, const Node *relative, CodeMarker *marker) { if (!members.isEmpty()) { out() << "
      \n"; for (const auto &member : members) { out() << "
    • "; generateQmlItem(member, relative, marker, true); if (member->isPropertyGroup()) { const SharedCommentNode *scn = static_cast(member); if (scn->count() > 0) { out() << "
        \n"; const QVector sharedNodes = scn->collective(); for (const auto &node : sharedNodes) { if (node->isQmlProperty() || node->isJsProperty()) { out() << "
      • "; generateQmlItem(node, relative, marker, true); out() << "
      • \n"; } } out() << "
      \n"; } } out() << "
    • \n"; } out() << "
    \n"; } } /*! Outputs the html detailed documentation for a section on a QML element reference page. */ void HtmlGenerator::generateDetailedQmlMember(Node *node, const Aggregate *relative, CodeMarker *marker) { #ifdef GENERATE_MAC_REFS generateMacRef(node, marker); #endif generateExtractionMark(node, MemberMark); generateKeywordAnchors(node); QString qmlItemHeader("
    \n" "
    \n"); QString qmlItemStart("\n" "\n"); QString qmlItemFooter("

    \n"); QString qmlItemEnd("

    \n"); std::function generateQmlProperty = [&](QmlPropertyNode *n) { out() << qmlItemStart.arg(refForNode(n), "tblQmlPropNode"); if (!n->isReadOnlySet() && n->declarativeCppNode()) n->markReadOnly(!n->isWritable()); if (n->isReadOnly()) out() << "[read-only] "; if (n->isDefault()) out() << "[default] "; generateQmlItem(n, relative, marker, false); out() << qmlItemEnd; }; std::function generateQmlMethod = [&](Node *n) { out() << qmlItemStart.arg(refForNode(n), "tblQmlFuncNode"); generateSynopsis(n, relative, marker, Section::Details, false); out() << qmlItemEnd; }; out() << "
    "; if (node->isPropertyGroup()) { const SharedCommentNode *scn = static_cast(node); out() << qmlItemHeader; if (!scn->name().isEmpty()) { out() << ""; out() << "

    "; out() << "" << scn->name() << " group"; out() << "

    \n"; } const QVector sharedNodes = scn->collective(); for (const auto &node : sharedNodes) { if (node->isQmlProperty() || node->isJsProperty()) generateQmlProperty(static_cast(node)); } out() << qmlItemFooter; } else if (node->isQmlProperty() || node->isJsProperty()) { out() << qmlItemHeader; generateQmlProperty(static_cast(node)); out() << qmlItemFooter; } else if (node->isSharedCommentNode()) { const SharedCommentNode *scn = reinterpret_cast(node); const QVector &sharedNodes = scn->collective(); if (sharedNodes.size() > 1) out() << "
    \n"; out() << qmlItemHeader; for (const auto &node : sharedNodes) { if (node->isFunction(Node::QML) || node->isFunction(Node::JS)) generateQmlMethod(node); else if (node->isQmlProperty() || node->isJsProperty()) generateQmlProperty(static_cast(node)); } out() << qmlItemFooter; if (sharedNodes.size() > 1) out() << "
    "; // fngroup } else { // assume the node is a method/signal handler out() << qmlItemHeader; generateQmlMethod(node); out() << qmlItemFooter; } out() << "
    "; generateStatus(node, marker); generateBody(node, marker); generateThreadSafeness(node, marker); generateSince(node, marker); generateAlsoList(node, marker); out() << "
    "; generateExtractionMark(node, EndMark); } /*! Output the "Inherits" line for the QML element, if there should be one. */ void HtmlGenerator::generateQmlInherits(QmlTypeNode *qcn, CodeMarker *marker) { if (!qcn) return; QmlTypeNode *base = qcn->qmlBaseNode(); while (base && base->isInternal()) { base = base->qmlBaseNode(); } if (base) { Text text; text << Atom::ParaLeft << "Inherits "; text << Atom(Atom::LinkNode, CodeMarker::stringForNode(base)); text << Atom(Atom::FormattingLeft, ATOM_FORMATTING_LINK); text << Atom(Atom::String, base->name()); text << Atom(Atom::FormattingRight, ATOM_FORMATTING_LINK); text << Atom::ParaRight; generateText(text, qcn, marker); } } /*! Output the "[Xxx instantiates the C++ class QmlGraphicsXxx]" line for the QML element, if there should be one. If there is no class node, or if the class node status is set to Node::Internal, do nothing. */ void HtmlGenerator::generateQmlInstantiates(QmlTypeNode *qcn, CodeMarker *marker) { ClassNode *cn = qcn->classNode(); if (cn && !cn->isInternal()) { Text text; text << Atom::ParaLeft; text << Atom(Atom::LinkNode, CodeMarker::stringForNode(qcn)); text << Atom(Atom::FormattingLeft, ATOM_FORMATTING_LINK); QString name = qcn->name(); /* Remove the "QML:" prefix, if present. It shouldn't be present anymore. */ if (name.startsWith(QLatin1String("QML:"))) name = name.mid(4); // remove the "QML:" prefix text << Atom(Atom::String, name); text << Atom(Atom::FormattingRight, ATOM_FORMATTING_LINK); text << " instantiates the C++ class "; text << Atom(Atom::LinkNode, CodeMarker::stringForNode(cn)); text << Atom(Atom::FormattingLeft, ATOM_FORMATTING_LINK); text << Atom(Atom::String, cn->name()); text << Atom(Atom::FormattingRight, ATOM_FORMATTING_LINK); text << Atom::ParaRight; generateText(text, qcn, marker); } } /*! Output the "[QmlGraphicsXxx is instantiated by QML Type Xxx]" line for the class, if there should be one. If there is no QML element, or if the class node status is set to Node::Internal, do nothing. */ void HtmlGenerator::generateInstantiatedBy(ClassNode *cn, CodeMarker *marker) { if (cn && !cn->isInternal() && cn->qmlElement() != nullptr) { const QmlTypeNode *qcn = cn->qmlElement(); Text text; text << Atom::ParaLeft; text << Atom(Atom::LinkNode, CodeMarker::stringForNode(cn)); text << Atom(Atom::FormattingLeft, ATOM_FORMATTING_LINK); text << Atom(Atom::String, cn->name()); text << Atom(Atom::FormattingRight, ATOM_FORMATTING_LINK); if (qcn->isQmlType()) text << " is instantiated by QML Type "; else text << " is instantiated by Javascript Type "; text << Atom(Atom::LinkNode, CodeMarker::stringForNode(qcn)); text << Atom(Atom::FormattingLeft, ATOM_FORMATTING_LINK); text << Atom(Atom::String, qcn->name()); text << Atom(Atom::FormattingRight, ATOM_FORMATTING_LINK); text << Atom::ParaRight; generateText(text, cn, marker); } } void HtmlGenerator::generateExtractionMark(const Node *node, ExtractionMarkType markType) { if (markType != EndMark) { out() << "\n"; } else { out() << "\n"; } } /*! This function outputs one or more manifest files in XML. They are used by Creator. */ void HtmlGenerator::generateManifestFiles() { generateManifestFile("examples", "example"); generateManifestFile("demos", "demo"); qdb_->exampleNodeMap().clear(); manifestMetaContent.clear(); } /*! This function is called by generateManifestFiles(), once for each manifest file to be generated. \a manifest is the type of manifest file. */ void HtmlGenerator::generateManifestFile(const QString &manifest, const QString &element) { ExampleNodeMap &exampleNodeMap = qdb_->exampleNodeMap(); if (exampleNodeMap.isEmpty()) return; QString fileName = manifest + "-manifest.xml"; QFile file(outputDir() + QLatin1Char('/') + fileName); bool demos = false; if (manifest == QLatin1String("demos")) demos = true; bool proceed = false; for (auto map = exampleNodeMap.begin(); map != exampleNodeMap.end(); ++map) { const ExampleNode *en = map.value(); if (demos) { if (en->name().startsWith("demos")) { proceed = true; break; } } else if (!en->name().startsWith("demos")) { proceed = true; break; } } if (!proceed || !file.open(QFile::WriteOnly | QFile::Text)) return; QXmlStreamWriter writer(&file); writer.setAutoFormatting(true); writer.writeStartDocument(); writer.writeStartElement("instructionals"); writer.writeAttribute("module", project); writer.writeStartElement(manifest); QStringList usedAttributes; for (auto map = exampleNodeMap.begin(); map != exampleNodeMap.end(); ++map) { const ExampleNode *en = map.value(); if (demos) { if (!en->name().startsWith("demos")) continue; } else if (en->name().startsWith("demos")) { continue; } // attributes that are always written for the element usedAttributes.clear(); usedAttributes << "name" << "docUrl" << "projectPath"; writer.writeStartElement(element); writer.writeAttribute("name", en->title()); QString docUrl = manifestDir + fileBase(en) + ".html"; writer.writeAttribute("docUrl", docUrl); QStringList proFiles; const auto exampleFiles = en->files(); for (const QString &file : exampleFiles) { if (file.endsWith(".pro") || file.endsWith(".qmlproject") || file.endsWith(".pyproject")) proFiles << file; } if (!proFiles.isEmpty()) { if (proFiles.size() == 1) { writer.writeAttribute("projectPath", examplesPath + proFiles[0]); } else { QString exampleName = en->name().split('/').last(); bool proWithExampleNameFound = false; for (int j = 0; j < proFiles.size(); j++) { if (proFiles[j].endsWith(QStringLiteral("%1/%1.pro").arg(exampleName)) || proFiles[j].endsWith(QStringLiteral("%1/%1.qmlproject").arg(exampleName)) || proFiles[j].endsWith( QStringLiteral("%1/%1.pyproject").arg(exampleName))) { writer.writeAttribute("projectPath", examplesPath + proFiles[j]); proWithExampleNameFound = true; break; } } if (!proWithExampleNameFound) writer.writeAttribute("projectPath", examplesPath + proFiles[0]); } } if (!en->imageFileName().isEmpty()) { writer.writeAttribute("imageUrl", manifestDir + en->imageFileName()); usedAttributes << "imageUrl"; } QString fullName = project + QLatin1Char('/') + en->title(); QSet tags; for (int idx = 0; idx < manifestMetaContent.size(); ++idx) { const auto names = manifestMetaContent[idx].names; for (const QString &name : names) { bool match = false; int wildcard = name.indexOf(QChar('*')); switch (wildcard) { case -1: // no wildcard, exact match match = (fullName == name); break; case 0: // '*' matches all match = true; break; default: // match with wildcard at the end match = fullName.startsWith(name.left(wildcard)); } if (match) { tags += manifestMetaContent[idx].tags; const auto attributes = manifestMetaContent[idx].attributes; for (const QString &attr : attributes) { QLatin1Char div(':'); QStringList attrList = attr.split(div); if (attrList.count() == 1) attrList.append(QStringLiteral("true")); QString attrName = attrList.takeFirst(); if (!usedAttributes.contains(attrName)) { writer.writeAttribute(attrName, attrList.join(div)); usedAttributes << attrName; } } } } } writer.writeStartElement("description"); Text brief = en->doc().briefText(); if (!brief.isEmpty()) writer.writeCDATA(brief.toString()); else writer.writeCDATA(QString("No description available")); writer.writeEndElement(); // description // Add words from module name as tags // QtQuickControls -> qt,quick,controls // QtOpenGL -> qt,opengl QRegExp re("([A-Z]+[a-z0-9]*(3D|GL)?)"); int pos = 0; while ((pos = re.indexIn(project, pos)) != -1) { tags << re.cap(1).toLower(); pos += re.matchedLength(); } // Include tags added via \meta {tag} {tag1[,tag2,...]} // within \example topic for (const auto &tag : en->doc().metaTagMap().values("tag")) { const auto &tagList = tag.toLower().split(QLatin1Char(',')); tags += QSet(tagList.cbegin(), tagList.cend()); } const auto &titleWords = en->title().toLower().split(QLatin1Char(' ')); tags += QSet(titleWords.cbegin(), titleWords.cend()); // Clean up tags, exclude invalid and common words QSet::iterator tag_it = tags.begin(); QSet modified; while (tag_it != tags.end()) { QString s = *tag_it; if (s.at(0) == '(') s.remove(0, 1).chop(1); if (s.endsWith(QLatin1Char(':'))) s.chop(1); if (s.length() < 2 || s.at(0).isDigit() || s.at(0) == '-' || s == QLatin1String("qt") || s == QLatin1String("the") || s == QLatin1String("and") || s.startsWith(QLatin1String("example")) || s.startsWith(QLatin1String("chapter"))) tag_it = tags.erase(tag_it); else if (s != *tag_it) { modified << s; tag_it = tags.erase(tag_it); } else ++tag_it; } tags += modified; if (!tags.isEmpty()) { writer.writeStartElement("tags"); bool wrote_one = false; QStringList sortedTags = tags.values(); sortedTags.sort(); for (const auto &tag : qAsConst(sortedTags)) { if (wrote_one) writer.writeCharacters(","); writer.writeCharacters(tag); wrote_one = true; } writer.writeEndElement(); // tags } QString ename = en->name().mid(en->name().lastIndexOf('/') + 1); QMap filesToOpen; const auto files = en->files(); for (const QString &file : files) { QFileInfo fileInfo(file); QString fileName = fileInfo.fileName().toLower(); // open .qml, .cpp and .h files with a // basename matching the example (project) name // QMap key indicates the priority - // the lowest value will be the top-most file if ((fileInfo.baseName().compare(ename, Qt::CaseInsensitive) == 0)) { if (fileName.endsWith(".qml")) filesToOpen.insert(0, file); else if (fileName.endsWith(".cpp")) filesToOpen.insert(1, file); else if (fileName.endsWith(".h")) filesToOpen.insert(2, file); } // main.qml takes precedence over main.cpp else if (fileName.endsWith("main.qml")) { filesToOpen.insert(3, file); } else if (fileName.endsWith("main.cpp")) { filesToOpen.insert(4, file); } } for (auto it = filesToOpen.constEnd(); it != filesToOpen.constBegin();) { writer.writeStartElement("fileToOpen"); if (--it == filesToOpen.constBegin()) { writer.writeAttribute(QStringLiteral("mainFile"), QStringLiteral("true")); } writer.writeCharacters(examplesPath + it.value()); writer.writeEndElement(); } writer.writeEndElement(); // example } writer.writeEndElement(); // examples writer.writeEndElement(); // instructionals writer.writeEndDocument(); file.close(); } /*! Reads metacontent - additional attributes and tags to apply when generating manifest files, read from config. Takes the configuration class \a config as a parameter. The manifest metacontent map is cleared immediately after the manifest files have been generated. */ void HtmlGenerator::readManifestMetaContent(const Config &config) { const QStringList names = config.getStringList(CONFIG_MANIFESTMETA + Config::dot + QStringLiteral("filters")); for (const auto &manifest : names) { ManifestMetaFilter filter; QString prefix = CONFIG_MANIFESTMETA + Config::dot + manifest + Config::dot; filter.names = config.getStringSet(prefix + QStringLiteral("names")); filter.attributes = config.getStringSet(prefix + QStringLiteral("attributes")); filter.tags = config.getStringSet(prefix + QStringLiteral("tags")); manifestMetaContent.append(filter); } } /*! Find global entities that have documentation but no \e{relates} comand. Report these as errors if they are not also marked \e {internal}. */ void HtmlGenerator::reportOrphans(const Aggregate *parent) { const NodeList &children = parent->childNodes(); if (children.size() == 0) return; QString message = "has documentation but no \\relates command"; for (const auto *child : children) { if (!child || child->isInternal() || child->doc().isEmpty() || !child->isRelatedNonmember()) continue; switch (child->nodeType()) { case Node::Enum: child->location().warning(tr("Global enum, %1, %2").arg(child->name()).arg(message)); break; case Node::Typedef: child->location().warning(tr("Global typedef, %1, %2").arg(child->name()).arg(message)); break; case Node::Function: { const FunctionNode *fn = static_cast(child); switch (fn->metaness()) { case FunctionNode::QmlSignal: child->location().warning( tr("Global QML, signal, %1 %2").arg(child->name()).arg(message)); break; case FunctionNode::QmlSignalHandler: child->location().warning( tr("Global QML signal handler, %1, %2").arg(child->name()).arg(message)); break; case FunctionNode::QmlMethod: child->location().warning( tr("Global QML method, %1, %2").arg(child->name()).arg(message)); break; case FunctionNode::JsSignal: child->location().warning( tr("Global JS, signal, %1 %2").arg(child->name()).arg(message)); break; case FunctionNode::JsSignalHandler: child->location().warning( tr("Global JS signal handler, %1, %2").arg(child->name()).arg(message)); break; case FunctionNode::JsMethod: child->location().warning( tr("Global JS method, %1, %2").arg(child->name()).arg(message)); break; default: if (fn->isMacro()) child->location().warning( tr("Global macro, %1, %2").arg(child->name()).arg(message)); else child->location().warning( tr("Global function, %1(), %2").arg(child->name()).arg(message)); break; } break; } case Node::Variable: child->location().warning( tr("Global variable, %1, %2").arg(child->name()).arg(message)); break; case Node::JsProperty: child->location().warning( tr("Global JS property, %1, %2").arg(child->name()).arg(message)); break; case Node::QmlProperty: child->location().warning( tr("Global QML property, %1, %2").arg(child->name()).arg(message)); break; default: break; } } } /*! Returns a reference to the XML stream writer currently in use. There is one XML stream writer open for each XML file being written, and they are kept on a stack. The one on top of the stack is the one being written to at the moment. In the HTML output generator, it is perhaps impossible for there to ever be more than one writer open. */ QXmlStreamWriter &HtmlGenerator::xmlWriter() { return *xmlWriterStack.top(); } /*! Generates bold Note lines that explain how function \a fn is associated with each of its associated properties. */ void HtmlGenerator::generateAssociatedPropertyNotes(FunctionNode *fn) { if (fn->hasAssociatedProperties()) { out() << "

    Note: "; NodeList &nodes = fn->associatedProperties(); std::sort(nodes.begin(), nodes.end(), Node::nodeNameLessThan); for (const auto *node : qAsConst(nodes)) { QString msg; const PropertyNode *pn = static_cast(node); switch (pn->role(fn)) { case PropertyNode::Getter: msg = QStringLiteral("Getter function "); break; case PropertyNode::Setter: msg = QStringLiteral("Setter function "); break; case PropertyNode::Resetter: msg = QStringLiteral("Resetter function "); break; case PropertyNode::Notifier: msg = QStringLiteral("Notifier signal "); break; default: break; } QString link = linkForNode(pn, nullptr); out() << msg << "for property " << pn->name() << ". "; } out() << "

    "; } } QT_END_NAMESPACE