Public Member Functions | Private Attributes | List of all members
DocHtmlDescList Class Reference

#include <docparser.h>

Inheritance diagram for DocHtmlDescList:
CompAccept< DocHtmlDescList > DocNode

Public Member Functions

 DocHtmlDescList (DocNode *parent, const HtmlAttribList &attribs)
 
Kind kind () const
 
const HtmlAttribListattribs () const
 
void accept (DocVisitor *v)
 
int parse ()
 
- Public Member Functions inherited from CompAccept< DocHtmlDescList >
 CompAccept ()
 
virtual ~CompAccept ()
 
void accept (DocHtmlDescList *obj, DocVisitor *v)
 
const QList< DocNode > & children () const
 
QList< DocNode > & children ()
 
- Public Member Functions inherited from DocNode
 DocNode ()
 
virtual ~DocNode ()
 
DocNodeparent () const
 
void setParent (DocNode *parent)
 
bool isPreformatted () const
 

Private Attributes

HtmlAttribList m_attribs
 

Additional Inherited Members

- Public Types inherited from DocNode
enum  Kind {
  Kind_Root = 0, Kind_Word = 1, Kind_WhiteSpace = 2, Kind_Para = 3,
  Kind_AutoList = 4, Kind_AutoListItem = 5, Kind_Symbol = 6, Kind_URL = 7,
  Kind_StyleChange = 8, Kind_SimpleSect = 9, Kind_Title = 10, Kind_SimpleList = 11,
  Kind_SimpleListItem = 12, Kind_Section = 13, Kind_Verbatim = 14, Kind_XRefItem = 15,
  Kind_HtmlList = 16, Kind_HtmlListItem = 17, Kind_HtmlDescList = 18, Kind_HtmlDescData = 19,
  Kind_HtmlDescTitle = 20, Kind_HtmlTable = 21, Kind_HtmlRow = 22, Kind_HtmlCell = 23,
  Kind_HtmlCaption = 24, Kind_LineBreak = 25, Kind_HorRuler = 26, Kind_Anchor = 27,
  Kind_IndexEntry = 28, Kind_Internal = 29, Kind_HRef = 30, Kind_Include = 31,
  Kind_IncOperator = 32, Kind_HtmlHeader = 33, Kind_Image = 34, Kind_DotFile = 35,
  Kind_Link = 36, Kind_Ref = 37, Kind_Formula = 38, Kind_SecRefItem = 39,
  Kind_SecRefList = 40, Kind_SimpleSectSep = 41, Kind_LinkedWord = 42, Kind_ParamSect = 43,
  Kind_ParamList = 44, Kind_InternalRef = 45, Kind_Copy = 46, Kind_Text = 47,
  Kind_MscFile = 48, Kind_HtmlBlockQuote = 49, Kind_VhdlFlow = 50, Kind_ParBlock = 51,
  Kind_DiaFile = 52
}
 
- Protected Member Functions inherited from DocNode
void setInsidePreformatted (bool p)
 
- Protected Attributes inherited from CompAccept< DocHtmlDescList >
QList< DocNodem_children
 
- Protected Attributes inherited from DocNode
DocNodem_parent
 

Detailed Description

Node representing a Html description list

Definition at line 921 of file docparser.h.

Constructor & Destructor Documentation

DocHtmlDescList::DocHtmlDescList ( DocNode parent,
const HtmlAttribList attribs 
)
inline

Definition at line 924 of file docparser.h.

924  :
925  m_attribs(attribs) { m_parent = parent; }
DocNode * parent() const
Definition: docparser.h:147
DocNode * m_parent
Definition: docparser.h:163
HtmlAttribList m_attribs
Definition: docparser.h:932

Member Function Documentation

void DocHtmlDescList::accept ( DocVisitor v)
inlinevirtual

Acceptor function for node visitors. Part of the visitor pattern.

Parameters
vAbstract visitor.

Implements DocNode.

Definition at line 928 of file docparser.h.

void accept(T *obj, DocVisitor *v)
Definition: docparser.h:177
const HtmlAttribList& DocHtmlDescList::attribs ( ) const
inline

