Doxygen
Loading...
Searching...
No Matches
DocSecRefList Class Reference

Node representing a list of section references. More...

#include <src/docnode.h>

+ Inheritance diagram for DocSecRefList:
+ Collaboration diagram for DocSecRefList:

Public Member Functions

 DocSecRefList (DocParser *parser, DocNodeVariant *parent)
 
void parse ()
 
- Public Member Functions inherited from DocCompoundNode
 DocCompoundNode (DocParser *parser, DocNodeVariant *parent)
 
DocNodeListchildren ()
 
const DocNodeListchildren () const
 
- Public Member Functions inherited from DocNode
 DocNode (DocParser *parser, DocNodeVariant *parent)
 
 ~DocNode ()=default
 
DocNodeVariantparent ()
 
const DocNodeVariantparent () const
 
DocNodeVariantthisVariant ()
 
const DocNodeVariantthisVariant () const
 
void setThisVariant (DocNodeVariant *thisVariant)
 
DocParserparser ()
 
const DocParserparser () const
 
void setParent (DocNodeVariant *parent)
 
bool isPreformatted () const
 

Additional Inherited Members

- Protected Types inherited from DocNode
enum  RefType { Unknown , Anchor , Section , Table }
 
- Protected Member Functions inherited from DocNode
void setInsidePreformatted (bool p)
 

Detailed Description

Node representing a list of section references.

Definition at line 952 of file docnode.h.

Constructor & Destructor Documentation

◆ DocSecRefList()

DocSecRefList::DocSecRefList ( DocParser * parser,
DocNodeVariant * parent )
inline

Definition at line 955 of file docnode.h.

DocCompoundNode(DocParser *parser, DocNodeVariant *parent)
Definition docnode.h:140
DocParser * parser()
Definition docnode.h:97
DocNodeVariant * parent()
Definition docnode.h:89

References DocCompoundNode::DocCompoundNode(), DocNode::parent(), and DocNode::parser().

Member Function Documentation

◆ parse()

void DocSecRefList::parse ( )

Definition at line 609 of file docnode.cpp.

610{
611 AUTO_TRACE();
612 auto ns = AutoNodeStack(parser(),thisVariant());
613
614 Token tok=parser()->tokenizer.lex();
615 // skip white space
616 while (tok.is_any_of(TokenRetval::TK_WHITESPACE, TokenRetval::TK_NEWPARA)) tok=parser()->tokenizer.lex();
617 // handle items
618 while (!tok.is_any_of(TokenRetval::TK_NONE, TokenRetval::TK_EOF))
619 {
620 if (tok.is_any_of(TokenRetval::TK_COMMAND_AT, TokenRetval::TK_COMMAND_BS))
621 {
622 switch (Mappers::cmdMapper->map(parser()->context.token->name))
623 {
625 {
626 tok=parser()->tokenizer.lex();
627 if (!tok.is(TokenRetval::TK_WHITESPACE))
628 {
629 warn_doc_error(parser()->context.fileName,parser()->tokenizer.getLineNr(),"expected whitespace after \\refitem command");
630 break;
631 }
632 tok=parser()->tokenizer.lex();
633 if (!tok.is_any_of(TokenRetval::TK_WORD,TokenRetval::TK_LNKWORD))
634 {
635 warn_doc_error(parser()->context.fileName,parser()->tokenizer.getLineNr(),"unexpected token {} as the argument of \\refitem",
636 tok.to_string());
637 break;
638 }
639
640 children().append<DocSecRefItem>(parser(),thisVariant(),parser()->context.token->name);
641 children().get_last<DocSecRefItem>()->parse();
642 }
643 break;
645 return;
646 default:
647 warn_doc_error(parser()->context.fileName,parser()->tokenizer.getLineNr(),"Illegal command '{:c}{}' as part of a \\secreflist",
648 tok.command_to_char(),qPrint(parser()->context.token->name));
649 return;
650 }
651 }
652 else if (tok.is(TokenRetval::TK_WHITESPACE))
653 {
654 // ignore whitespace
655 }
656 else
657 {
658 warn_doc_error(parser()->context.fileName,parser()->tokenizer.getLineNr(),"Unexpected token {} inside section reference list",
659 tok.to_string());
660 return;
661 }
662 tok=parser()->tokenizer.lex();
663 }
664
665}
DocNodeList & children()
Definition docnode.h:142
DocNodeVariant * thisVariant()
Definition docnode.h:92
DocTokenizer tokenizer
DocParserContext context
bool is(TokenRetval rv) const
TOKEN_SPECIFICATIONS RETVAL_SPECIFICATIONS const char * to_string() const
bool is_any_of(ARGS... args) const
char command_to_char() const
@ CMD_ENDSECREFLIST
Definition cmdmapper.h:53
#define AUTO_TRACE(...)
Definition docnode.cpp:46
#define warn_doc_error(file, line, fmt,...)
Definition message.h:112
const Mapper< CommandType > * cmdMapper
const char * qPrint(const char *s)
Definition qcstring.h:672
void append(Args &&... args)
Append a new DocNodeVariant to the list by constructing it with type T and parameters Args.
Definition docnode.h:1393
T * get_last()
Returns a pointer to the last element in the list if that element exists and holds a T,...
Definition docnode.h:1404
TokenInfo * token
Definition docparser_p.h:92
QCString name

References DocNodeList::append(), AUTO_TRACE, DocCompoundNode::children(), CMD_ENDSECREFLIST, CMD_SECREFITEM, Mappers::cmdMapper, Token::command_to_char(), DocParser::context, DocNodeList::get_last(), Token::is(), Token::is_any_of(), DocTokenizer::lex(), TokenInfo::name, parse(), DocNode::parser(), qPrint(), DocNode::thisVariant(), Token::to_string(), DocParserContext::token, DocParser::tokenizer, and warn_doc_error.

Referenced by parse().


The documentation for this class was generated from the following files: