69 CLASS_SEC = 0x00000001,
70 NAMESPACE_SEC = 0x00000010,
71 COMPOUND_MASK = CLASS_SEC,
72 SCOPE_MASK = COMPOUND_MASK | NAMESPACE_SEC,
74 CLASSDOC_SEC = 0x00000800,
75 STRUCTDOC_SEC = 0x00001000,
76 UNIONDOC_SEC = 0x00002000,
77 EXCEPTIONDOC_SEC = 0x00004000,
78 NAMESPACEDOC_SEC = 0x00008000,
79 INTERFACEDOC_SEC = 0x00010000,
80 PROTOCOLDOC_SEC = 0x00020000,
81 CATEGORYDOC_SEC = 0x00040000,
82 SERVICEDOC_SEC = 0x00080000,
83 SINGLETONDOC_SEC = 0x00100000,
84 COMPOUNDDOC_MASK = CLASSDOC_SEC | STRUCTDOC_SEC | UNIONDOC_SEC |
85 INTERFACEDOC_SEC | EXCEPTIONDOC_SEC | PROTOCOLDOC_SEC |
86 CATEGORYDOC_SEC | SERVICEDOC_SEC | SINGLETONDOC_SEC,
88 SOURCE_SEC = 0x00400000,
89 HEADER_SEC = 0x00800000,
90 FILE_MASK = SOURCE_SEC | HEADER_SEC,
92 ENUMDOC_SEC = 0x01000000,
93 ENUM_SEC = 0x02000000,
94 EMPTY_SEC = 0x03000000,
95 PAGEDOC_SEC = 0x04000000,
96 VARIABLE_SEC = 0x05000000,
97 FUNCTION_SEC = 0x06000000,
98 TYPEDEF_SEC = 0x07000000,
99 MEMBERDOC_SEC = 0x08000000,
100 OVERLOADDOC_SEC = 0x09000000,
101 EXAMPLE_SEC = 0x0a000000,
102 VARIABLEDOC_SEC = 0x0b000000,
103 FILEDOC_SEC = 0x0c000000,
104 DEFINEDOC_SEC = 0x0d000000,
105 INCLUDE_SEC = 0x0e000000,
106 DEFINE_SEC = 0x0f000000,
107 GROUPDOC_SEC = 0x10000000,
108 USINGDIR_SEC = 0x11000000,
109 MAINPAGEDOC_SEC = 0x12000000,
110 MEMBERGRP_SEC = 0x13000000,
111 USINGDECL_SEC = 0x14000000,
112 PACKAGE_SEC = 0x15000000,
113 PACKAGEDOC_SEC = 0x16000000,
114 OBJCIMPL_SEC = 0x17000000,
115 DIRDOC_SEC = 0x18000000
116 ,EXPORTED_INTERFACE_SEC = 0x19000000
117 ,INCLUDED_SERVICE_SEC = 0x1A000000
121 static const uint64
Template = (1ULL<<0);
122 static const uint64 Generic = (1ULL<<1);
123 static const uint64 Ref = (1ULL<<2);
124 static const uint64 Value = (1ULL<<3);
125 static const uint64 Interface = (1ULL<<4);
126 static const uint64 Struct = (1ULL<<5);
127 static const uint64 Union = (1ULL<<6);
128 static const uint64 Exception = (1ULL<<7);
129 static const uint64 Protocol = (1ULL<<8);
130 static const uint64 Category = (1ULL<<9);
131 static const uint64 SealedClass = (1ULL<<10);
132 static const uint64 AbstractClass = (1ULL<<11);
133 static const uint64 Enum = (1ULL<<12);
134 static const uint64 Service = (1ULL<<13);
135 static const uint64 Singleton = (1ULL<<14);
136 static const uint64 ForwardDecl = (1ULL<<15);
139 static const uint64 PrivateGettable = (1ULL<<20);
140 static const uint64 ProtectedGettable = (1ULL<<21);
141 static const uint64 PrivateSettable = (1ULL<<22);
142 static const uint64 ProtectedSettable = (1ULL<<23);
143 static const uint64 Inline = (1ULL<<24);
144 static const uint64 Explicit = (1ULL<<25);
145 static const uint64 Mutable = (1ULL<<26);
146 static const uint64 Settable = (1ULL<<27);
147 static const uint64 Gettable = (1ULL<<28);
148 static const uint64 Readable = (1ULL<<29);
149 static const uint64 Writable = (1ULL<<30);
150 static const uint64 Final = (1ULL<<31);
151 static const uint64 Abstract = (1ULL<<32);
152 static const uint64 Addable = (1ULL<<33);
153 static const uint64 Removable = (1ULL<<34);
154 static const uint64 Raisable = (1ULL<<35);
155 static const uint64 Override = (1ULL<<36);
156 static const uint64 New = (1ULL<<37);
157 static const uint64 Sealed = (1ULL<<38);
158 static const uint64 Initonly = (1ULL<<39);
159 static const uint64 Optional = (1ULL<<40);
160 static const uint64 Required = (1ULL<<41);
161 static const uint64 NonAtomic = (1ULL<<42);
162 static const uint64 Copy = (1ULL<<43);
163 static const uint64 Retain = (1ULL<<44);
164 static const uint64 Assign = (1ULL<<45);
165 static const uint64 Strong = (1ULL<<46);
166 static const uint64 Weak = (1ULL<<47);
167 static const uint64 Unretained = (1ULL<<48);
168 static const uint64 Alias = (1ULL<<49);
169 static const uint64 ConstExp = (1ULL<<50);
170 static const uint64 Default = (1ULL<<51);
171 static const uint64 Delete = (1ULL<<52);
172 static const uint64 NoExcept = (1ULL<<53);
173 static const uint64 Attribute = (1ULL<<54);
174 static const uint64 Property = (1ULL<<55);
175 static const uint64 Readonly = (1ULL<<56);
176 static const uint64 Bound = (1ULL<<57);
177 static const uint64 Constrained = (1ULL<<58);
178 static const uint64 Transient = (1ULL<<59);
179 static const uint64 MaybeVoid = (1ULL<<60);
180 static const uint64 MaybeDefault = (1ULL<<61);
181 static const uint64 MaybeAmbiguous = (1ULL<<62);
182 static const uint64 Published = (1ULL<<63);
198 void addSpecialListItem(
const char *listName,
int index);
202 void setParent(
Entry *parent) { m_parent = parent; }
213 void addSubEntry (
Entry* e) ;
298 switch( groupDocType )
300 case GROUPDOC_NORMAL:
return "\\defgroup";
301 case GROUPDOC_ADD:
return "\\addgroup";
302 case GROUPDOC_WEAK:
return "\\weakgroup";
303 default:
return "unknown group command";
308 if( section != GROUPDOC_SEC )
310 return Grouping::GROUPING_LOWEST;
312 switch( groupDocType )
317 default:
return Grouping::GROUPING_LOWEST;
341 void setEntry(
Entry *e);
343 void changeSection(
int section) { m_section = section; }
344 void setFileDef(
FileDef *fd) { m_fileDef = fd; }
346 Entry *entry()
const {
return m_info; }
347 int section()
const {
return m_section; }
349 const QCString &type()
const {
return m_type; }
351 TagInfo *tagInfo()
const {
return m_tagInfo; }
353 EntryNav *parent()
const {
return m_parent; }
354 FileDef *fileDef()
const {
return m_fileDef; }
bool callGraph
do we need to draw the call graph?
Definition: entry.h:249
TagInfo * tagInfo
tag file info
Definition: entry.h:238
QGString program
the program text
Definition: entry.h:256
QCString includeName
include name (3 arg of \class)
Definition: entry.h:259
This class represents an function or template argument list.
Definition: arguments.h:89
This file contains a number of basic enums and types.
bool proto
prototype ?
Definition: entry.h:247
uint64 spec
class/member specifiers
Definition: entry.h:243
Abstract interface for a template.
Definition: template.h:542
bool stat
static ?
Definition: entry.h:245
membership in group was defined via @weakgroup
Definition: types.h:68
Sections
Definition: entry.h:68
Represents an unstructured piece of information, about an entity found in the sources.
Definition: entry.h:63
QCString read
property read accessor
Definition: entry.h:271
membership in group was defined via @defgroup
Definition: types.h:70
static int num
counts the total number of entries
Definition: entry.h:293
int briefLine
line number at which the brief desc. was found
Definition: entry.h:264
int docLine
line number at which the documentation was found
Definition: entry.h:261
ArgumentList * argList
member arguments as a list
Definition: entry.h:254
Abstract interface for file based memory storage operations.
Definition: store.h:27
QCString name
member name
Definition: entry.h:237
A model of a file symbol.
Definition: filedef.h:64
int initLines
define/variable initializer lines to show
Definition: entry.h:244
GroupPri_t
Grouping priority.
Definition: types.h:65
Store implementation based on a file.
Definition: filestorage.h:28
This struct is used to capture the tag file information for an Entry.
Definition: entry.h:50
Entry * parent() const
Definition: entry.h:205
QCString id
libclang id
Definition: entry.h:290
SrcLangExt
Language as given by extension.
Definition: types.h:41
bool hidden
does this represent an entity that is hidden from the output
Definition: entry.h:287
int mGrpId
member group id
Definition: entry.h:278
BaseInfo(const char *n, Protection p, Specifier v)
Definition: entry.h:40
QList< ArgumentList > * tArgLists
template argument declarations
Definition: entry.h:255
int startColumn
start column of entry in the source
Definition: entry.h:284
QCString includeFile
include file (2 arg of \class, must be unique)
Definition: entry.h:258
bool subGrouping
automatically group class members?
Definition: entry.h:248
bool callerGraph
do we need to draw the caller graph?
Definition: entry.h:250
QList< Grouping > * groups
list of groups this entry belongs to
Definition: entry.h:280
QGString initializer
initial value (for variables)
Definition: entry.h:257
QCString inbodyFile
file in which the body doc was found
Definition: entry.h:268
QCString brief
brief description (doc block)
Definition: entry.h:263
int endBodyLine
line number where the definition ends
Definition: entry.h:277
ArgumentList * typeConstr
where clause (C#) for type constraints
Definition: entry.h:275
addgroup
Definition: entry.h:187
QCString name
the name of the base class
Definition: entry.h:42
Specifier virt
virtualness
Definition: entry.h:44
QList< SectionInfo > * anchors
list of anchors defined in this entry
Definition: entry.h:281
Specifier
Virtualness of a member.
Definition: types.h:29
QCString exception
throw specification
Definition: entry.h:274
int startLine
start line of entry in the source
Definition: entry.h:283
QCString args
member argument string
Definition: entry.h:252
QCString write
property write accessor
Definition: entry.h:272
Class representing a section in a page.
Definition: section.h:27
Protection protection
class protection
Definition: entry.h:241
Wrapper for a node in the Entry tree.
Definition: entry.h:333
Protection prot
inheritance type
Definition: entry.h:43
const char * groupDocCmd() const
return the command name used to define GROUPDOC_SEC
Definition: entry.h:296
RelatesType relatesType
how relates is handled
Definition: entry.h:270
The QFile class is an I/O device that operates on files.
Definition: qfile.h:50
QCString inbodyDocs
documentation inside the body of a function
Definition: entry.h:266
QCString doc
documentation block (partly parsed)
Definition: entry.h:260
Specifier virt
virtualness of the entry
Definition: entry.h:251
bool artificial
Artificially introduced item.
Definition: entry.h:288
This is an alternative implementation of QCString.
Definition: qgstring.h:19
const QList< Entry > * children() const
Definition: entry.h:210
defgroup
Definition: entry.h:186
QCString fileName
file this entry was extracted from
Definition: entry.h:282
bool explicitExternal
explicitly defined as external?
Definition: entry.h:246
QCString bitfields
member's bit fields
Definition: entry.h:253
QCString inside
name of the class in which documents are found
Definition: entry.h:273
MethodTypes
Kind of method.
Definition: types.h:32
Protection
Protection level of members.
Definition: types.h:26
QCString docFile
file in which the documentation was found
Definition: entry.h:262
MethodTypes mtype
signal, slot, (dcop) method, or property?
Definition: entry.h:242
RelatesType
Type of member relation.
Definition: types.h:35
QCString relates
related class (doc block)
Definition: entry.h:269
SrcLangExt lang
programming language in which this entry was found
Definition: entry.h:286
This is an alternative implementation of QCString.
Definition: qcstring.h:131
int inbodyLine
line number at which the body doc was found
Definition: entry.h:267
This class stores information about an inheritance relation.
Definition: entry.h:37
GroupDocType
Definition: entry.h:184
QList< BaseInfo > * extends
list of base classes
Definition: entry.h:279
membership in group was defined via @add[to]group
Definition: types.h:69
QCString type
member type
Definition: entry.h:236
int section
entry type (see Sections);
Definition: entry.h:235
int bodyLine
line number of the definition in the source
Definition: entry.h:276
QCString briefFile
file in which the brief desc. was found
Definition: entry.h:265
QList< ListItemInfo > * sli
special lists (test/todo/bug/deprecated/..) this entry is in
Definition: entry.h:285