My Project
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Types | Public Member Functions | Private Attributes | List of all members
DocHtmlList Class Reference

#include <docparser.h>

Inheritance diagram for DocHtmlList:
CompAccept< DocHtmlList > DocNode

Public Types

enum  Type { Unordered, Ordered }
 
- 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
}
 

Public Member Functions

 DocHtmlList (DocNode *parent, const HtmlAttribList &attribs, Type t)
 
Kind kind () const
 
Type type () const
 
void accept (DocVisitor *v)
 
const HtmlAttribListattribs () const
 
int parse ()
 
int parseXml ()
 
- Public Member Functions inherited from CompAccept< DocHtmlList >
 CompAccept ()
 
virtual ~CompAccept ()
 
void accept (DocHtmlList *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

Type m_type
 
HtmlAttribList m_attribs
 

Additional Inherited Members

- Protected Member Functions inherited from DocNode
void setInsidePreformatted (bool p)
 
- Protected Attributes inherited from CompAccept< DocHtmlList >
QList< DocNodem_children
 
- Protected Attributes inherited from DocNode
DocNodem_parent
 

Detailed Description

Node representing a Html list

Definition at line 1027 of file docparser.h.

Member Enumeration Documentation

Enumerator
Unordered 
Ordered 

Definition at line 1030 of file docparser.h.

Constructor & Destructor Documentation

DocHtmlList::DocHtmlList ( DocNode parent,
const HtmlAttribList attribs,
Type  t 
)
inline

Definition at line 1031 of file docparser.h.

References DocNode::m_parent, and DocNode::parent().

:
m_type(t), m_attribs(attribs) { m_parent = parent; }

Member Function Documentation

void DocHtmlList::accept ( DocVisitor v)
inlinevirtual

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

Parameters
vAbstract visitor.

Implements DocNode.

Definition at line 1035 of file docparser.h.

References CompAccept< T >::accept().

const HtmlAttribList& DocHtmlList::attribs ( ) const
inline

Definition at line 1036 of file docparser.h.

References m_attribs.

Referenced by HtmlDocVisitor::visitPre().

{ return m_attribs; }
Kind DocHtmlList::kind ( ) const
inlinevirtual

Returns the kind of node. Provides runtime type information

Implements DocNode.

Definition at line 1033 of file docparser.h.

References DocNode::Kind_HtmlList.

{ return Kind_HtmlList; }
int DocHtmlList::parse ( )

Definition at line 4145 of file docparser.cpp.

References TokenInfo::attribs, DBG, doctokenizerYYlex(), doctokenizerYYlineno, doctokenizerYYpushBackHtmlTag(), TokenInfo::endTag, g_fileName, g_nodeStack, g_token, HTML_LI, HTML_OL, HTML_UL, Mappers::htmlTagMapper, CompAccept< DocHtmlList >::m_children, m_type, Mapper::map(), TokenInfo::name, Ordered, DocHtmlListItem::parse(), RetVal_EndList, RetVal_ListItem, RetVal_OK, TK_HTMLTAG, TK_NEWPARA, TK_WHITESPACE, tokToString(), Unordered, and warn_doc_error().

Referenced by DocPara::handleHtmlStartTag().

{
DBG(("DocHtmlList::parse() start\n"));
int retval=RetVal_OK;
int num=1;
g_nodeStack.push(this);
// get next token
int tok=doctokenizerYYlex();
// skip whitespace and paragraph breaks
while (tok==TK_WHITESPACE || tok==TK_NEWPARA) tok=doctokenizerYYlex();
// should find a html tag now
if (tok==TK_HTMLTAG)
{
if (tagId==HTML_LI && !g_token->endTag) // found <li> tag
{
// ok, we can go on.
}
else if (((m_type==Unordered && tagId==HTML_UL) ||
(m_type==Ordered && tagId==HTML_OL)
) // found empty list
{
// add dummy item to obtain valid HTML
m_children.append(new DocHtmlListItem(this,HtmlAttribList(),1));
warn_doc_error(g_fileName,doctokenizerYYlineno,"empty list!");
retval = RetVal_EndList;
goto endlist;
}
else // found some other tag
{
// add dummy item to obtain valid HTML
m_children.append(new DocHtmlListItem(this,HtmlAttribList(),1));
warn_doc_error(g_fileName,doctokenizerYYlineno,"expected <li> tag but "
"found <%s%s> instead!",g_token->endTag?"/":"",qPrint(g_token->name));
goto endlist;
}
}
else if (tok==0) // premature end of comment
{
// add dummy item to obtain valid HTML
m_children.append(new DocHtmlListItem(this,HtmlAttribList(),1));
warn_doc_error(g_fileName,doctokenizerYYlineno,"unexpected end of comment while looking"
" for a html list item");
goto endlist;
}
else // token other than html token
{
// add dummy item to obtain valid HTML
m_children.append(new DocHtmlListItem(this,HtmlAttribList(),1));
warn_doc_error(g_fileName,doctokenizerYYlineno,"expected <li> tag but found %s token instead!",
tokToString(tok));
goto endlist;
}
do
{
m_children.append(li);
retval=li->parse();
} while (retval==RetVal_ListItem);
if (retval==0)
{
warn_doc_error(g_fileName,doctokenizerYYlineno,"unexpected end of comment while inside <%cl> block",
m_type==Unordered ? 'u' : 'o');
}
endlist:
DBG(("DocHtmlList::parse() end retval=%x\n",retval));
DocNode *n=g_nodeStack.pop();
ASSERT(n==this);
return retval==RetVal_EndList ? RetVal_OK : retval;
}
int DocHtmlList::parseXml ( )

Definition at line 4222 of file docparser.cpp.

References TokenInfo::attribs, DBG, doctokenizerYYlex(), doctokenizerYYlineno, doctokenizerYYpushBackHtmlTag(), TokenInfo::endTag, g_fileName, g_nodeStack, g_token, Mappers::htmlTagMapper, CompAccept< DocHtmlList >::m_children, m_type, Mapper::map(), TokenInfo::name, DocHtmlListItem::parseXml(), RetVal_CloseXml, RetVal_EndList, RetVal_ListItem, RetVal_OK, TK_HTMLTAG, TK_NEWPARA, TK_WHITESPACE, tokToString(), Unordered, warn_doc_error(), and XML_ITEM.

Referenced by DocPara::handleHtmlStartTag().

{
DBG(("DocHtmlList::parseXml() start\n"));
int retval=RetVal_OK;
int num=1;
g_nodeStack.push(this);
// get next token
int tok=doctokenizerYYlex();
// skip whitespace and paragraph breaks
while (tok==TK_WHITESPACE || tok==TK_NEWPARA) tok=doctokenizerYYlex();
// should find a html tag now
if (tok==TK_HTMLTAG)
{
//printf("g_token->name=%s g_token->endTag=%d\n",qPrint(g_token->name),g_token->endTag);
if (tagId==XML_ITEM && !g_token->endTag) // found <item> tag
{
// ok, we can go on.
}
else // found some other tag
{
warn_doc_error(g_fileName,doctokenizerYYlineno,"expected <item> tag but "
"found <%s> instead!",qPrint(g_token->name));
goto endlist;
}
}
else if (tok==0) // premature end of comment
{
warn_doc_error(g_fileName,doctokenizerYYlineno,"unexpected end of comment while looking"
" for a html list item");
goto endlist;
}
else // token other than html token
{
warn_doc_error(g_fileName,doctokenizerYYlineno,"expected <item> tag but found %s token instead!",
tokToString(tok));
goto endlist;
}
do
{
m_children.append(li);
retval=li->parseXml();
if (retval==0) break;
//printf("retval=%x g_token->name=%s\n",retval,qPrint(g_token->name));
} while (retval==RetVal_ListItem);
if (retval==0)
{
warn_doc_error(g_fileName,doctokenizerYYlineno,"unexpected end of comment while inside <list type=\"%s\"> block",
m_type==Unordered ? "bullet" : "number");
}
endlist:
DBG(("DocHtmlList::parseXml() end retval=%x\n",retval));
DocNode *n=g_nodeStack.pop();
ASSERT(n==this);
return retval==RetVal_EndList ||
(retval==RetVal_CloseXml || g_token->name=="list") ?
RetVal_OK : retval;
}
Type DocHtmlList::type ( ) const
inline

Member Data Documentation

HtmlAttribList DocHtmlList::m_attribs
private

Definition at line 1042 of file docparser.h.

Referenced by attribs().

Type DocHtmlList::m_type
private

Definition at line 1041 of file docparser.h.

Referenced by parse(), parseXml(), and type().


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