Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
docbookgenerator.h
Go to the documentation of this file.
1// Copyright (C) 2019 Thibaut Cuvelier
2// Copyright (C) 2021 The Qt Company Ltd.
3// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
4
5#ifndef DOCBOOKGENERATOR_H
6#define DOCBOOKGENERATOR_H
7
8#include "codemarker.h"
9#include "config.h"
10#include "xmlgenerator.h"
11#include "filesystem/fileresolver.h"
12
13#include <QtCore/qhash.h>
14#include <QtCore/qxmlstream.h>
15
17
18class Aggregate;
19class ExampleNode;
20class FunctionNode;
21
23{
24public:
25 explicit DocBookGenerator(FileResolver& file_resolver);
26
27 void initializeGenerator() override;
28 QString format() override;
29
30protected:
31 [[nodiscard]] QString fileExtension() const override;
32 void generateDocumentation(Node *node) override;
33 using Generator::generateCppReferencePage;
35 using Generator::generatePageNode;
36 void generatePageNode(PageNode *pn);
37 using Generator::generateQmlTypePage;
39 using Generator::generateCollectionNode;
41 using Generator::generateGenericCollectionPage;
43 using Generator::generateProxyPage;
44 void generateProxyPage(Aggregate *aggregate);
45
46 void generateList(const Node *relative, const QString &selector,
47 Qt::SortOrder sortOrder = Qt::AscendingOrder);
48 void generateHeader(const QString &title, const QString &subtitle, const Node *node);
49 void closeTextSections();
50 void generateFooter();
51 void generateDocBookSynopsis(const Node *node);
52 void generateRequisites(const Aggregate *inner);
53 void generateQmlRequisites(const QmlTypeNode *qcn);
54 void generateSortedNames(const ClassNode *cn, const QList<RelatedClass> &rc);
55 void generateSortedQmlNames(const Node *base, const QStringList &knownTypes,
56 const NodeList &subs);
57 bool generateStatus(const Node *node);
58 void generateGroupReferenceText(const Node *node);
59 bool generateThreadSafeness(const Node *node);
60 bool generateSince(const Node *node);
61 void generateAddendum(const Node *node, Generator::Addendum type, CodeMarker *marker,
62 AdmonitionPrefix prefix) override;
63 using Generator::generateBody;
64 void generateBody(const Node *node);
65
66 bool generateText(const Text &text, const Node *relative) override;
67 qsizetype generateAtom(const Atom *atom, const Node *relative, CodeMarker*) override;
68
69private:
70
71 enum GeneratedListType { Auto, AutoSection, ItemizedList };
72
73 QXmlStreamWriter *startDocument(const Node *node);
74 QXmlStreamWriter *startDocument(const ExampleNode *en, const QString &file);
75 QXmlStreamWriter *startGenericDocument(const Node *node, const QString &fileName);
76 void endDocument();
77
78 void generateAnnotatedList(const Node *relative, const NodeList &nodeList,
79 const QString &selector, GeneratedListType type = Auto,
80 Qt::SortOrder sortOrder = Qt::AscendingOrder);
81 void generateAnnotatedLists(const Node *relative, const NodeMultiMap &nmm,
82 const QString &selector);
83 void generateCompactList(const Node *relative, const NodeMultiMap &nmm, bool includeAlphabet,
84 const QString &commonPrefix, const QString &selector);
85 using Generator::generateFileList;
86 void generateFileList(const ExampleNode *en, bool images);
87 void generateObsoleteMembers(const Sections &sections);
88 void generateObsoleteQmlMembers(const Sections &sections);
89 void generateSectionList(const Section &section, const Node *relative,
90 bool useObsoleteMembers = false);
91 void generateSectionInheritedList(const Section &section, const Node *relative);
92 void generateSynopsisName(const Node *node, const Node *relative, bool generateNameLink);
93 void generateParameter(const Parameter &parameter, const Node *relative, bool generateExtra,
94 bool generateType);
95 void generateSynopsis(const Node *node, const Node *relative, Section::Style style);
96 void generateEnumValue(const QString &enumValue, const Node *relative);
97 void generateDetailedMember(const Node *node, const PageNode *relative);
98 void generateDetailedQmlMember(Node *node, const Aggregate *relative);
99
100 void generateFullName(const Node *node, const Node *relative);
101 void generateFullName(const Node *apparentNode, const QString &fullName,
102 const Node *actualNode);
103 void generateBrief(const Node *node);
104 void generateAlsoList(const Node *node) override;
105 void generateSignatureList(const NodeList &nodes);
106 void generateReimplementsClause(const FunctionNode *fn);
107 void generateClassHierarchy(const Node *relative, NodeMultiMap &classMap);
108 void generateFunctionIndex(const Node *relative);
109 void generateLegaleseList(const Node *relative);
110 void generateExampleFilePage(const Node *en, ResolvedFile resolved_file, CodeMarker* = nullptr) override;
111 void generateRequiredLinks(const Node *node);
112 void generateLinkToExample(const ExampleNode *en, const QString &baseUrl);
113
114 void typified(const QString &string, const Node *relative, bool trailingSpace = false,
115 bool generateType = true);
116 void generateLink(const Atom *atom);
117 void beginLink(const QString &link, const Node *node, const Node *relative);
118 void endLink();
119 void writeXmlId(const QString &id);
120 void writeXmlId(const Node *node);
121 inline void newLine();
122 void startSectionBegin(const QString &id = "");
123 void startSectionBegin(const Node *node);
124 void startSectionEnd();
125 void startSection(const QString &id, const QString &title);
126 void startSection(const Node *node, const QString &title);
127 void startSection(const QString &title);
128 void endSection();
129 void writeAnchor(const QString &id);
130 void generateSimpleLink(const QString &href, const QString &text);
131 void generateStartRequisite(const QString &description);
132 void generateEndRequisite();
133 void generateRequisite(const QString &description, const QString &value);
134 void generateCMakeRequisite(const QString &findPackage, const QString &linkLibraries);
135 void generateSynopsisInfo(const QString &key, const QString &value);
136 void generateModifier(const QString &value);
137
138 // Generator state when outputting the documentation.
139 bool m_inListItemLineOpen { false };
140 int currentSectionLevel { 0 };
141 QStack<int> sectionLevels {};
142 QString m_qflagsHref {};
143 bool m_inTeletype { false };
144 bool m_hasSection { false };
145 bool m_closeSectionAfterGeneratedList { false };
146 bool m_closeSectionAfterRawTitle { false };
147 bool m_closeFigureWrapper { false };
148 bool m_tableHeaderAlreadyOutput { false };
149 bool m_closeTableRow { false };
150 bool m_closeTableCell { false };
151 std::pair<QString, QString> m_tableWidthAttr {};
152 bool m_inPara { false }; // Ignores nesting of paragraphs (like list items).
153 bool m_inBlockquote { false };
154 unsigned m_inList { 0 }; // Depth in number of nested lists.
155
156 // Generator configuration, set before starting the generation.
157 QString m_project {};
158 QString m_productName {};
159 QString m_projectDescription {};
160 QString m_naturalLanguage {};
161 QString m_buildVersion {};
162 QXmlStreamWriter *m_writer { nullptr };
163 bool m_useDocBook52 { false }; // Enable tags from DocBook 5.2. Also called "extensions".
164 bool m_useITS { false }; // Enable ITS attributes for parts that should not be translated.
165
166 Config *m_config { nullptr };
167};
168
169QT_END_NAMESPACE
170
171#endif
Access
Definition access.h:11
std::optional< PCHFile > buildPCH(QDocDatabase *qdb, QString module_header, const std::set< Config::HeaderFilePath > &all_headers, const std::vector< QByteArray > &include_paths, const QList< QByteArray > &defines, const InclusionPolicy &policy)
Building the PCH must be possible when there are no .cpp files, so it is moved here to its own member...
struct CXTranslationUnitImpl * CXTranslationUnit
The Atom class is the fundamental unit for representing documents internally.
Definition atom.h:19
AtomType type() const
Return the type of this atom.
Definition atom.h:151
void setNext(Atom *newNext)
Definition atom.h:144
AtomType
\value AnnotatedList \value AutoLink \value BaseName \value BriefLeft \value BriefRight \value C \val...
Definition atom.h:21
@ CaptionLeft
Definition atom.h:29
@ ListTagLeft
Definition atom.h:65
@ TableRight
Definition atom.h:95
@ DivRight
Definition atom.h:40
@ GeneratedList
Definition atom.h:50
@ BriefRight
Definition atom.h:27
@ CodeQuoteArgument
Definition atom.h:33
@ WarningLeft
Definition atom.h:106
@ SinceList
Definition atom.h:87
@ TableOfContentsLeft
Definition atom.h:102
@ SidebarLeft
Definition atom.h:85
@ TableOfContentsRight
Definition atom.h:103
@ Keyword
Definition atom.h:57
@ TableHeaderRight
Definition atom.h:97
@ FormatElse
Definition atom.h:45
@ InlineImage
Definition atom.h:56
@ TableRowRight
Definition atom.h:99
@ FootnoteRight
Definition atom.h:44
@ LineBreak
Definition atom.h:60
@ SnippetCommand
Definition atom.h:90
@ TableRowLeft
Definition atom.h:98
@ Nop
Definition atom.h:72
@ WarningRight
Definition atom.h:107
@ LegaleseRight
Definition atom.h:59
@ ListTagRight
Definition atom.h:66
@ CaptionRight
Definition atom.h:30
@ NavLink
Definition atom.h:71
@ ListItemNumber
Definition atom.h:64
@ SinceTagRight
Definition atom.h:89
@ DetailsLeft
Definition atom.h:37
@ CodeBad
Definition atom.h:32
@ RawString
Definition atom.h:80
@ Target
Definition atom.h:104
@ AnnotatedList
Definition atom.h:22
@ SectionRight
Definition atom.h:82
@ SectionHeadingLeft
Definition atom.h:83
@ TableLeft
Definition atom.h:94
@ ListItemRight
Definition atom.h:68
@ Image
Definition atom.h:52
@ TableItemRight
Definition atom.h:101
@ ListItemLeft
Definition atom.h:67
@ ImportantRight
Definition atom.h:55
@ Code
Definition atom.h:31
@ String
Definition atom.h:93
@ ListLeft
Definition atom.h:63
@ NavAutoLink
Definition atom.h:70
@ CodeQuoteCommand
Definition atom.h:34
@ BriefLeft
Definition atom.h:26
@ ImageText
Definition atom.h:53
@ ExampleFileLink
Definition atom.h:41
@ LegaleseLeft
Definition atom.h:58
@ ListRight
Definition atom.h:69
@ C
Definition atom.h:28
@ ParaRight
Definition atom.h:76
@ Last
Definition atom.h:109
@ Qml
Definition atom.h:77
@ FormattingLeft
Definition atom.h:48
@ FormattingRight
Definition atom.h:49
@ SectionHeadingRight
Definition atom.h:84
@ Link
Definition atom.h:61
@ ImportantLeft
Definition atom.h:54
@ FormatEndif
Definition atom.h:46
@ UnhandledFormat
Definition atom.h:105
@ SinceTagLeft
Definition atom.h:88
@ ExampleImageLink
Definition atom.h:42
@ BR
Definition atom.h:25
@ DetailsRight
Definition atom.h:38
@ FootnoteLeft
Definition atom.h:43
@ AutoLink
Definition atom.h:23
@ SnippetLocation
Definition atom.h:92
@ TableHeaderLeft
Definition atom.h:96
@ ComparesRight
Definition atom.h:36
@ QuotationLeft
Definition atom.h:78
@ SectionLeft
Definition atom.h:81
@ LinkNode
Definition atom.h:62
@ HR
Definition atom.h:51
@ DivLeft
Definition atom.h:39
@ TableItemLeft
Definition atom.h:100
@ NoteRight
Definition atom.h:74
@ QuotationRight
Definition atom.h:79
@ ParaLeft
Definition atom.h:75
@ BaseName
Definition atom.h:24
@ ComparesLeft
Definition atom.h:35
@ FormatIf
Definition atom.h:47
@ SnippetIdentifier
Definition atom.h:91
@ NoteLeft
Definition atom.h:73
@ SidebarRight
Definition atom.h:86
@ UnknownCommand
Definition atom.h:108
virtual bool isLinkAtom() const
Definition atom.h:159
Atom * m_next
Definition atom.h:165
QStringList m_strs
Definition atom.h:167
const QString & string() const
Returns the string parameter that together with the type characterizes this atom.
Definition atom.h:153
QString linkText() const
For a link atom, returns the string representing the link text if one exist in the list of atoms.
Definition atom.cpp:365
Atom * next()
Return the next atom in the atom list.
Definition atom.h:143
qsizetype count() const
Definition atom.h:155
const Atom * next() const
Return the next atom in the atom list.
Definition atom.h:148
void chopString()
\also string()
Definition atom.h:141
const QString & string(int i) const
Definition atom.h:154
const Atom * next(AtomType t) const
Return the next Atom in the list if it is of AtomType t.
Definition atom.cpp:301
const Atom * find(AtomType t, qsizetype *offset=nullptr) const
Starting from this Atom, searches the linked list for the atom of specified type t and returns it.
Definition atom.cpp:266
const QStringList & strings() const
Definition atom.h:157
virtual ~Atom()=default
QString typeString() const
Return the type of this atom as a string.
Definition atom.cpp:333
void appendChar(QChar ch)
Appends ch to the string parameter of this atom.
Definition atom.h:138
virtual Tree * domain()
Definition atom.h:161
virtual void resolveSquareBracketParams()
Definition atom.h:162
AtomType m_type
Definition atom.h:166
virtual Genus genus()
Definition atom.h:160
ParsedCppFileIR parse_cpp_file(const QString &filePath)
Get ready to parse the C++ cpp file identified by filePath and add its parsed contents to the databas...
ClangCodeParser(QDocDatabase *qdb, Config &, const std::vector< QByteArray > &include_paths, const QList< QByteArray > &defines, std::optional< std::reference_wrapper< const PCHFile > > pch)
The ClassNode represents a C++ class.
Definition classnode.h:21
virtual QString markedUpQmlItem(const Node *, bool)
Definition codemarker.h:34
static QString extraSynopsis(const Node *node, Section::Style style)
Returns the 'extra' synopsis string for node with status information, using a specified section style...
virtual QString markedUpSynopsis(const Node *, const Node *, Section::Style)
Definition codemarker.h:29
CodeMarker()
When a code marker constructs itself, it puts itself into the static list of code markers.
virtual void initializeMarker()
A code market performs no initialization by default.
static void initialize()
All the code markers in the static list are initialized here, after the qdoc configuration file has b...
QString taggedQmlNode(const Node *node)
virtual ~CodeMarker()
When a code marker destroys itself, it removes itself from the static list of code markers.
virtual void terminateMarker()
Terminating a code marker is trivial.
static void terminate()
All the code markers in the static list are terminated here.
virtual Atom::AtomType atomType() const
Definition codemarker.h:23
virtual QString markedUpName(const Node *)
Definition codemarker.h:35
QString taggedNode(const Node *node)
static const QSet< QString > common_meta_commands
Definition codeparser.h:110
virtual void initializeParser()=0
virtual void terminateParser()
Terminating a code parser is trivial.
CodeParser()
The constructor adds this code parser to the static list of code parsers.
static void setLink(Node *node, Node::LinkType linkType, const QString &arg)
virtual QString language()=0
virtual void parseSourceFile(const Location &location, const QString &filePath, CppCodeParser &cpp_code_parser)=0
QDocDatabase * m_qdb
Definition codeparser.h:139
static CodeParser * parserForLanguage(const QString &language)
static CodeParser * parserForSourceFile(const QString &filePath)
static bool isWorthWarningAbout(const Doc &doc)
Test for whether a doc comment warrants warnings.
virtual QStringList sourceFileNameFilter()=0
virtual ~CodeParser()
The destructor removes this code parser from the static list of code parsers.
static void extractPageLinkAndDesc(QStringView arg, QString *link, QString *desc)
static void initialize()
All the code parsers in the static list are initialized here, after the qdoc configuration variables ...
static void terminate()
All the code parsers in the static list are terminated here.
A class for holding the members of a collection of doc pages.
contains all the information for a single config variable in a .qdocconf file.
Definition config.h:43
ConfigVar()=default
const Location & location() const
Definition config.h:55
QStringList asStringList() const
Returns this config variable as a string list.
Definition config.cpp:253
int asInt() const
Returns this configuration variable as an integer; iterates through the string list,...
Definition config.cpp:286
bool asBool() const
Returns this config variable as a boolean.
Definition config.cpp:273
QSet< QString > asStringSet() const
Returns this config variable as a string set.
Definition config.cpp:264
The Config class contains the configuration variables for controlling how qdoc produces documentation...
Definition config.h:85
QStringList & includePaths()
Definition config.h:179
static QString installDir
Definition config.h:171
std::set< HeaderFilePath > getHeaderFiles()
Definition config.cpp:1461
static bool generateExamples
Definition config.h:170
const QString & programName() const
Definition config.h:125
static const QString dot
Definition config.h:168
QStringList & indexDirs()
Definition config.h:180
void reset()
Resets the Config instance - used by load()
Definition config.cpp:373
InclusionPolicy createInclusionPolicy() const
Definition config.cpp:1485
bool getAtomsDump() const
Definition config.h:110
void clear()
Clears the location and internal maps for config variables.
Definition config.cpp:361
~Config()
Definition config.cpp:353
bool reportMissingAltTextForImages()
Definition config.h:166
bool singleExec() const
Definition config.h:437
void showHelp(int exitCode=0)
Definition config.h:123
bool includePrivateType() const
Definition config.h:457
QString currentDir() const
Definition config.h:181
PathFlags
Flags used for retrieving canonicalized paths from Config.
Definition config.h:91
@ None
Definition config.h:92
@ Validate
Definition config.h:104
@ IncludePaths
Definition config.h:105
bool includePrivateVariable() const
Definition config.h:462
const Location & location() const
Definition config.h:126
const ExcludedPaths & getExcludedPaths()
Definition config.cpp:1426
bool dualExec() const
Definition config.h:442
bool preparing() const
Definition config.h:187
QSet< QString > getOutputFormats() const
Function to return the correct outputformats.
Definition config.cpp:597
static void popWorkingDir()
Pop the top entry from the stack of working directories.
Definition config.cpp:1418
QDocPass
Definition config.h:89
@ Generate
Definition config.h:89
@ Neither
Definition config.h:89
@ Prepare
Definition config.h:89
bool generating() const
Definition config.h:188
bool includePrivateFunction() const
Definition config.h:452
static QSet< QString > overrideOutputFormats
Definition config.h:173
bool getDebug() const
Definition config.h:109
static QString overrideOutputDir
Definition config.h:172
QStringList & defines()
Definition config.h:177
QStringList & dependModules()
Definition config.h:178
void setQDocPass(const QDocPass &pass)
Definition config.h:186
bool includePrivate() const
Definition config.h:447
const SourceLink & getSourceLink()
Returns a SourceLink struct with settings required to construct source links to API entities.
Definition config.cpp:1445
bool showInternal() const
Definition config.h:111
QStringList getExampleImageFiles(const QSet< QString > &excludedDirs, const QSet< QString > &excludedFiles)
Definition config.cpp:809
QStringList qdocFiles() const
Definition config.h:124
QString previousCurrentDir() const
Definition config.h:183
QStringList getExampleQdocFiles(const QSet< QString > &excludedDirs, const QSet< QString > &excludedFiles)
Definition config.cpp:797
CppCodeMarker()=default
QString markedUpQmlItem(const Node *node, bool summary) override
QString markedUpName(const Node *node) override
Atom::AtomType atomType() const override
Returns the type of atom used to represent C++ code in the documentation.
QString markedUpSynopsis(const Node *node, const Node *relative, Section::Style style) override
~CppCodeMarker() override=default
CppCodeParser(FnCommandParser &&parser)
void processMetaCommands(const Doc &doc, Node *node)
The topic command has been processed, and now doc and node are passed to this function to get the met...
void generatePageNode(PageNode *pn)
Generate the DocBook page for an entity that doesn't map to any underlying parsable C++ or QML elemen...
void generateQmlTypePage(QmlTypeNode *qcn)
Generate the DocBook page for a QML type.
void generateAlsoList(const Node *node) override
void generateQmlRequisites(const QmlTypeNode *qcn)
Lists the required imports and includes.
void generateAddendum(const Node *node, Generator::Addendum type, CodeMarker *marker, AdmonitionPrefix prefix) override
Generates an addendum note of type type for node.
void initializeGenerator() override
Initializes the DocBook output generator's data structures from the configuration (Config).
void generateExampleFilePage(const Node *en, ResolvedFile resolved_file, CodeMarker *=nullptr) override
Generate a file with the contents of a C++ or QML source file.
bool generateText(const Text &text, const Node *relative) override
Generate the documentation for relative.
void generateCppReferencePage(Node *node)
Generate a reference page for the C++ class, namespace, or header file documented in node.
void generateSortedQmlNames(const Node *base, const QStringList &knownTypes, const NodeList &subs)
DocBookGenerator(FileResolver &file_resolver)
bool generateThreadSafeness(const Node *node)
Generates text that explains how threadsafe and/or reentrant node is.
void generateCollectionNode(CollectionNode *cn)
Generate the HTML page for a group, module, or QML module.
QString format() override
void generateDocBookSynopsis(const Node *node)
Generate the metadata for the given node in DocBook.
void generateGenericCollectionPage(CollectionNode *cn)
Generate the HTML page for a generic collection.
void generateBody(const Node *node)
Generate the body of the documentation from the qdoc comment found with the entity represented by the...
qsizetype generateAtom(const Atom *atom, const Node *relative, CodeMarker *) override
Generate DocBook from an instance of Atom.
void generateProxyPage(Aggregate *aggregate)
bool generateStatus(const Node *node)
void generateRequisites(const Aggregate *inner)
Lists the required imports and includes.
void generateSortedNames(const ClassNode *cn, const QList< RelatedClass > &rc)
void generateDocumentation(Node *node) override
Recursive writing of DocBook files from the root node.
void generateGroupReferenceText(const Node *node)
Return a string representing a text that exposes information about the groups that the node is part o...
QString fileExtension() const override
Returns "xml" for this subclass of Generator.
bool generateSince(const Node *node)
Definition doc.h:31
QSet< QString > parameterNames() const
Definition doc.cpp:195
Text legaleseText() const
Definition doc.cpp:187
QList< Text > alsoList() const
Definition doc.cpp:256
const Location & location() const
Returns the starting location of a qdoc comment.
Definition doc.cpp:90
Doc & operator=(const Doc &doc)
Definition doc.cpp:75
Doc(const Location &start_loc, const Location &end_loc, const QString &source, const QSet< QString > &metaCommandSet, const QSet< QString > &topics)
Parse the qdoc comment source.
Definition doc.cpp:47
const QList< Atom * > & tableOfContents() const
Definition doc.cpp:276
static void quoteFromFile(const Location &location, Quoter &quoter, ResolvedFile resolved_file)
Definition doc.cpp:421
bool isInternal() const
Returns true if the set of metacommands used in the doc comment contains {internal}...
Definition doc.cpp:219
bool hasTableOfContents() const
Definition doc.cpp:261
bool hasOverloadCommand() const
Definition doc.h:71
const QList< Atom * > & keywords() const
Definition doc.cpp:288
~Doc()
Definition doc.cpp:69
const Text & body() const
Definition doc.cpp:115
static void initialize(FileResolver &file_resolver)
Definition doc.cpp:316
bool hasKeywords() const
Definition doc.cpp:266
QStringList omitEnumItemNames() const
Definition doc.cpp:205
const QList< Atom * > & targets() const
Definition doc.cpp:294
QMultiMap< ComparisonCategory, Text > * comparesWithMap() const
Definition doc.cpp:305
const QList< int > & tableOfContentsLevels() const
Definition doc.cpp:282
bool hasTargets() const
Definition doc.cpp:271
Text trimmedBriefText(const QString &className) const
Definition doc.cpp:126
Sections
Definition doc.h:34
@ NoSection
Definition doc.h:35
@ Section3
Definition doc.h:38
@ Section1
Definition doc.h:36
@ Section2
Definition doc.h:37
@ Section4
Definition doc.h:39
ArgList metaCommandArgs(const QString &metaCommand) const
Definition doc.cpp:251
Text briefText(bool inclusive=false) const
Definition doc.cpp:121
const Location & startLocation() const
Returns the starting location of a qdoc comment.
Definition doc.cpp:99
Doc()=default
bool isMarkedReimp() const
Returns true if the set of metacommands used in the doc comment contains {reimp}.
Definition doc.cpp:228
static void trimCStyleComment(Location &location, QString &str)
Replaces any asterisks used as a left margin in the comment str with spaces then trims the comment sy...
Definition doc.cpp:381
static void terminate()
All the heap allocated variables are deleted.
Definition doc.cpp:369
QList< ArgPair > overloadList() const
Returns the list of arguments passed to the {\overload} command.
Definition doc.cpp:236
TopicList topicsUsed() const
Returns a reference to the list of topic commands used in the current qdoc comment.
Definition doc.cpp:246
QStringMultiMap * metaTagMap() const
Definition doc.cpp:300
QSet< QString > metaCommandsUsed() const
Definition doc.cpp:210
bool isEmpty() const
Definition doc.cpp:110
Doc(const Doc &doc)
Definition doc.cpp:64
void constructExtra() const
Definition doc.cpp:310
const QString & source() const
Definition doc.cpp:104
QStringList enumItemNames() const
Definition doc.cpp:200
Encapsulate the logic that QDoc uses to find files whose path is provided by the user and that are re...
std::optional< ResolvedFile > resolve(QString filename) const
Returns a ResolvedFile if query can be resolved or std::nullopt otherwise.
FileResolver(std::vector< DirectoryPath > &&search_directories)
Constructs an instance of FileResolver with the directories in search_directories as root directories...
const std::vector< DirectoryPath > & get_search_directories() const
Returns a const-reference to a collection of root search directories that this instance will use duri...
This node is used to represent any kind of function being documented.
static void initialize()
static void terminate()
HtmlGenerator(FileResolver &file_resolver)
Definition inode.h:20
virtual const QString & name() const =0
virtual Genus genus() const =0
virtual NodeType nodeType() const =0
virtual QString fullName() const =0
virtual ~INode()=default
~LinkAtom() override=default
Genus genus() override
Definition atom.h:179
Location location
Definition atom.h:192
bool m_resolved
Definition atom.h:195
Tree * domain() override
Definition atom.h:184
QString m_squareBracketParams
Definition atom.h:198
Genus m_genus
Definition atom.h:196
LinkAtom(const LinkAtom &t)
Standard copy constructor of LinkAtom t.
Definition atom.cpp:443
Tree * m_domain
Definition atom.h:197
LinkAtom(Atom *previous, const LinkAtom &t)
Special copy constructor of LinkAtom t, where where the new LinkAtom will not be the first one in the...
Definition atom.cpp:459
void resolveSquareBracketParams() override
This function resolves the parameters that were enclosed in square brackets.
Definition atom.cpp:406
bool isLinkAtom() const override
Definition atom.h:178
The Location class provides a way to mark a location in a file.
Definition location.h:20
QString fileName() const
Returns the file name part of the file path, ie the current file.
Definition location.cpp:191
void fatal(const QString &message, const QString &details=QString()) const
Writes message and details to stderr as a formatted error message and then exits the program.
Definition location.cpp:269
QString fileSuffix() const
Returns the suffix of the file name.
Definition location.cpp:201
const QString & filePath() const
Returns the current path and file name.
Definition location.h:45
Location(const Location &other)
The copy constructor copies the contents of other into this Location using the assignment operator.
Definition location.cpp:65
void setColumnNo(int no)
Definition location.h:41
void error(const QString &message, const QString &details=QString()) const
Writes message and details to stderr as a formatted error message.
Definition location.cpp:238
int lineNo() const
Returns the current line number.
Definition location.h:48
static int exitCode()
Returns the error code QDoc should exit with; EXIT_SUCCESS or the number of documentation warnings if...
Definition location.cpp:250
void report(const QString &message, const QString &details=QString()) const
Writes message and details to stderr as a formatted report message.
Definition location.cpp:288
QString toString() const
Converts the location to a string to be prepended to error messages.
Definition location.cpp:535
int columnNo() const
Returns the current column number.
Definition location.h:49
void advanceLines(int n)
Definition location.h:31
static void initialize()
Gets several parameters from the config, including tab size, program name, and a regular expression t...
Definition location.cpp:303
Location()
Constructs an empty location.
Definition location.cpp:46
static void information(const QString &message)
Prints message to stdout followed by a {' '}.
Definition location.cpp:463
int depth() const
Definition location.h:44
void push(const QString &filePath)
Pushes filePath onto the file position stack.
Definition location.cpp:135
static void internalError(const QString &hint)
Report a program bug, including the hint.
Definition location.cpp:472
void start()
If the file position on top of the stack has a line number less than 1, set its line number to 1 and ...
Definition location.cpp:101
void warning(const QString &message, const QString &details=QString()) const
Writes message and details to stderr as a formatted warning message.
Definition location.cpp:226
void setEtc(bool etc)
Definition location.h:39
void advance(QChar ch)
Advance the current file position, using ch to decide how to do that.
Definition location.cpp:117
void setLineNo(int no)
Definition location.h:40
Location & operator=(const Location &other)
The assignment operator does a deep copy of the entire state of other into this Location.
Definition location.cpp:75
bool isEmpty() const
Returns true if there is no file name set yet; returns false otherwise.
Definition location.h:43
bool etc() const
Definition location.h:50
~Location()
Definition location.h:25
static void terminate()
Apparently, all this does is delete the regular expression used for intercepting certain error messag...
Definition location.cpp:451
void pop()
Pops the top of the internal stack.
Definition location.cpp:155
Location(const QString &filePath)
Constructs a location with (fileName, 1, 1) on its file position stack.
Definition location.cpp:55
This class represents a C++ namespace.
Tree * tree() const override
Returns a pointer to the Tree that contains this NamespaceNode.
A PageNode is a Node that generates a documentation page.
Definition pagenode.h:19
The Parameter class describes one function parameter.
Definition parameters.h:20
const QString & type() const
Definition parameters.h:30
void set(const QString &type, const QString &name, const QString &defaultValue=QString())
Definition parameters.h:35
const QString & name() const
Definition parameters.h:31
void setDefaultValue(const QString &t)
Definition parameters.h:33
Parameter(QString type, QString name=QString(), QString defaultValue=QString())
Definition parameters.h:23
Parameter()=default
QString signature(bool includeValue=false) const
Reconstructs the text signature for the parameter and returns it.
QString m_name
Definition parameters.h:50
QString m_canonicalType
Definition parameters.h:48
void setCanonicalType(const QString &t)
Definition parameters.h:45
QString m_defaultValue
Definition parameters.h:51
void setName(const QString &name)
Definition parameters.h:28
bool hasType() const
Definition parameters.h:29
const QString & canonicalType() const
Definition parameters.h:44
QString m_type
Definition parameters.h:49
const QString & defaultValue() const
Definition parameters.h:32
This class describes one instance of using the Q_PROPERTY macro.
PureDocParser(const Location &location)
This class provides exclusive access to the qdoc database, which consists of a forrest of trees and a...
static void destroyQdocDB()
Destroys the singleton.
static QDocDatabase * qdocDB()
Creates the singleton.
NamespaceNode * primaryTreeRoot()
Returns a pointer to the root node of the primary tree.
void processForest()
This function calls a set of functions for each tree in the forest that has not already been analyzed...
void clearSearchOrder()
void resolveStuff()
Performs several housekeeping tasks prior to generating the documentation.
static void terminate()
Clear the static maps so that subsequent runs don't try to use contents from a previous run.
A class for containing the elements of one documentation section.
Definition sections.h:17
const QString & singular() const
Definition sections.h:47
void clear()
A Section is now an element in a static vector, so we don't have to repeatedly construct and destroy ...
Definition sections.cpp:143
void setAggregate(Aggregate *t)
Definition sections.h:59
const NodeVector & obsoleteMembers() const
Definition sections.h:56
void appendMembers(const NodeVector &nv)
Definition sections.h:57
void insert(Node *node)
Inserts the node into this section if it is appropriate for this section.
Definition sections.cpp:213
void reduce()
If this section is not empty, convert its maps to sequential structures for better traversal during d...
Definition sections.cpp:296
ClassNodesList & classNodesList()
Definition sections.h:55
const Aggregate * aggregate() const
Definition sections.h:58
const NodeVector & reimplementedMembers() const
Definition sections.h:50
const QString & title() const
Definition sections.h:45
const QString & plural() const
Definition sections.h:48
const QList< std::pair< Aggregate *, int > > & inheritedMembers() const
Definition sections.h:51
void appendMember(Node *node)
Definition sections.h:34
@ Summary
Definition sections.h:19
@ Details
Definition sections.h:19
@ Accessors
Definition sections.h:19
@ AllMembers
Definition sections.h:19
bool insertReimplementedMember(Node *node)
Returns true if the node is a reimplemented member function of the current class.
Definition sections.cpp:271
const QString & divClass() const
Definition sections.h:46
~Section()
The destructor must delete the members of collections when the members are allocated on the heap.
Definition sections.cpp:132
const NodeVector & members() const
Definition sections.h:49
Style style() const
Definition sections.h:44
bool isEmpty() const
Definition sections.h:38
A class for creating vectors of collections for documentation.
Definition sections.h:82
Aggregate * aggregate() const
Definition sections.h:184
const SectionVector & stdCppClassDetailsSections() const
Definition sections.h:171
void buildStdCppClassRefPageSections()
Build the section vectors for a standard reference page, when the aggregate node is a C++.
Definition sections.cpp:881
Sections(Aggregate *aggregate)
This constructor builds the vectors of sections based on the type of the aggregate node.
Definition sections.cpp:366
SectionVector & stdCppClassSummarySections()
Definition sections.h:160
SectionVector & stdQmlTypeSummarySections()
Definition sections.h:162
~Sections()
The behavior of the destructor depends on the type of the Aggregate node that was passed to the const...
Definition sections.cpp:489
SectionVector & stdDetailsSections()
Definition sections.h:159
const SectionVector & stdQmlTypeDetailsSections() const
Definition sections.h:179
const SectionVector & stdCppClassSummarySections() const
Definition sections.h:167
const SectionVector & stdQmlTypeSummarySections() const
Definition sections.h:175
void buildStdRefPageSections()
Build the section vectors for a standard reference page, when the aggregate node is not a C++ class o...
Definition sections.cpp:622
void clear(SectionVector &v)
Reset each Section in vector v to its initialized state.
Definition sections.cpp:530
SectionVector & stdCppClassDetailsSections()
Definition sections.h:161
void reduce(SectionVector &v)
Linearize the maps in each Section in v.
Definition sections.cpp:539
const SectionVector & stdDetailsSections() const
Definition sections.h:166
void buildStdQmlTypeRefPageSections()
Build the section vectors for a standard reference page, when the aggregate node is a QML type.
Definition sections.cpp:929
SectionVector & stdQmlTypeDetailsSections()
Definition sections.h:163
SectionVector & sinceSections()
Definition sections.h:157
@ QmlMethods
Definition sections.h:115
@ SinceQmlTypes
Definition sections.h:128
@ PrivateSlots
Definition sections.h:135
@ PrivateFunctions
Definition sections.h:133
@ PublicVariables
Definition sections.h:111
@ QmlEnumTypes
Definition sections.h:89
@ SinceProperties
Definition sections.h:124
@ PublicSlots
Definition sections.h:101
@ DetailsProperties
Definition sections.h:92
@ SinceQmlProperties
Definition sections.h:132
@ SinceGlobalFunctions
Definition sections.h:107
@ SinceNamespaces
Definition sections.h:87
@ SinceTypeAliases
Definition sections.h:122
@ SinceNamespaceFunctions
Definition sections.h:103
@ SinceQmlMethods
Definition sections.h:139
@ DetailsMemberVariables
Definition sections.h:102
@ SinceMemberFunctions
Definition sections.h:98
@ SinceQmlSignalHandlers
Definition sections.h:136
@ QmlSignals
Definition sections.h:100
@ ProtectedSlots
Definition sections.h:125
@ QmlProperties
Definition sections.h:90
@ StaticPublicMembers
Definition sections.h:116
@ PrivateVariables
Definition sections.h:137
@ ProtectedFunctions
Definition sections.h:123
@ SinceMacros
Definition sections.h:112
@ PublicTypes
Definition sections.h:85
@ RelatedNonmembers
Definition sections.h:140
@ QmlSignalHandlers
Definition sections.h:105
@ StdVariables
Definition sections.h:104
@ StdNamespaces
Definition sections.h:88
@ ProtectedVariables
Definition sections.h:127
@ SinceClasses
Definition sections.h:93
@ StaticProtectedMembers
Definition sections.h:129
@ DetailsMacros
Definition sections.h:113
@ ProtectedTypes
Definition sections.h:121
@ QmlAttachedSignals
Definition sections.h:110
@ QmlAttachedProperties
Definition sections.h:95
@ DetailsMemberTypes
Definition sections.h:86
@ StdClasses
Definition sections.h:94
@ PublicFunctions
Definition sections.h:96
@ SinceEnumTypes
Definition sections.h:117
@ SinceQmlEnumTypes
Definition sections.h:131
@ PrivateTypes
Definition sections.h:130
@ QmlAttachedMethods
Definition sections.h:119
@ DetailsRelatedNonmembers
Definition sections.h:108
@ SinceEnumValues
Definition sections.h:120
@ SinceQmlSignals
Definition sections.h:134
@ StdFunctions
Definition sections.h:114
@ SinceVariables
Definition sections.h:126
@ StaticPrivateMembers
Definition sections.h:138
@ StdMacros
Definition sections.h:118
@ Properties
Definition sections.h:91
@ StdStaticVariables
Definition sections.h:109
@ StdTypes
Definition sections.h:99
@ DetailsMemberFunctions
Definition sections.h:97
Sections(const NodeMultiMap &nsmap)
This constructor builds a vector of sections from the since node map, nsmap.
Definition sections.cpp:398
bool hasObsoleteMembers(SectionPtrVector *summary_spv, SectionPtrVector *details_spv) const
Returns true if any sections in this object contain obsolete members.
Definition sections.cpp:993
SectionVector & stdSummarySections()
Definition sections.h:158
const SectionVector & stdSummarySections() const
Definition sections.h:165
static Section & allMembersSection()
Definition sections.h:156
SourceFileParser(ClangCodeParser &clang_parser, PureDocParser &pure_parser)
Definition text.h:12
static void terminate()
The heap allocated variables are freed here.
static void initialize()
This class constructs and maintains a tree of instances of the subclasses of Node.
Definition tree.h:57
WebXMLGenerator(FileResolver &file_resolver)
#define COMMAND_QMLINHERITS
Definition codeparser.h:57
#define COMMAND_MODULESTATE
Definition codeparser.h:37
#define COMMAND_INTERNAL
Definition codeparser.h:34
#define COMMAND_NONREENTRANT
Definition codeparser.h:41
#define COMMAND_OBSOLETE
Definition codeparser.h:42
#define COMMAND_INMODULE
Definition codeparser.h:31
#define COMMAND_DEPRECATED
Definition codeparser.h:21
#define COMMAND_PRELIMINARY
Definition codeparser.h:45
#define COMMAND_WRAPPER
Definition codeparser.h:86
#define COMMAND_CMAKETARGETITEM
Definition codeparser.h:17
#define COMMAND_REENTRANT
Definition codeparser.h:72
#define COMMAND_TITLE
Definition codeparser.h:80
#define COMMAND_STARTPAGE
Definition codeparser.h:78
#define COMMAND_QMLDEFAULT
Definition codeparser.h:54
#define COMMAND_SINCE
Definition codeparser.h:75
#define COMMAND_QMLABSTRACT
Definition codeparser.h:48
#define COMMAND_QTVARIABLE
Definition codeparser.h:71
#define COMMAND_QTCMAKEPACKAGE
Definition codeparser.h:69
#define COMMAND_NOAUTOLIST
Definition codeparser.h:40
#define COMMAND_QTCMAKETARGETITEM
Definition codeparser.h:70
#define COMMAND_DEFAULT
Definition codeparser.h:20
#define COMMAND_THREADSAFE
Definition codeparser.h:79
#define COMMAND_CMAKECOMPONENT
Definition codeparser.h:16
#define COMMAND_QMLREADONLY
Definition codeparser.h:64
#define COMMAND_QMLENUMERATORSFROM
Definition codeparser.h:56
#define COMMAND_INPUBLICGROUP
Definition codeparser.h:32
#define COMMAND_QMLREQUIRED
Definition codeparser.h:65
#define COMMAND_ABSTRACT
Definition codeparser.h:13
#define COMMAND_ATTRIBUTION
Definition codeparser.h:87
#define COMMAND_INQMLMODULE
Definition codeparser.h:33
#define COMMAND_CMAKEPACKAGE
Definition codeparser.h:15
#define COMMAND_INGROUP
Definition codeparser.h:29
#define COMMAND_SUBTITLE
Definition codeparser.h:77
static std::string comparisonCategoryAsString(ComparisonCategory category)
static ComparisonCategory comparisonCategoryFromString(const std::string &string)
#define CONFIG_SOURCES
Definition config.h:416
#define CONFIG_SINGLEEXEC
Definition config.h:413
#define CONFIG_VERSION
Definition config.h:427
#define CONFIG_EXAMPLEDIRS
Definition config.h:363
QMap< QString, ConfigVar > ConfigVarMap
Definition config.h:82
#define CONFIG_INDEXES
Definition config.h:385
#define CONFIG_DEFINES
Definition config.h:357
#define CONFIG_DEPENDS
Definition config.h:358
#define CONFIG_NOLINKERRORS
Definition config.h:398
#define CONFIG_LOGPROGRESS
Definition config.h:390
#define CONFIG_IMAGEDIRS
Definition config.h:381
#define CONFIG_PROJECT
Definition config.h:404
#define CONFIG_SOURCEDIRS
Definition config.h:414
#define CONFIG_HEADERS
Definition config.h:372
#define CONFIG_DOCUMENTATIONINHEADERS
Definition config.h:361
#define CONFIG_NAVIGATION
Definition config.h:397
#define CONFIG_INCLUDEPRIVATE
Definition config.h:383
#define CONFIG_LANDINGPAGE
Definition config.h:386
#define CONFIG_OUTPUTFORMATS
Definition config.h:400
#define CONFIG_LANDINGTITLE
Definition config.h:387
#define CONFIG_MODULEHEADER
Definition config.h:395
#define CONFIG_HEADERDIRS
Definition config.h:371
#define CONFIG_INCLUDEPATHS
Definition config.h:382
QList< Doc > DocList
Definition doc.h:91
Q_DECLARE_TYPEINFO(Doc, Q_RELOCATABLE_TYPE)
std::pair< QString, QString > ArgPair
Definition doc.h:26
QList< ArgPair > ArgList
Definition doc.h:27
QMultiMap< QString, QString > QStringMultiMap
Definition doc.h:28
QHash< QString, Macro > QHash_QString_Macro
QT_BEGIN_NAMESPACE typedef QHash< QString, int > QHash_QString_int
NodeType
Definition genustypes.h:150
@ SharedComment
Definition genustypes.h:173
InclusionFlag
Q_DECLARE_TYPEINFO(Location, Q_COMPLEX_TYPE)
Q_DECLARE_TYPEINFO(Location::StackEntry, Q_RELOCATABLE_TYPE)
This namespace holds QDoc-internal utility methods.
Definition utilities.h:20
bool debugging()
Definition utilities.cpp:42
QMultiMap< QString, CollectionNode * > CNMultiMap
Definition node.h:52
QList< Node * > NodeList
Definition node.h:44
QList< ClassNode * > ClassList
Definition node.h:45
QList< Node * > NodeVector
Definition node.h:46
QMap< QString, NodeMultiMap > NodeMultiMapMap
Definition node.h:50
QMap< QString, Node * > NodeMap
Definition node.h:47
QMap< QString, NodeMap > NodeMapMap
Definition node.h:48
QMap< QString, CollectionNode * > CNMap
Definition node.h:51
QMultiMap< QString, Node * > NodeMultiMap
Definition node.h:49
QList< Parameter > ParameterVector
Definition parameters.h:54
@ Public
Definition access.h:11
@ Private
Definition access.h:11
@ Protected
Definition access.h:11
QMultiMap< QString, Node * > NodeMultiMap
Definition generator.h:35
static void parseSourceFiles(std::vector< QString > &&sources, SourceFileParser &source_file_parser, CppCodeParser &cpp_code_parser)
Definition main.cpp:65
static void singleExecutionMode()
Definition main.cpp:661
void logStartEndMessage(const QLatin1String &startStop, Config &config)
Definition main.cpp:281
static void processQdocconfFile(const QString &fileName)
Processes the qdoc config file fileName.
Definition main.cpp:303
static void clearModuleDependenciesAndProcessQdocconfFile(const QStringList &qdocFiles)
Definition main.cpp:643
static void dualExecutionMode()
Definition main.cpp:678
bool creationTimeBefore(const QFileInfo &fi1, const QFileInfo &fi2)
Definition main.cpp:46
static void loadIndexFiles(const QSet< QString > &formats)
Read some XML indexes containing definitions from other documentation sets.
Definition main.cpp:129
#define QDOC_REFINED_TYPEDEF(_type, _name)
\macro QDOC_REFINED_TYPEDEF(_type, _name)
std::pair< const QmlTypeNode *, NodeVector > ClassNodes
Definition sections.h:13
QList< const Section * > SectionPtrVector
Definition sections.h:79
QList< Section > SectionVector
Definition sections.h:78
QList< ClassNodes > ClassNodesList
Definition sections.h:14
int main(int argc, char *argv[])
[ctor_close]
static QString AUTOLINKERRORS
Definition config.h:261
static QString HEADERSTYLES
Definition config.h:285
static QString IGNORESINCE
Definition config.h:290
static QString CODESUFFIX
Definition config.h:265
static QString EXAMPLEDIRS
Definition config.h:274
static QString CODEINDENT
Definition config.h:263
static QString HEADERDIRS
Definition config.h:282
static QString ROOTDIR
Definition config.h:322
static QString HEADERS
Definition config.h:283
static QString NATURALLANGUAGE
Definition config.h:308
static QString WARNABOUTMISSINGPROJECTFILES
Definition config.h:346
static QString SINGLEEXEC
Definition config.h:325
static QString LANGUAGE
Definition config.h:300
static QString SOURCEDIRS
Definition config.h:326
static QString IGNOREDIRECTIVES
Definition config.h:288
static QString EXCLUDEDIRS
Definition config.h:277
static QString INCLUSIVE
Definition config.h:296
static QString FILEEXTENSIONS
Definition config.h:341
static QString LOGWARNINGSDISABLECLIARGS
Definition config.h:304
static QString OUTPUTFORMATS
Definition config.h:312
static QString REDIRECTDOCUMENTATIONTODEVNULL
Definition config.h:318
static QString LANDINGPAGE
Definition config.h:298
static QString SCRIPTS
Definition config.h:323
static QString QHP
Definition config.h:320
static QString MODULEHEADER
Definition config.h:307
static QString DEPENDS
Definition config.h:269
static QString VERSION
Definition config.h:339
static QString CPPCLASSESPAGE
Definition config.h:266
static QString MACRO
Definition config.h:305
static QString PRODUCTNAME
Definition config.h:315
static QString SOURCES
Definition config.h:328
static QString BUILDVERSION
Definition config.h:262
static QString DOCBOOKEXTENSIONS
Definition config.h:271
static QString VERSIONSYM
Definition config.h:340
static QString IMAGEEXTENSIONS
Definition config.h:342
static QString ENDHEADER
Definition config.h:273
static QString EXAMPLESINSTALLPATH
Definition config.h:276
static QString DEFINES
Definition config.h:268
static QString INCLUDEPRIVATE
Definition config.h:295
static QString HEADERSCRIPTS
Definition config.h:284
static QString SOURCEENCODING
Definition config.h:327
static QString IGNORETOKENS
Definition config.h:289
static QString TAGFILE
Definition config.h:333
static QString IMAGEDIRS
Definition config.h:292
static QString NAVIGATION
Definition config.h:309
static QString SYNTAXHIGHLIGHTING
Definition config.h:331
static QString IGNOREWORDS
Definition config.h:291
static QString IMAGES
Definition config.h:293
static QString EXAMPLES
Definition config.h:275
static QString INCLUDEPATHS
Definition config.h:294
static QString WARNINGLIMIT
Definition config.h:347
static QString STYLESHEETS
Definition config.h:330
static QString LANDINGTITLE
Definition config.h:299
static QString USEALTTEXTASTITLE
Definition config.h:338
static QString CODEPREFIX
Definition config.h:264
static QString LOGPROGRESS
Definition config.h:302
static QString FALSEHOODS
Definition config.h:280
static QString HOMEPAGE
Definition config.h:286
static QString TRADEMARKSPAGE
Definition config.h:336
static QString QMLTYPESPAGE
Definition config.h:343
static QString SPURIOUS
Definition config.h:329
static QString LOGWARNINGS
Definition config.h:303
static QString INDEXES
Definition config.h:297
static QString OUTPUTDIR
Definition config.h:311
static QString EXCLUDEFILES
Definition config.h:278
static QString EXTRAIMAGES
Definition config.h:279
static QString TOCTITLES
Definition config.h:335
static QString NOLINKERRORS
Definition config.h:310
static QString LOCATIONINFO
Definition config.h:301
static QString TABSIZE
Definition config.h:332
static QString TIMESTAMPS
Definition config.h:334
static QString WARNABOUTMISSINGIMAGES
Definition config.h:345
static QString HOMETITLE
Definition config.h:287
static QString DOCUMENTATIONINHEADERS
Definition config.h:272
static QString SHOWINTERNAL
Definition config.h:324
static QString CPPCLASSESTITLE
Definition config.h:267
static QString QUOTINGINFORMATION
Definition config.h:321
static QString FORMATTING
Definition config.h:281
static QString PROJECT
Definition config.h:316
static QString MANIFESTMETA
Definition config.h:306
static QString OUTPUTPREFIXES
Definition config.h:313
static QString DESCRIPTION
Definition config.h:270
static QString REPORTMISSINGALTTEXTFORIMAGES
Definition config.h:319
static QString OUTPUTSUFFIXES
Definition config.h:314
static QString URL
Definition config.h:337
static QString PROJECTROOT
Definition config.h:317
static QString QMLTYPESTITLE
Definition config.h:344
QSet< QString > excluded_directories
Definition config.h:191
QSet< QString > excluded_files
Definition config.h:192
friend bool operator<(const HeaderFilePath &lhs, const HeaderFilePath &rhs)
Definition config.h:208
QHash_QString_Macro macroHash
QHash_QString_int cmdHash
QChar m_delim
Definition config.h:34
int m_valueIndex
Definition config.h:31
int m_index
Definition config.h:32
QString m_var
Definition config.h:33
FnCommandParser(QDocDatabase *qdb, const std::set< Config::HeaderFilePath > &all_headers, const QList< QByteArray > &defines, std::optional< std::reference_wrapper< const PCHFile > > pch)
std::variant< Node *, FnMatchError > operator()(const Location &location, const QString &fnSignature, const QString &idTag, QStringList context)
Use clang to parse the function signature from a function command.
Encapsulates information about.
Definition parsererror.h:13
Location location
Definition parsererror.h:15
QString signature
Definition parsererror.h:14
QString & version()
Definition importrec.h:29
QString m_importId
Definition importrec.h:19
QString & name()
Definition importrec.h:28
bool isEmpty() const
Definition importrec.h:30
QString m_importUri
Definition importrec.h:18
QString m_moduleName
Definition importrec.h:16
ImportRec(QString name, QString version, QString importUri, QStringView importId)
Definition importrec.h:21
QString m_majorMinorVersion
Definition importrec.h:17
Simple structure used by the Doc and DocParser classes.
Location m_defaultDefLocation
Definition macro.h:20
QMap< QString, QString > m_otherDefs
Definition macro.h:21
int numParams
Definition macro.h:22
QString m_defaultDef
Definition macro.h:19
The Node class is the base class for all the nodes in QDoc's parse tree.
void markInternal()
Sets the node's access to Private and its status to Internal.
Definition node.h:210
virtual void setLogicalModuleInfo(const QStringList &)
If this node is a CollectionNode, this function splits arg on the blank character to get a logical mo...
Definition node.h:267
bool isGenericCollection() const
Returns true if the node type is Collection.
Definition node.h:139
QString fullName() const override
Definition node.h:169
bool isExternalPage() const
Returns true if the node type is ExternalPage.
Definition node.h:106
bool isDontDocument() const
Returns true if this node's status is DontDocument.
Definition node.h:99
virtual QString plainName() const
Returns this node's name member.
Definition node.cpp:421
const Doc & doc() const
Returns a reference to the node's Doc data member.
Definition node.h:242
virtual bool setTitle(const QString &)
Sets the node's title, which is used for the title of the documentation page, if one is generated for...
Definition node.h:207
bool isQmlNode() const
Returns true if this node's Genus value is QML.
Definition node.h:126
virtual void appendGroupName(const QString &)
Definition node.h:200
virtual bool isStatic() const
Returns true if the FunctionNode represents a static function.
Definition node.h:159
virtual QString logicalModuleIdentifier() const
If this is a CollectionNode, this function returns the logical module identifier.
Definition node.h:265
void setHadDoc()
Definition node.h:189
void setUrl(const QString &url)
Sets the node's URL to url, which is the url to the page that the node represents.
Definition node.h:184
virtual bool hasClasses() const
Returns true if this is a CollectionNode and its members list contains class nodes.
Definition node.h:195
virtual bool hasNamespaces() const
Returns true if this is a CollectionNode and its members list contains namespace nodes.
Definition node.h:194
bool isEnumType(Genus g) const
Definition node.h:104
bool isGroup() const
Returns true if the node type is Group.
Definition node.h:111
const QString & reconstitutedBrief() const
Definition node.h:254
void setGenus(Genus t)
Definition node.h:93
virtual bool docMustBeGenerated() const
This function is called to perform a test to decide if the node must have documentation generated.
Definition node.h:202
virtual bool isWrapper() const
Returns true if the node is a class node or a QML type node that is marked as being a wrapper class o...
Definition node.cpp:906
bool isPrivate() const
Returns true if this node's access is Private.
Definition node.h:118
virtual QString signature(Node::SignatureOptions) const
void Node::setGenus(Genus t) Sets this node's Genus to t.
Definition node.h:171
bool isActive() const
Returns true if this node's status is Active.
Definition node.h:96
void setAccess(Access t)
Sets the node's access type to t.
Definition node.h:177
const Location & defLocation() const
Returns the Location where this node's dedefinition was seen.
Definition node.h:237
void setIndexNodeFlag(bool isIndexNode=true)
Sets a flag in this Node that indicates the node was created for something in an index file.
Definition node.h:188
virtual void setQmlModule(CollectionNode *)
If this is a QmlTypeNode, this function sets the QML type's QML module pointer to the CollectionNode ...
Definition node.h:269
virtual QString qmlTypeName() const
If this is a QmlPropertyNode or a FunctionNode representing a QML method, this function returns the q...
Definition node.h:261
virtual bool isAbstract() const
Returns true if the ClassNode or QmlTypeNode is marked abstract.
Definition node.h:142
SharedCommentNode * sharedCommentNode()
Definition node.h:258
bool isNamespace() const
Returns true if the node type is Namespace.
Definition node.h:115
bool isTypedef() const
Returns true if the node type is Typedef.
Definition node.h:133
bool isQmlBasicType() const
Returns true if the node type is QmlBasicType.
Definition node.h:124
virtual QString logicalModuleVersion() const
If this is a CollectionNode, this function returns the logical module version number.
Definition node.h:264
QString nodeTypeString() const
Returns this node's type as a string for use as an attribute value in XML or HTML.
Definition node.cpp:617
ComparisonCategory comparisonCategory() const
Definition node.h:191
virtual void addMember(Node *)
In a CollectionNode, this function adds node to the collection node's members list.
Definition node.h:193
bool hasFileNameBase() const
Returns true if the node's file name base has been set.
Definition node.h:174
bool isPage() const
Returns true if the node type is Page.
Definition node.h:116
virtual QString qmlFullBaseName() const
If this is a QmlTypeNode, this function returns the QML full base name.
Definition node.h:262
bool isQmlType() const
Returns true if the node type is QmlType or QmlValueType.
Definition node.h:128
bool isSharedCommentNode() const
Returns true if the node type is SharedComment.
Definition node.h:131
QString physicalModuleName() const
Definition node.h:217
virtual void setCMakePackage(const QString &)
Definition node.h:221
virtual void setDataType(const QString &)
If this node is a PropertyNode or a QmlPropertyNode, its data type data member is set to dataType.
Definition node.h:198
virtual bool isInternal() const
Returns true if the node's status is Internal, or if its parent is a class with Internal status.
Definition node.cpp:802
bool isHeader() const
Returns true if the node type is HeaderFile.
Definition node.h:112
NodeType nodeType() const override
Returns this node's type.
Definition node.h:89
Genus genus() const override
Returns this node's Genus.
Definition node.h:92
virtual bool isPageNode() const
Returns true if this node represents something that generates a documentation page.
Definition node.h:155
void setFileNameBase(const QString &t)
Sets the node's file name base to t.
Definition node.h:175
virtual bool isMacro() const
returns true if either FunctionNode::isMacroWithParams() or FunctionNode::isMacroWithoutParams() retu...
Definition node.h:154
virtual bool isDefault() const
Returns true if the QML property node is marked as default.
Definition node.h:152
bool isEnumType() const
Returns true if the node type is Enum.
Definition node.h:100
virtual Status status() const
Returns the node's status value.
Definition node.h:249
bool isStruct() const
Returns true if the node type is Struct.
Definition node.h:130
virtual bool isTextPageNode() const
Returns true if the node is a PageNode but not an Aggregate.
Definition node.h:160
virtual bool isAttached() const
Returns true if the QML property or QML method node is marked as attached.
Definition node.h:149
Aggregate * parent() const
Returns the node's parent pointer.
Definition node.h:215
static bool fromFlagValue(FlagValue fv, bool defaultValue)
Converts the enum fv back to a boolean value.
Definition node.cpp:701
bool isPublic() const
Returns true if this node's access is Public.
Definition node.h:121
bool isVariable() const
Returns true if the node type is Variable.
Definition node.h:138
void setLocation(const Location &t)
Sets the node's declaration location, its definition location, or both, depending on the suffix of th...
Definition node.cpp:839
virtual void setClassNode(ClassNode *)
If this is a QmlTypeNode, this function sets the C++ class node to cn.
Definition node.h:271
virtual ~Node()=default
The default destructor is virtual so any subclass of Node can be deleted by deleting a pointer to Nod...
QString plainFullName(const Node *relative=nullptr) const
Constructs and returns the node's fully qualified name by recursively ascending the parent links and ...
Definition node.cpp:435
virtual bool isDeprecated() const
Returns true if this node's status is Deprecated.
Definition node.h:141
virtual bool isAggregate() const
Returns true if this node is an aggregate, which means it inherits Aggregate and can therefore have c...
Definition node.h:143
FlagValue
A value used in PropertyNode and QmlPropertyNode that can be -1, 0, or +1.
Definition node.h:82
@ FlagValueDefault
Definition node.h:82
@ FlagValueTrue
Definition node.h:82
@ FlagValueFalse
Definition node.h:82
QString qualifyQmlName()
Returns the QML node's qualified name by prepending the logical module name.
Definition node.cpp:896
void setSharedCommentNode(SharedCommentNode *t)
Definition node.h:257
void setTemplateDecl(std::optional< RelaxedTemplateDeclaration > t)
Definition node.h:185
virtual void setRelatedNonmember(bool b)
Sets a flag in the node indicating whether this node is a related nonmember of something.
Definition node.h:192
virtual Node * clone(Aggregate *)
When reimplemented in a subclass, this function creates a clone of this node on the heap and makes th...
Definition node.h:85
virtual void markReadOnly(bool)
If this node is a QmlPropertyNode, then the property's read-only flag is set to flag.
Definition node.h:213
void setComparisonCategory(const ComparisonCategory &category)
Definition node.h:190
static bool nodeNameLessThan(const Node *first, const Node *second)
Returns true if the node n1 is less than node n2.
Definition node.cpp:59
QString qualifyCppName()
Returns the CPP node's qualified name by prepending the namespaces name + "::" if there isw a namespa...
Definition node.cpp:874
ThreadSafeness inheritedThreadSafeness() const
If this node has a parent, the parent's thread safeness value is returned.
Definition node.cpp:791
const Location & location() const
If this node's definition location is empty, this function returns this node's declaration location.
Definition node.h:238
bool isProxyNode() const
Returns true if the node type is Proxy.
Definition node.h:120
virtual bool wasSeen() const
Returns the seen flag data member of this node if it is a NamespaceNode or a CollectionNode.
Definition node.h:199
bool hadDoc() const
Definition node.h:248
const std::optional< RelaxedTemplateDeclaration > & templateDecl() const
Definition node.h:253
Access access() const
Returns the node's Access setting, which can be Public, Protected, or Private.
Definition node.h:235
virtual void setWrapper()
If this node is a ClassNode or a QmlTypeNode, the node's wrapper flag data member is set to true.
Definition node.h:197
virtual QString cmakeComponent() const
Definition node.h:225
bool isFunction(Genus g=Genus::DontCare) const
Returns true if this is a FunctionNode and its Genus is set to g.
Definition node.h:107
virtual void markDefault()
If this node is a QmlPropertyNode, it is marked as the default property.
Definition node.h:212
ThreadSafeness threadSafeness() const
Returns the thread safeness value for whatever this node represents.
Definition node.cpp:779
virtual QString qtVariable() const
If this node is a CollectionNode, its QT variable is returned.
Definition node.h:220
virtual QString logicalModuleName() const
If this is a CollectionNode, this function returns the logical module name.
Definition node.h:263
Aggregate * root() const
virtual bool isFirstClassAggregate() const
Returns true if this Node is an Aggregate but not a ProxyNode.
Definition node.h:144
virtual bool isMarkedReimp() const
Returns true if the FunctionNode is marked as a reimplemented function.
Definition node.h:157
bool isProperty() const
Returns true if the node type is Property.
Definition node.h:119
virtual QString cmakePackage() const
Definition node.h:224
QString fullDocumentName() const
Construct the full document name for this node and return it.
Definition node.cpp:914
QString url() const
Returns the node's URL, which is the url of the documentation page created for the node or the url of...
Definition node.h:218
bool isTypeAlias() const
Returns true if the node type is Typedef.
Definition node.h:132
virtual Tree * tree() const
Returns a pointer to the Tree this node is in.
Definition node.cpp:829
const Location & declLocation() const
Returns the Location where this node's declaration was seen.
Definition node.h:236
NodeContext createContext() const
Definition node.cpp:116
void setDoc(const Doc &doc, bool replace=false)
Sets this Node's Doc to doc.
Definition node.cpp:496
virtual QString title() const
Returns a string that can be used to print a title in the documentation for whatever this Node is.
Definition node.h:204
virtual void setCMakeComponent(const QString &)
Definition node.h:222
virtual bool setSubtitle(const QString &)
Sets the node's subtitle, which is used for the subtitle of the documentation page,...
Definition node.h:208
bool isModule() const
Returns true if the node type is Module.
Definition node.h:114
virtual bool isAlias() const
Returns true if this QML property is marked as an alias.
Definition node.h:148
virtual QString element() const
If this node is a QmlPropertyNode or a FunctionNode, this function returns the name of the parent nod...
Definition node.h:201
virtual QString subtitle() const
Returns a string that can be used to print a subtitle in the documentation for whatever this Node is.
Definition node.h:205
Node(NodeType type, Aggregate *parent, QString name)
Construct a node with the given type and having the given parent and name.
Definition node.cpp:536
virtual ClassNode * classNode()
If this is a QmlTypeNode, this function returns the pointer to the C++ ClassNode that this QML type r...
Definition node.h:270
bool isClass() const
Returns true if the node type is Class.
Definition node.h:97
const QString & fileNameBase() const
Returns the node's file name base string, which is built once, when Generator::fileBase() is called a...
Definition node.h:173
virtual bool isPropertyGroup() const
Returns true if the node is a SharedCommentNode for documenting multiple C++ properties or multiple Q...
Definition node.h:158
ThreadSafeness
An unsigned char that specifies the degree of thread-safeness of the element.
Definition node.h:65
@ ThreadSafe
Definition node.h:69
@ NonReentrant
Definition node.h:67
@ UnspecifiedSafeness
Definition node.h:66
@ Reentrant
Definition node.h:68
virtual QString fullTitle() const
Returns a string that can be used as the full title for the documentation of this node.
Definition node.h:206
static QString nodeTypeString(NodeType t)
Returns the node type t as a string for use as an attribute value in XML or HTML.
Definition node.cpp:630
bool isSharingComment() const
This function returns true if the node is sharing a comment with other nodes.
Definition node.h:256
QString fullName(const Node *relative) const
Constructs and returns this node's full name.
Definition node.cpp:481
virtual void setCMakeTargetItem(const QString &)
Definition node.h:223
virtual bool isPureVirtual() const
Definition node.h:123
virtual CollectionNode * logicalModule() const
If this is a QmlTypeNode, a pointer to its QML module is returned, which is a pointer to a Collection...
Definition node.h:268
QString since() const
Returns the node's since string, which can be empty.
Definition node.h:252
virtual void setAbstract(bool)
If this node is a ClassNode or a QmlTypeNode, the node's abstract flag data member is set to b.
Definition node.h:196
bool hasDoc() const
Returns true if this node is documented, or it represents a documented node read from the index ('had...
Definition node.cpp:859
virtual bool isInAPI() const
Definition node.h:243
void setParent(Aggregate *n)
Sets the node's parent pointer to n.
Definition node.h:187
static Genus getGenus(NodeType t)
Determines the appropriate Genus value for the NodeType value t and returns that Genus value.
Definition node.cpp:559
bool isPreliminary() const
Returns true if this node's status is Preliminary.
Definition node.h:117
static FlagValue toFlagValue(bool b)
Converts the boolean value b to an enum representation of the boolean type, which includes an enum va...
Definition node.cpp:690
void setReconstitutedBrief(const QString &t)
When reading an index file, this function is called with the reconstituted brief clause t to set the ...
Definition node.h:186
virtual bool hasTag(const QString &) const
If this node is a FunctionNode, the function returns true if the function has the tag t.
Definition node.h:227
virtual QString cmakeTargetItem() const
Definition node.h:226
bool isRelatedNonmember() const
Returns true if this is a related nonmember of something.
Definition node.h:129
void setSince(const QString &since)
Sets the information about the project and version a node was introduced in, unless the version is lo...
Definition node.cpp:731
virtual bool isClassNode() const
Returns true if this is an instance of ClassNode.
Definition node.h:150
bool isCppNode() const
Returns true if this node's Genus value is CPP.
Definition node.h:98
void setStatus(Status t)
Sets the node's status to t.
Definition node.cpp:510
QString extractClassName(const QString &string) const
Extract a class name from the type string and return it.
Definition node.cpp:751
void setDeprecated(const QString &sinceVersion)
Sets the Node status to Node::Deprecated, unless sinceVersion represents a future version.
Definition node.cpp:961
virtual bool isRelatableType() const
Returns true if this node is something you can relate things to with the relates command.
Definition node.h:156
virtual bool isCollectionNode() const
Returns true if this is an instance of CollectionNode.
Definition node.h:151
static bool nodeSortKeyOrNameLessThan(const Node *n1, const Node *n2)
Returns true if node n1 is less than node n2 when comparing the sort keys, defined with.
Definition node.cpp:102
void setThreadSafeness(ThreadSafeness t)
Sets the node's thread safeness to t.
Definition node.h:181
void setPhysicalModuleName(const QString &name)
Sets the node's physical module name.
Definition node.h:183
Status
An unsigned char that specifies the status of the documentation element in the documentation set.
Definition node.h:57
@ Internal
Definition node.h:61
@ Active
Definition node.h:60
@ DontDocument
Definition node.h:62
@ Deprecated
Definition node.h:58
@ Preliminary
Definition node.h:59
bool isQmlModule() const
Returns true if the node type is QmlModule.
Definition node.h:125
SignatureOption
Definition node.h:72
@ SignatureReturnType
Definition node.h:75
@ SignatureDefaultValues
Definition node.h:74
@ SignaturePlain
Definition node.h:73
@ SignatureTemplateParams
Definition node.h:76
bool isProtected() const
Returns true if this node's access is Protected.
Definition node.h:122
bool isExample() const
Returns true if the node type is Example.
Definition node.h:105
QString qualifyWithParentName()
Return the name of this node qualified with the parent name and "::" if there is a parent name.
Definition node.cpp:885
bool isIndexNode() const
Returns true if this node was created from something in an index file.
Definition node.h:113
QString name() const
Returns the node's name data member.
QString plainSignature() const
Constructs and returns the node's fully qualified signature by recursively ascending the parent links...
Definition node.cpp:459
bool isUnion() const
Returns true if the node type is Union.
Definition node.h:137
const QString & deprecatedSince() const
Definition node.h:230
bool isQmlProperty() const
Returns true if the node type is QmlProperty.
Definition node.h:127
virtual void setQtVariable(const QString &)
If this node is a CollectionNode, its QT variable is set to v.
Definition node.h:219
QByteArray name
QTemporaryDir dir
A class for parsing and managing a function parameter list.
Definition main.cpp:28
Parameter & operator[](int index)
Definition parameters.h:77
const ParameterVector & parameters() const
Definition parameters.h:68
bool isEmpty() const
Definition parameters.h:70
void append(const QString &type)
Definition parameters.h:80
void pop_back()
Definition parameters.h:81
QSet< QString > getNames() const
Insert all the parameter names into names.
bool match(const Parameters &parameters) const
Returns true if parameters contains the same parameter signature as this.
void reserve(int count)
Definition parameters.h:73
Parameters(const QString &signature)
QString rawSignature(bool names=false, bool values=false) const
Returns the signature of all the parameters with all the spaces and commas removed.
QString generateTypeList() const
Construct a list of the parameter types and return it.
bool isValid() const
Definition parameters.h:71
void clear()
Definition parameters.h:62
Parameter & last()
Definition parameters.h:75
bool isPrivateSignal() const
Definition parameters.h:69
const Parameter & at(int i) const
Definition parameters.h:74
void append(const QString &type, const QString &name)
Definition parameters.h:79
QString signature(bool includeValues=false) const
Returns the list of reconstructed parameters.
const Parameter & last() const
Definition parameters.h:76
int count() const
Definition parameters.h:72
QString generateTypeAndNameList() const
Construct a list of the parameter type/name pairs and return it.
void append(const QString &type, const QString &name, const QString &value)
Append a Parameter constructed from type, name, and value to the parameter vector.
void set(const QString &signature)
Parse the parameter signature by splitting the string, and store the individual parameters in the par...
void setPrivateSignal()
Definition parameters.h:82
Processes parser errors and outputs warnings for them.
Definition parsererror.h:20
void operator()(const FnMatchError &e) const
Generates a warning specific to FnMatchError.
QCommandLineOption noExamplesOption
QCommandLineOption redirectDocumentationToDevNullOption
QCommandLineOption outputFormatOption
QCommandLineOption prepareOption
QCommandLineOption showInternalOption
QCommandLineOption singleExecOption
QCommandLineOption useDocBookExtensions
QCommandLineOption autoLinkErrorsOption
QCommandLineOption highlightingOption
QCommandLineOption outputDirOption
QCommandLineOption atomsDumpOption
QCommandLineOption installDirOption
QCommandLineOption debugOption
QCommandLineOption timestampsOption
QCommandLineOption dependsOption
QCommandLineOption logProgressOption
QCommandLineOption indexDirOption
QCommandLineOption noLinkErrorsOption
QCommandLineOption includePathSystemOption
void process(const QStringList &arguments)
QCommandLineOption generateOption
QCommandLineOption includePathOption
QCommandLineOption frameworkOption
QCommandLineOption defineOption
A struct for indicating that a ClassNode is related in some way to another ClassNode.
Access m_access
ClassNode * m_node
RelatedClass(Access access, ClassNode *node)
This is the constructor used when the related class has been resolved.
RelatedClass(Access access, QStringList path)
RelatedClass()=default
The default constructor does nothing.
QStringList m_path
bool isPrivate() const
Returns true if this RelatedClass is marked as Access::Private.
ValuedDeclaration valued_declaration
std::optional< TemplateDeclarationStorage > template_declaration
std::string to_std_string() const
Represents a file that is reachable by QDoc based on its current configuration.
const QString & get_path() const
Returns a string representing the canonicalized path to the file that was resolved.
ResolvedFile(QString query, FilePath filepath)
Constructs an instance of this type from query and filepath.
const QString & get_query() const
Returns a string representing the user-inputted path that was used to resolve the file.
std::vector< RelaxedTemplateParameter > parameters
Definition topic.h:9
QString m_topic
Definition topic.h:22
Topic(QString &t, QString a)
Definition topic.h:12
Topic()=default
QString m_args
Definition topic.h:23
~Topic()=default
bool isEmpty() const
Definition topic.h:15
void clear()
Definition topic.h:16
QStringList context
Definition codeparser.h:99
std::string to_std_string(PrintingPolicy policy=default_printing_policy()) const
static PrintingPolicy default_printing_policy()
bool are_template_declarations_substitutable(const TemplateDeclarationStorage &left, const TemplateDeclarationStorage &right)
QList< Topic > TopicList
Definition topic.h:25