Definition at line 927 of file docparser.h.

927 { return m_attribs; }
HtmlAttribList m_attribs
Definition: docparser.h:932
Kind DocHtmlDescList::kind ( ) const
inlinevirtual

Returns the kind of node. Provides runtime type information

Implements DocNode.

Definition at line 926 of file docparser.h.

int DocHtmlDescList::parse ( )

Definition at line 3997 of file docparser.cpp.

3998 {
3999  int retval=RetVal_OK;
4000  g_nodeStack.push(this);
4001  DBG(("DocHtmlDescList::parse() start\n"));
4002 
4003  // get next token
4004  int tok=doctokenizerYYlex();
4005  // skip whitespace
4006  while (tok==TK_WHITESPACE || tok==TK_NEWPARA) tok=doctokenizerYYlex();
4007  // should find a html tag now
4008  if (tok==TK_HTMLTAG)
4009  {
4010  int tagId=Mappers::htmlTagMapper->map(g_token->name);
4011  if (tagId==HTML_DT && !g_token->endTag) // found <dt> tag
4012  {
4013  // continue
4014  }
4015  else // found some other tag
4016  {
4017  warn_doc_error(g_fileName,doctokenizerYYlineno,"expected <dt> tag but "
4018  "found <%s> instead!",qPrint(g_token->name));
4020  goto enddesclist;
4021  }
4022  }
4023  else if (tok==0) // premature end of comment
4024  {
4025  warn_doc_error(g_fileName,doctokenizerYYlineno,"unexpected end of comment while looking"
4026  " for a html description title");
4027  goto enddesclist;
4028  }
4029  else // token other than html token
4030  {
4031  warn_doc_error(g_fileName,doctokenizerYYlineno,"expected <dt> tag but found %s token instead!",
4032  tokToString(tok));
4033  goto enddesclist;
4034  }
4035 
4036  do
4037  {
4039  m_children.append(dt);
4040  DocHtmlDescData *dd=new DocHtmlDescData(this);
4041  m_children.append(dd);
4042  retval=dt->parse();
4043  if (retval==RetVal_DescData)
4044  {
4045  retval=dd->parse();
4046  }
4047  else if (retval!=RetVal_DescTitle)
4048  {
4049  // error
4050  break;
4051  }
4052  } while (retval==RetVal_DescTitle);
4053 
4054  if (retval==0)
4055  {
4056  warn_doc_error(g_fileName,doctokenizerYYlineno,"unexpected end of comment while inside <dl> block");
4057  }
4058 
4059 enddesclist:
4060 
4061  DocNode *n=g_nodeStack.pop();
4062  ASSERT(n==this);
4063  DBG(("DocHtmlDescList::parse() end\n"));
4064  return retval==RetVal_EndDesc ? RetVal_OK : retval;
4065 }
static QCString g_fileName
Definition: docparser.cpp:95
QList< DocNode > m_children
Definition: docparser.h:189
void append(const type *d)
Definition: qlist.h:73
#define DBG(x)
Definition: docparser.cpp:59
int doctokenizerYYlineno
void warn_doc_error(const char *file, int line, const char *fmt,...)
Definition: message.cpp:210
static Mapper * htmlTagMapper
Definition: cmdmapper.h:220
static QStack< DocNode > g_nodeStack
Definition: docparser.cpp:91
TokenInfo * g_token
int doctokenizerYYlex(void)
void push(const type *d)
Definition: qstack.h:58
void doctokenizerYYpushBackHtmlTag(const char *tag)
std::void_t< T > n
int map(const char *n)
Definition: cmdmapper.cpp:225
type * pop()
Definition: qstack.h:59
HtmlAttribList attribs
Definition: doctokenizer.h:102
QCString name
Definition: doctokenizer.h:77
const char * tokToString(int token)
const char * qPrint(const char *s)
Definition: qcstring.h:797
#define ASSERT(x)
Definition: qglobal.h:590

Member Data Documentation

HtmlAttribList DocHtmlDescList::m_attribs
private

Definition at line 932 of file docparser.h.


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