gambas-source-code/gb.xml/CTextNode.cpp
2017-07-30 13:14:48 +02:00

94 lines
2.3 KiB
C++

/***************************************************************************
(c) 2012 Adrien Prokopowicz <prokopy@users.sourceforge.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301, USA.
***************************************************************************/
#include "CTextNode.h"
#include "textnode.h"
#include "node.h"
#define THISNODE (static_cast<CNode*>(_object)->node)
BEGIN_METHOD(CTextNode_new, GB_STRING content)
if(XMLNode_NoInstanciate()) return;
if(GB.Is(_object, GB.FindClass("XmlCommentNode")))//Called as inherited Comment constructor
{
if(!MISSING(content))
{
THISNODE = XMLComment_New(STRING(content), LENGTH(content));
}
else
{
THISNODE = XMLComment_New();
}
}
else if(GB.Is(_object, GB.FindClass("XmlCDATANode")))//Called as inherited CDATA constructor
{
if(!MISSING(content))
{
THISNODE = XMLCDATA_New(STRING(content), LENGTH(content));
}
else
{
THISNODE = XMLCDATA_New();
}
}
else
{
if(!MISSING(content))
{
THISNODE = XMLTextNode_New(STRING(content), LENGTH(content));
}
else
{
THISNODE = XMLTextNode_New();
}
}
THISNODE->GBObject = static_cast<CNode*>(_object);
END_METHOD
GB_DESC CTextNodeDesc[] =
{
GB_DECLARE("XmlTextNode", sizeof(CNode)), GB_INHERITS("XmlNode"),
GB_METHOD("_new", "", CTextNode_new, "[(Content)s]"),
GB_END_DECLARE
};
GB_DESC CCommentNodeDesc[] =
{
GB_DECLARE("XmlCommentNode", sizeof(CNode)), GB_INHERITS("XmlTextNode"),
GB_END_DECLARE
};
GB_DESC CCDATANodeDesc[] =
{
GB_DECLARE("XmlCDATANode", sizeof(CNode)), GB_INHERITS("XmlTextNode"),
GB_END_DECLARE
};