##// END OF EJS Templates
added alphabetic sorting...
added alphabetic sorting git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@132 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r73:40dc86970256
r96:3170eb771a99
Show More
PythonQtWrapper_QDomNode.cpp
337 lines | 9.3 KiB | text/x-c | CppLexer
#include "PythonQtWrapper_QDomNode.h"
#include <PythonQtSignalReceiver.h>
#include <PythonQtMethodInfo.h>
#include <PythonQtConversion.h>
#include <QVariant>
#include <qdom.h>
#include <qtextstream.h>
QDomNode* PythonQtWrapper_QDomNode::new_QDomNode()
{
return new QDomNode(); }
QDomNode* PythonQtWrapper_QDomNode::new_QDomNode(const QDomNode& arg__1)
{
return new QDomNode(arg__1); }
QString PythonQtWrapper_QDomNode::nodeName(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->nodeName());
}
int PythonQtWrapper_QDomNode::columnNumber(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->columnNumber());
}
void PythonQtWrapper_QDomNode::clear(QDomNode* theWrappedObject)
{
( theWrappedObject->clear());
}
QDomNode PythonQtWrapper_QDomNode::cloneNode(QDomNode* theWrappedObject, bool deep) const
{
return ( theWrappedObject->cloneNode(deep));
}
QDomText PythonQtWrapper_QDomNode::toText(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->toText());
}
QString PythonQtWrapper_QDomNode::namespaceURI(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->namespaceURI());
}
void PythonQtWrapper_QDomNode::writeTo(QDomNode* theWrappedObject, QTextStream& arg__1)
{
arg__1 << (*theWrappedObject);
}
QDomEntityReference PythonQtWrapper_QDomNode::toEntityReference(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->toEntityReference());
}
bool PythonQtWrapper_QDomNode::isAttr(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->isAttr());
}
QDomNode PythonQtWrapper_QDomNode::lastChild(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->lastChild());
}
QDomNodeList PythonQtWrapper_QDomNode::childNodes(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->childNodes());
}
bool PythonQtWrapper_QDomNode::isCharacterData(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->isCharacterData());
}
QDomDocumentFragment PythonQtWrapper_QDomNode::toDocumentFragment(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->toDocumentFragment());
}
bool PythonQtWrapper_QDomNode::isText(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->isText());
}
QDomElement PythonQtWrapper_QDomNode::previousSiblingElement(QDomNode* theWrappedObject, const QString& tagName) const
{
return ( theWrappedObject->previousSiblingElement(tagName));
}
bool PythonQtWrapper_QDomNode::isEntityReference(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->isEntityReference());
}
bool PythonQtWrapper_QDomNode::isSupported(QDomNode* theWrappedObject, const QString& feature, const QString& version) const
{
return ( theWrappedObject->isSupported(feature, version));
}
QDomElement PythonQtWrapper_QDomNode::firstChildElement(QDomNode* theWrappedObject, const QString& tagName) const
{
return ( theWrappedObject->firstChildElement(tagName));
}
QDomNode PythonQtWrapper_QDomNode::replaceChild(QDomNode* theWrappedObject, const QDomNode& newChild, const QDomNode& oldChild)
{
return ( theWrappedObject->replaceChild(newChild, oldChild));
}
bool PythonQtWrapper_QDomNode::hasChildNodes(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->hasChildNodes());
}
void PythonQtWrapper_QDomNode::save(QDomNode* theWrappedObject, QTextStream& arg__1, int arg__2) const
{
( theWrappedObject->save(arg__1, arg__2));
}
bool PythonQtWrapper_QDomNode::hasAttributes(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->hasAttributes());
}
void PythonQtWrapper_QDomNode::setNodeValue(QDomNode* theWrappedObject, const QString& arg__1)
{
( theWrappedObject->setNodeValue(arg__1));
}
QDomNode PythonQtWrapper_QDomNode::appendChild(QDomNode* theWrappedObject, const QDomNode& newChild)
{
return ( theWrappedObject->appendChild(newChild));
}
bool PythonQtWrapper_QDomNode::isCDATASection(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->isCDATASection());
}
QDomNode PythonQtWrapper_QDomNode::removeChild(QDomNode* theWrappedObject, const QDomNode& oldChild)
{
return ( theWrappedObject->removeChild(oldChild));
}
bool PythonQtWrapper_QDomNode::isNotation(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->isNotation());
}
bool PythonQtWrapper_QDomNode::isNull(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->isNull());
}
void PythonQtWrapper_QDomNode::save(QDomNode* theWrappedObject, QTextStream& arg__1, int arg__2, QDomNode::EncodingPolicy arg__3) const
{
( theWrappedObject->save(arg__1, arg__2, arg__3));
}
QDomCDATASection PythonQtWrapper_QDomNode::toCDATASection(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->toCDATASection());
}
QDomDocument PythonQtWrapper_QDomNode::toDocument(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->toDocument());
}
QDomNotation PythonQtWrapper_QDomNode::toNotation(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->toNotation());
}
QDomNode PythonQtWrapper_QDomNode::parentNode(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->parentNode());
}
QDomNode PythonQtWrapper_QDomNode::insertAfter(QDomNode* theWrappedObject, const QDomNode& newChild, const QDomNode& refChild)
{
return ( theWrappedObject->insertAfter(newChild, refChild));
}
QDomElement PythonQtWrapper_QDomNode::lastChildElement(QDomNode* theWrappedObject, const QString& tagName) const
{
return ( theWrappedObject->lastChildElement(tagName));
}
QDomCharacterData PythonQtWrapper_QDomNode::toCharacterData(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->toCharacterData());
}
QString PythonQtWrapper_QDomNode::prefix(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->prefix());
}
QString PythonQtWrapper_QDomNode::localName(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->localName());
}
bool PythonQtWrapper_QDomNode::isProcessingInstruction(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->isProcessingInstruction());
}
QDomNode PythonQtWrapper_QDomNode::namedItem(QDomNode* theWrappedObject, const QString& name) const
{
return ( theWrappedObject->namedItem(name));
}
int PythonQtWrapper_QDomNode::lineNumber(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->lineNumber());
}
QDomNode::NodeType PythonQtWrapper_QDomNode::nodeType(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->nodeType());
}
bool PythonQtWrapper_QDomNode::isDocumentType(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->isDocumentType());
}
QDomNode PythonQtWrapper_QDomNode::nextSibling(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->nextSibling());
}
void PythonQtWrapper_QDomNode::normalize(QDomNode* theWrappedObject)
{
( theWrappedObject->normalize());
}
QDomAttr PythonQtWrapper_QDomNode::toAttr(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->toAttr());
}
QDomComment PythonQtWrapper_QDomNode::toComment(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->toComment());
}
QDomDocumentType PythonQtWrapper_QDomNode::toDocumentType(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->toDocumentType());
}
bool PythonQtWrapper_QDomNode::isComment(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->isComment());
}
bool PythonQtWrapper_QDomNode::isEntity(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->isEntity());
}
bool PythonQtWrapper_QDomNode::isDocumentFragment(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->isDocumentFragment());
}
void PythonQtWrapper_QDomNode::setPrefix(QDomNode* theWrappedObject, const QString& pre)
{
( theWrappedObject->setPrefix(pre));
}
QDomProcessingInstruction PythonQtWrapper_QDomNode::toProcessingInstruction(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->toProcessingInstruction());
}
bool PythonQtWrapper_QDomNode::isElement(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->isElement());
}
QDomElement PythonQtWrapper_QDomNode::toElement(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->toElement());
}
QDomElement PythonQtWrapper_QDomNode::nextSiblingElement(QDomNode* theWrappedObject, const QString& taName) const
{
return ( theWrappedObject->nextSiblingElement(taName));
}
bool PythonQtWrapper_QDomNode::operator_equal(QDomNode* theWrappedObject, const QDomNode& arg__1) const
{
return ( (*theWrappedObject)== arg__1);
}
QDomNode PythonQtWrapper_QDomNode::previousSibling(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->previousSibling());
}
QDomNode PythonQtWrapper_QDomNode::firstChild(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->firstChild());
}
bool PythonQtWrapper_QDomNode::isDocument(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->isDocument());
}
QDomDocument PythonQtWrapper_QDomNode::ownerDocument(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->ownerDocument());
}
QDomEntity PythonQtWrapper_QDomNode::toEntity(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->toEntity());
}
QString PythonQtWrapper_QDomNode::nodeValue(QDomNode* theWrappedObject) const
{
return ( theWrappedObject->nodeValue());
}
QDomNode PythonQtWrapper_QDomNode::insertBefore(QDomNode* theWrappedObject, const QDomNode& newChild, const QDomNode& refChild)
{
return ( theWrappedObject->insertBefore(newChild, refChild));
}