##// END OF EJS Templates
Now Works with Python 2 & 3, Qt 4 & 5....
Now Works with Python 2 & 3, Qt 4 & 5. CMake now generates different librariy files depending on the linked Qt/Python versions: PythonQt - Qt 4.x + Python 2.x PythonQt_3 - Qt 4.x + Python 3.x PythonQt5 - Qt 5.x + Python 2.x PythonQt5_3 - Qt 5.x + Python 3.x Fix Qt 4 build.

File last commit:

r186:69e742701130
r208:1476f2d2cf46
Show More
com_trolltech_qt_xml0.cpp
4492 lines | 164.2 KiB | text/x-c | CppLexer
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 #include "com_trolltech_qt_xml0.h"
#include <PythonQtConversion.h>
#include <PythonQtMethodInfo.h>
#include <PythonQtSignalReceiver.h>
#include <QVariant>
#include <qbytearray.h>
#include <qdom.h>
#include <qiodevice.h>
#include <qtextstream.h>
#include <qxml.h>
QDomAttr* PythonQtWrapper_QDomAttr::new_QDomAttr()
{
return new QDomAttr(); }
QDomAttr* PythonQtWrapper_QDomAttr::new_QDomAttr(const QDomAttr& x)
{
return new QDomAttr(x); }
florianlink
updated to improved generator...
r128 QString PythonQtWrapper_QDomAttr::name(QDomAttr* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->name());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 QDomElement PythonQtWrapper_QDomAttr::ownerElement(QDomAttr* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->ownerElement());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QDomAttr::setValue(QDomAttr* theWrappedObject, const QString& arg__1)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->setValue(arg__1));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomAttr::specified(QDomAttr* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->specified());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to new operators...
r120 QString PythonQtWrapper_QDomAttr::value(QDomAttr* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to new operators...
r120 return ( theWrappedObject->value());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
QDomCDATASection* PythonQtWrapper_QDomCDATASection::new_QDomCDATASection()
{
return new QDomCDATASection(); }
QDomCDATASection* PythonQtWrapper_QDomCDATASection::new_QDomCDATASection(const QDomCDATASection& x)
{
return new QDomCDATASection(x); }
QDomCharacterData* PythonQtWrapper_QDomCharacterData::new_QDomCharacterData()
{
return new QDomCharacterData(); }
QDomCharacterData* PythonQtWrapper_QDomCharacterData::new_QDomCharacterData(const QDomCharacterData& x)
{
return new QDomCharacterData(x); }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QDomCharacterData::appendData(QDomCharacterData* theWrappedObject, const QString& arg)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->appendData(arg));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QString PythonQtWrapper_QDomCharacterData::data(QDomCharacterData* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->data());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QDomCharacterData::deleteData(QDomCharacterData* theWrappedObject, unsigned long offset, unsigned long count)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->deleteData(offset, count));
}
void PythonQtWrapper_QDomCharacterData::insertData(QDomCharacterData* theWrappedObject, unsigned long offset, const QString& arg)
{
( theWrappedObject->insertData(offset, arg));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
uint PythonQtWrapper_QDomCharacterData::length(QDomCharacterData* theWrappedObject) const
{
return ( theWrappedObject->length());
}
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QDomCharacterData::replaceData(QDomCharacterData* theWrappedObject, unsigned long offset, unsigned long count, const QString& arg)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->replaceData(offset, count, arg));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QDomCharacterData::setData(QDomCharacterData* theWrappedObject, const QString& arg__1)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->setData(arg__1));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
QString PythonQtWrapper_QDomCharacterData::substringData(QDomCharacterData* theWrappedObject, unsigned long offset, unsigned long count)
{
return ( theWrappedObject->substringData(offset, count));
}
QDomComment* PythonQtWrapper_QDomComment::new_QDomComment()
{
return new QDomComment(); }
QDomComment* PythonQtWrapper_QDomComment::new_QDomComment(const QDomComment& x)
{
return new QDomComment(x); }
QDomDocument* PythonQtWrapper_QDomDocument::new_QDomDocument()
{
return new QDomDocument(); }
QDomDocument* PythonQtWrapper_QDomDocument::new_QDomDocument(const QDomDocument& x)
{
return new QDomDocument(x); }
QDomDocument* PythonQtWrapper_QDomDocument::new_QDomDocument(const QDomDocumentType& doctype)
{
return new QDomDocument(doctype); }
QDomDocument* PythonQtWrapper_QDomDocument::new_QDomDocument(const QString& name)
{
return new QDomDocument(name); }
florianlink
updated to improved generator...
r128 QDomAttr PythonQtWrapper_QDomDocument::createAttribute(QDomDocument* theWrappedObject, const QString& name)
florianlink
updated to new operators...
r120 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->createAttribute(name));
florianlink
updated to new operators...
r120 }
florianlink
updated to improved generator...
r128 QDomAttr PythonQtWrapper_QDomDocument::createAttributeNS(QDomDocument* theWrappedObject, const QString& nsURI, const QString& qName)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->createAttributeNS(nsURI, qName));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomCDATASection PythonQtWrapper_QDomDocument::createCDATASection(QDomDocument* theWrappedObject, const QString& data)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->createCDATASection(data));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomComment PythonQtWrapper_QDomDocument::createComment(QDomDocument* theWrappedObject, const QString& data)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->createComment(data));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomDocumentFragment PythonQtWrapper_QDomDocument::createDocumentFragment(QDomDocument* theWrappedObject)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->createDocumentFragment());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
QDomElement PythonQtWrapper_QDomDocument::createElement(QDomDocument* theWrappedObject, const QString& tagName)
{
return ( theWrappedObject->createElement(tagName));
}
florianlink
updated to improved generator...
r128 QDomElement PythonQtWrapper_QDomDocument::createElementNS(QDomDocument* theWrappedObject, const QString& nsURI, const QString& qName)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->createElementNS(nsURI, qName));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomEntityReference PythonQtWrapper_QDomDocument::createEntityReference(QDomDocument* theWrappedObject, const QString& name)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->createEntityReference(name));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomProcessingInstruction PythonQtWrapper_QDomDocument::createProcessingInstruction(QDomDocument* theWrappedObject, const QString& target, const QString& data)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->createProcessingInstruction(target, data));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 QDomText PythonQtWrapper_QDomDocument::createTextNode(QDomDocument* theWrappedObject, const QString& data)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->createTextNode(data));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomDocumentType PythonQtWrapper_QDomDocument::doctype(QDomDocument* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->doctype());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomElement PythonQtWrapper_QDomDocument::documentElement(QDomDocument* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->documentElement());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomElement PythonQtWrapper_QDomDocument::elementById(QDomDocument* theWrappedObject, const QString& elementId)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->elementById(elementId));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomNodeList PythonQtWrapper_QDomDocument::elementsByTagName(QDomDocument* theWrappedObject, const QString& tagname) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->elementsByTagName(tagname));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomNodeList PythonQtWrapper_QDomDocument::elementsByTagNameNS(QDomDocument* theWrappedObject, const QString& nsURI, const QString& localName)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->elementsByTagNameNS(nsURI, localName));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomImplementation PythonQtWrapper_QDomDocument::implementation(QDomDocument* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->implementation());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to Qt 4.6 API...
r110 QDomNode PythonQtWrapper_QDomDocument::importNode(QDomDocument* theWrappedObject, const QDomNode& importedNode, bool deep)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to Qt 4.6 API...
r110 return ( theWrappedObject->importNode(importedNode, deep));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomDocument::setContent(QDomDocument* theWrappedObject, QIODevice* dev, QString* errorMsg, int* errorLine, int* errorColumn)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->setContent(dev, errorMsg, errorLine, errorColumn));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to new operators...
r120 bool PythonQtWrapper_QDomDocument::setContent(QDomDocument* theWrappedObject, QIODevice* dev, bool namespaceProcessing, QString* errorMsg, int* errorLine, int* errorColumn)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to new operators...
r120 return ( theWrappedObject->setContent(dev, namespaceProcessing, errorMsg, errorLine, errorColumn));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomDocument::setContent(QDomDocument* theWrappedObject, QXmlInputSource* source, QXmlReader* reader, QString* errorMsg, int* errorLine, int* errorColumn)
florianlink
updated to new operators...
r120 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->setContent(source, reader, errorMsg, errorLine, errorColumn));
florianlink
updated to new operators...
r120 }
florianlink
updated to Qt 4.6 API...
r110 bool PythonQtWrapper_QDomDocument::setContent(QDomDocument* theWrappedObject, QXmlInputSource* source, bool namespaceProcessing, QString* errorMsg, int* errorLine, int* errorColumn)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to Qt 4.6 API...
r110 return ( theWrappedObject->setContent(source, namespaceProcessing, errorMsg, errorLine, errorColumn));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomDocument::setContent(QDomDocument* theWrappedObject, const QByteArray& text, QString* errorMsg, int* errorLine, int* errorColumn)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->setContent(text, errorMsg, errorLine, errorColumn));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to new operators...
r120 bool PythonQtWrapper_QDomDocument::setContent(QDomDocument* theWrappedObject, const QByteArray& text, bool namespaceProcessing, QString* errorMsg, int* errorLine, int* errorColumn)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to Qt 4.6 API...
r110 return ( theWrappedObject->setContent(text, namespaceProcessing, errorMsg, errorLine, errorColumn));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomDocument::setContent(QDomDocument* theWrappedObject, const QString& text, QString* errorMsg, int* errorLine, int* errorColumn)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->setContent(text, errorMsg, errorLine, errorColumn));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomDocument::setContent(QDomDocument* theWrappedObject, const QString& text, bool namespaceProcessing, QString* errorMsg, int* errorLine, int* errorColumn)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->setContent(text, namespaceProcessing, errorMsg, errorLine, errorColumn));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QByteArray PythonQtWrapper_QDomDocument::toByteArray(QDomDocument* theWrappedObject, int arg__1) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->toByteArray(arg__1));
}
QString PythonQtWrapper_QDomDocument::toString(QDomDocument* theWrappedObject, int arg__1) const
{
return ( theWrappedObject->toString(arg__1));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
update with new py_ naming and field getters/setters...
r117 QString PythonQtWrapper_QDomDocument::py_toString(QDomDocument* obj) { return obj->toString(); }
florianlink
added newly generated wrappers for Qt 4.4.3...
r99
QDomDocumentFragment* PythonQtWrapper_QDomDocumentFragment::new_QDomDocumentFragment()
{
return new QDomDocumentFragment(); }
QDomDocumentFragment* PythonQtWrapper_QDomDocumentFragment::new_QDomDocumentFragment(const QDomDocumentFragment& x)
{
return new QDomDocumentFragment(x); }
QDomDocumentType* PythonQtWrapper_QDomDocumentType::new_QDomDocumentType()
{
return new QDomDocumentType(); }
QDomDocumentType* PythonQtWrapper_QDomDocumentType::new_QDomDocumentType(const QDomDocumentType& x)
{
return new QDomDocumentType(x); }
QDomNamedNodeMap PythonQtWrapper_QDomDocumentType::entities(QDomDocumentType* theWrappedObject) const
{
return ( theWrappedObject->entities());
}
QString PythonQtWrapper_QDomDocumentType::internalSubset(QDomDocumentType* theWrappedObject) const
{
return ( theWrappedObject->internalSubset());
}
QString PythonQtWrapper_QDomDocumentType::name(QDomDocumentType* theWrappedObject) const
{
return ( theWrappedObject->name());
}
florianlink
updated to improved generator...
r128 QDomNamedNodeMap PythonQtWrapper_QDomDocumentType::notations(QDomDocumentType* theWrappedObject) const
{
return ( theWrappedObject->notations());
}
QString PythonQtWrapper_QDomDocumentType::publicId(QDomDocumentType* theWrappedObject) const
{
return ( theWrappedObject->publicId());
}
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 QString PythonQtWrapper_QDomDocumentType::systemId(QDomDocumentType* theWrappedObject) const
{
return ( theWrappedObject->systemId());
}
QDomElement* PythonQtWrapper_QDomElement::new_QDomElement()
{
return new QDomElement(); }
QDomElement* PythonQtWrapper_QDomElement::new_QDomElement(const QDomElement& x)
{
return new QDomElement(x); }
florianlink
updated to improved generator...
r128 QString PythonQtWrapper_QDomElement::attribute(QDomElement* theWrappedObject, const QString& name, const QString& defValue) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->attribute(name, defValue));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QString PythonQtWrapper_QDomElement::attributeNS(QDomElement* theWrappedObject, const QString nsURI, const QString& localName, const QString& defValue) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->attributeNS(nsURI, localName, defValue));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
QDomAttr PythonQtWrapper_QDomElement::attributeNode(QDomElement* theWrappedObject, const QString& name)
{
return ( theWrappedObject->attributeNode(name));
}
florianlink
updated to improved generator...
r128 QDomAttr PythonQtWrapper_QDomElement::attributeNodeNS(QDomElement* theWrappedObject, const QString& nsURI, const QString& localName)
{
return ( theWrappedObject->attributeNodeNS(nsURI, localName));
}
QDomNamedNodeMap PythonQtWrapper_QDomElement::attributes(QDomElement* theWrappedObject) const
{
return ( theWrappedObject->attributes());
}
QDomNodeList PythonQtWrapper_QDomElement::elementsByTagName(QDomElement* theWrappedObject, const QString& tagname) const
{
return ( theWrappedObject->elementsByTagName(tagname));
}
QDomNodeList PythonQtWrapper_QDomElement::elementsByTagNameNS(QDomElement* theWrappedObject, const QString& nsURI, const QString& localName) const
{
return ( theWrappedObject->elementsByTagNameNS(nsURI, localName));
}
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool PythonQtWrapper_QDomElement::hasAttribute(QDomElement* theWrappedObject, const QString& name) const
{
return ( theWrappedObject->hasAttribute(name));
}
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomElement::hasAttributeNS(QDomElement* theWrappedObject, const QString& nsURI, const QString& localName) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->hasAttributeNS(nsURI, localName));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QDomElement::removeAttribute(QDomElement* theWrappedObject, const QString& name)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->removeAttribute(name));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QDomElement::removeAttributeNS(QDomElement* theWrappedObject, const QString& nsURI, const QString& localName)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->removeAttributeNS(nsURI, localName));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomAttr PythonQtWrapper_QDomElement::removeAttributeNode(QDomElement* theWrappedObject, const QDomAttr& oldAttr)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->removeAttributeNode(oldAttr));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QDomElement::setAttribute(QDomElement* theWrappedObject, const QString& name, const QString& value)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to new operators...
r120 ( theWrappedObject->setAttribute(name, value));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QDomElement::setAttribute(QDomElement* theWrappedObject, const QString& name, double value)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
( theWrappedObject->setAttribute(name, value));
}
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QDomElement::setAttribute(QDomElement* theWrappedObject, const QString& name, float value)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->setAttribute(name, value));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QDomElement::setAttribute(QDomElement* theWrappedObject, const QString& name, int value)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->setAttribute(name, value));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QDomElement::setAttribute(QDomElement* theWrappedObject, const QString& name, qlonglong value)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->setAttribute(name, value));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QDomElement::setAttribute(QDomElement* theWrappedObject, const QString& name, qulonglong value)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->setAttribute(name, value));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to new operators...
r120 void PythonQtWrapper_QDomElement::setAttributeNS(QDomElement* theWrappedObject, const QString nsURI, const QString& qName, const QString& value)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
( theWrappedObject->setAttributeNS(nsURI, qName, value));
}
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QDomElement::setAttributeNS(QDomElement* theWrappedObject, const QString nsURI, const QString& qName, double value)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to new operators...
r120 ( theWrappedObject->setAttributeNS(nsURI, qName, value));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QDomElement::setAttributeNS(QDomElement* theWrappedObject, const QString nsURI, const QString& qName, int value)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->setAttributeNS(nsURI, qName, value));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QDomElement::setAttributeNS(QDomElement* theWrappedObject, const QString nsURI, const QString& qName, qlonglong value)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->setAttributeNS(nsURI, qName, value));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QDomElement::setAttributeNS(QDomElement* theWrappedObject, const QString nsURI, const QString& qName, qulonglong value)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->setAttributeNS(nsURI, qName, value));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomAttr PythonQtWrapper_QDomElement::setAttributeNode(QDomElement* theWrappedObject, const QDomAttr& newAttr)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->setAttributeNode(newAttr));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomAttr PythonQtWrapper_QDomElement::setAttributeNodeNS(QDomElement* theWrappedObject, const QDomAttr& newAttr)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->setAttributeNodeNS(newAttr));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QDomElement::setTagName(QDomElement* theWrappedObject, const QString& name)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->setTagName(name));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to new operators...
r120 QString PythonQtWrapper_QDomElement::tagName(QDomElement* theWrappedObject) const
{
return ( theWrappedObject->tagName());
}
florianlink
updated to improved generator...
r128 QString PythonQtWrapper_QDomElement::text(QDomElement* theWrappedObject) const
florianlink
updated to new operators...
r120 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->text());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
QDomEntity* PythonQtWrapper_QDomEntity::new_QDomEntity()
{
return new QDomEntity(); }
QDomEntity* PythonQtWrapper_QDomEntity::new_QDomEntity(const QDomEntity& x)
{
return new QDomEntity(x); }
florianlink
updated to improved generator...
r128 QString PythonQtWrapper_QDomEntity::notationName(QDomEntity* theWrappedObject) const
{
return ( theWrappedObject->notationName());
}
florianlink
updated to Qt 4.6 API...
r110 QString PythonQtWrapper_QDomEntity::publicId(QDomEntity* theWrappedObject) const
{
return ( theWrappedObject->publicId());
}
florianlink
updated to new operators...
r120 QString PythonQtWrapper_QDomEntity::systemId(QDomEntity* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to new operators...
r120 return ( theWrappedObject->systemId());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
QDomEntityReference* PythonQtWrapper_QDomEntityReference::new_QDomEntityReference()
{
return new QDomEntityReference(); }
QDomEntityReference* PythonQtWrapper_QDomEntityReference::new_QDomEntityReference(const QDomEntityReference& x)
{
return new QDomEntityReference(x); }
QDomImplementation* PythonQtWrapper_QDomImplementation::new_QDomImplementation()
{
return new QDomImplementation(); }
QDomImplementation* PythonQtWrapper_QDomImplementation::new_QDomImplementation(const QDomImplementation& arg__1)
{
return new QDomImplementation(arg__1); }
florianlink
updated to improved generator...
r128 QDomDocument PythonQtWrapper_QDomImplementation::createDocument(QDomImplementation* theWrappedObject, const QString& nsURI, const QString& qName, const QDomDocumentType& doctype)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->createDocument(nsURI, qName, doctype));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomDocumentType PythonQtWrapper_QDomImplementation::createDocumentType(QDomImplementation* theWrappedObject, const QString& qName, const QString& publicId, const QString& systemId)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->createDocumentType(qName, publicId, systemId));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomImplementation::hasFeature(QDomImplementation* theWrappedObject, const QString& feature, const QString& version) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->hasFeature(feature, version));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomImplementation::InvalidDataPolicy PythonQtWrapper_QDomImplementation::static_QDomImplementation_invalidDataPolicy()
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return (QDomImplementation::invalidDataPolicy());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomImplementation::isNull(QDomImplementation* theWrappedObject)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->isNull());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomImplementation::__ne__(QDomImplementation* theWrappedObject, const QDomImplementation& arg__1) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( (*theWrappedObject)!= arg__1);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to new operators...
r120 bool PythonQtWrapper_QDomImplementation::__eq__(QDomImplementation* theWrappedObject, const QDomImplementation& arg__1) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to new operators...
r120 return ( (*theWrappedObject)== arg__1);
}
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QDomImplementation::static_QDomImplementation_setInvalidDataPolicy(QDomImplementation::InvalidDataPolicy policy)
florianlink
updated to new operators...
r120 {
florianlink
updated to improved generator...
r128 (QDomImplementation::setInvalidDataPolicy(policy));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
QDomNamedNodeMap* PythonQtWrapper_QDomNamedNodeMap::new_QDomNamedNodeMap()
{
return new QDomNamedNodeMap(); }
QDomNamedNodeMap* PythonQtWrapper_QDomNamedNodeMap::new_QDomNamedNodeMap(const QDomNamedNodeMap& arg__1)
{
return new QDomNamedNodeMap(arg__1); }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomNamedNodeMap::contains(QDomNamedNodeMap* theWrappedObject, const QString& name) const
florianlink
updated to new operators...
r120 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->contains(name));
florianlink
updated to new operators...
r120 }
florianlink
updated to improved generator...
r128 int PythonQtWrapper_QDomNamedNodeMap::count(QDomNamedNodeMap* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->count());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomNamedNodeMap::isEmpty(QDomNamedNodeMap* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->isEmpty());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomNode PythonQtWrapper_QDomNamedNodeMap::item(QDomNamedNodeMap* theWrappedObject, int index) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->item(index));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 uint PythonQtWrapper_QDomNamedNodeMap::length(QDomNamedNodeMap* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->length());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomNode PythonQtWrapper_QDomNamedNodeMap::namedItem(QDomNamedNodeMap* theWrappedObject, const QString& name) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->namedItem(name));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomNode PythonQtWrapper_QDomNamedNodeMap::namedItemNS(QDomNamedNodeMap* theWrappedObject, const QString& nsURI, const QString& localName) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->namedItemNS(nsURI, localName));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomNamedNodeMap::__ne__(QDomNamedNodeMap* theWrappedObject, const QDomNamedNodeMap& arg__1) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( (*theWrappedObject)!= arg__1);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomNamedNodeMap::__eq__(QDomNamedNodeMap* theWrappedObject, const QDomNamedNodeMap& arg__1) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( (*theWrappedObject)== arg__1);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomNode PythonQtWrapper_QDomNamedNodeMap::removeNamedItem(QDomNamedNodeMap* theWrappedObject, const QString& name)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->removeNamedItem(name));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomNode PythonQtWrapper_QDomNamedNodeMap::removeNamedItemNS(QDomNamedNodeMap* theWrappedObject, const QString& nsURI, const QString& localName)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->removeNamedItemNS(nsURI, localName));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to new operators...
r120 QDomNode PythonQtWrapper_QDomNamedNodeMap::setNamedItem(QDomNamedNodeMap* theWrappedObject, const QDomNode& newNode)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to new operators...
r120 return ( theWrappedObject->setNamedItem(newNode));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomNode PythonQtWrapper_QDomNamedNodeMap::setNamedItemNS(QDomNamedNodeMap* theWrappedObject, const QDomNode& newNode)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->setNamedItemNS(newNode));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 int PythonQtWrapper_QDomNamedNodeMap::size(QDomNamedNodeMap* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->size());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
QDomNode* PythonQtWrapper_QDomNode::new_QDomNode()
{
return new QDomNode(); }
QDomNode* PythonQtWrapper_QDomNode::new_QDomNode(const QDomNode& arg__1)
{
return new QDomNode(arg__1); }
florianlink
updated to new operators...
r120 QDomNode PythonQtWrapper_QDomNode::appendChild(QDomNode* theWrappedObject, const QDomNode& newChild)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to new operators...
r120 return ( theWrappedObject->appendChild(newChild));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomNodeList PythonQtWrapper_QDomNode::childNodes(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->childNodes());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QDomNode::clear(QDomNode* theWrappedObject)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->clear());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomNode PythonQtWrapper_QDomNode::cloneNode(QDomNode* theWrappedObject, bool deep) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->cloneNode(deep));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 int PythonQtWrapper_QDomNode::columnNumber(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->columnNumber());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomNode PythonQtWrapper_QDomNode::firstChild(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->firstChild());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomElement PythonQtWrapper_QDomNode::firstChildElement(QDomNode* theWrappedObject, const QString& tagName) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->firstChildElement(tagName));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomNode::hasAttributes(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->hasAttributes());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomNode::hasChildNodes(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->hasChildNodes());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomNode PythonQtWrapper_QDomNode::insertAfter(QDomNode* theWrappedObject, const QDomNode& newChild, const QDomNode& refChild)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->insertAfter(newChild, refChild));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomNode PythonQtWrapper_QDomNode::insertBefore(QDomNode* theWrappedObject, const QDomNode& newChild, const QDomNode& refChild)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->insertBefore(newChild, refChild));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomNode::isAttr(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->isAttr());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomNode::isCDATASection(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->isCDATASection());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomNode::isCharacterData(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->isCharacterData());
florianlink
updated to new operators...
r120 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomNode::isComment(QDomNode* theWrappedObject) const
florianlink
updated to new operators...
r120 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->isComment());
florianlink
updated to new operators...
r120 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomNode::isDocument(QDomNode* theWrappedObject) const
florianlink
updated to new operators...
r120 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->isDocument());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomNode::isDocumentFragment(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->isDocumentFragment());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomNode::isDocumentType(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->isDocumentType());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomNode::isElement(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->isElement());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomNode::isEntity(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->isEntity());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomNode::isEntityReference(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->isEntityReference());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomNode::isNotation(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->isNotation());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomNode::isNull(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->isNull());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomNode::isProcessingInstruction(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->isProcessingInstruction());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomNode::isSupported(QDomNode* theWrappedObject, const QString& feature, const QString& version) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->isSupported(feature, version));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomNode::isText(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->isText());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomNode PythonQtWrapper_QDomNode::lastChild(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->lastChild());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomElement PythonQtWrapper_QDomNode::lastChildElement(QDomNode* theWrappedObject, const QString& tagName) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->lastChildElement(tagName));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 int PythonQtWrapper_QDomNode::lineNumber(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->lineNumber());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QString PythonQtWrapper_QDomNode::localName(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->localName());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomNode PythonQtWrapper_QDomNode::namedItem(QDomNode* theWrappedObject, const QString& name) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->namedItem(name));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QString PythonQtWrapper_QDomNode::namespaceURI(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->namespaceURI());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomNode PythonQtWrapper_QDomNode::nextSibling(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->nextSibling());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomElement PythonQtWrapper_QDomNode::nextSiblingElement(QDomNode* theWrappedObject, const QString& taName) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->nextSiblingElement(taName));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QString PythonQtWrapper_QDomNode::nodeName(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->nodeName());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomNode::NodeType PythonQtWrapper_QDomNode::nodeType(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->nodeType());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QString PythonQtWrapper_QDomNode::nodeValue(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->nodeValue());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QDomNode::normalize(QDomNode* theWrappedObject)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->normalize());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomNode::__ne__(QDomNode* theWrappedObject, const QDomNode& arg__1) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( (*theWrappedObject)!= arg__1);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QDomNode::writeTo(QDomNode* theWrappedObject, QTextStream& arg__1)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 arg__1 << (*theWrappedObject);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomNode::__eq__(QDomNode* theWrappedObject, const QDomNode& arg__1) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( (*theWrappedObject)== arg__1);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomDocument PythonQtWrapper_QDomNode::ownerDocument(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->ownerDocument());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomNode PythonQtWrapper_QDomNode::parentNode(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->parentNode());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QString PythonQtWrapper_QDomNode::prefix(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->prefix());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomNode PythonQtWrapper_QDomNode::previousSibling(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->previousSibling());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomElement PythonQtWrapper_QDomNode::previousSiblingElement(QDomNode* theWrappedObject, const QString& tagName) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->previousSiblingElement(tagName));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomNode PythonQtWrapper_QDomNode::removeChild(QDomNode* theWrappedObject, const QDomNode& oldChild)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->removeChild(oldChild));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomNode PythonQtWrapper_QDomNode::replaceChild(QDomNode* theWrappedObject, const QDomNode& newChild, const QDomNode& oldChild)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->replaceChild(newChild, oldChild));
}
void PythonQtWrapper_QDomNode::save(QDomNode* theWrappedObject, QTextStream& arg__1, int arg__2) const
{
( theWrappedObject->save(arg__1, arg__2));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to new operators...
r120 void PythonQtWrapper_QDomNode::save(QDomNode* theWrappedObject, QTextStream& arg__1, int arg__2, QDomNode::EncodingPolicy arg__3) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to new operators...
r120 ( theWrappedObject->save(arg__1, arg__2, arg__3));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QDomNode::setNodeValue(QDomNode* theWrappedObject, const QString& arg__1)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->setNodeValue(arg__1));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QDomNode::setPrefix(QDomNode* theWrappedObject, const QString& pre)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->setPrefix(pre));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomAttr PythonQtWrapper_QDomNode::toAttr(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->toAttr());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomCDATASection PythonQtWrapper_QDomNode::toCDATASection(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->toCDATASection());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomCharacterData PythonQtWrapper_QDomNode::toCharacterData(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->toCharacterData());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomComment PythonQtWrapper_QDomNode::toComment(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->toComment());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomDocument PythonQtWrapper_QDomNode::toDocument(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->toDocument());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to new operators...
r120 QDomDocumentFragment PythonQtWrapper_QDomNode::toDocumentFragment(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to new operators...
r120 return ( theWrappedObject->toDocumentFragment());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomDocumentType PythonQtWrapper_QDomNode::toDocumentType(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->toDocumentType());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomElement PythonQtWrapper_QDomNode::toElement(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->toElement());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomEntity PythonQtWrapper_QDomNode::toEntity(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->toEntity());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomEntityReference PythonQtWrapper_QDomNode::toEntityReference(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->toEntityReference());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomNotation PythonQtWrapper_QDomNode::toNotation(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->toNotation());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomProcessingInstruction PythonQtWrapper_QDomNode::toProcessingInstruction(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->toProcessingInstruction());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomText PythonQtWrapper_QDomNode::toText(QDomNode* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->toText());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
QDomNodeList* PythonQtWrapper_QDomNodeList::new_QDomNodeList()
{
return new QDomNodeList(); }
QDomNodeList* PythonQtWrapper_QDomNodeList::new_QDomNodeList(const QDomNodeList& arg__1)
{
return new QDomNodeList(arg__1); }
florianlink
updated to improved generator...
r128 QDomNode PythonQtWrapper_QDomNodeList::at(QDomNodeList* theWrappedObject, int index) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->at(index));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 int PythonQtWrapper_QDomNodeList::count(QDomNodeList* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->count());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomNodeList::isEmpty(QDomNodeList* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->isEmpty());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QDomNode PythonQtWrapper_QDomNodeList::item(QDomNodeList* theWrappedObject, int index) const
florianlink
updated to new operators...
r120 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->item(index));
florianlink
updated to new operators...
r120 }
florianlink
updated to improved generator...
r128 uint PythonQtWrapper_QDomNodeList::length(QDomNodeList* theWrappedObject) const
florianlink
updated to new operators...
r120 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->length());
florianlink
updated to new operators...
r120 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomNodeList::__ne__(QDomNodeList* theWrappedObject, const QDomNodeList& arg__1) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( (*theWrappedObject)!= arg__1);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QDomNodeList::__eq__(QDomNodeList* theWrappedObject, const QDomNodeList& arg__1) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( (*theWrappedObject)== arg__1);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 int PythonQtWrapper_QDomNodeList::size(QDomNodeList* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->size());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
QDomNotation* PythonQtWrapper_QDomNotation::new_QDomNotation()
{
return new QDomNotation(); }
QDomNotation* PythonQtWrapper_QDomNotation::new_QDomNotation(const QDomNotation& x)
{
return new QDomNotation(x); }
florianlink
updated to Qt 4.6 API...
r110 QString PythonQtWrapper_QDomNotation::publicId(QDomNotation* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to Qt 4.6 API...
r110 return ( theWrappedObject->publicId());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to Qt 4.6 API...
r110 QString PythonQtWrapper_QDomNotation::systemId(QDomNotation* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to Qt 4.6 API...
r110 return ( theWrappedObject->systemId());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
QDomProcessingInstruction* PythonQtWrapper_QDomProcessingInstruction::new_QDomProcessingInstruction()
{
return new QDomProcessingInstruction(); }
QDomProcessingInstruction* PythonQtWrapper_QDomProcessingInstruction::new_QDomProcessingInstruction(const QDomProcessingInstruction& x)
{
return new QDomProcessingInstruction(x); }
florianlink
updated to improved generator...
r128 QString PythonQtWrapper_QDomProcessingInstruction::data(QDomProcessingInstruction* theWrappedObject) const
{
return ( theWrappedObject->data());
}
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 void PythonQtWrapper_QDomProcessingInstruction::setData(QDomProcessingInstruction* theWrappedObject, const QString& d)
{
( theWrappedObject->setData(d));
}
QString PythonQtWrapper_QDomProcessingInstruction::target(QDomProcessingInstruction* theWrappedObject) const
{
return ( theWrappedObject->target());
}
QDomText* PythonQtWrapper_QDomText::new_QDomText()
{
return new QDomText(); }
QDomText* PythonQtWrapper_QDomText::new_QDomText(const QDomText& x)
{
return new QDomText(x); }
QDomText PythonQtWrapper_QDomText::splitText(QDomText* theWrappedObject, int offset)
{
return ( theWrappedObject->splitText(offset));
}
florianlink
updated to Qt 4.8 wrappers...
r186 PythonQtShell_QXmlAttributes::~PythonQtShell_QXmlAttributes() {
PythonQtPrivate* priv = PythonQt::priv();
if (priv) { priv->shellClassDeleted(this); }
}
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 QXmlAttributes* PythonQtWrapper_QXmlAttributes::new_QXmlAttributes()
{
return new PythonQtShell_QXmlAttributes(); }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlAttributes::append(QXmlAttributes* theWrappedObject, const QString& qName, const QString& uri, const QString& localPart, const QString& value)
florianlink
updated to new operators...
r120 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->append(qName, uri, localPart, value));
florianlink
updated to new operators...
r120 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlAttributes::clear(QXmlAttributes* theWrappedObject)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->clear());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
int PythonQtWrapper_QXmlAttributes::count(QXmlAttributes* theWrappedObject) const
{
return ( theWrappedObject->count());
}
florianlink
updated to improved generator...
r128 int PythonQtWrapper_QXmlAttributes::index(QXmlAttributes* theWrappedObject, const QString& qName) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->index(qName));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 int PythonQtWrapper_QXmlAttributes::index(QXmlAttributes* theWrappedObject, const QString& uri, const QString& localPart) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->index(uri, localPart));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 int PythonQtWrapper_QXmlAttributes::length(QXmlAttributes* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->length());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QString PythonQtWrapper_QXmlAttributes::localName(QXmlAttributes* theWrappedObject, int index) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->localName(index));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QString PythonQtWrapper_QXmlAttributes::qName(QXmlAttributes* theWrappedObject, int index) const
florianlink
updated to new operators...
r120 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->qName(index));
florianlink
updated to new operators...
r120 }
florianlink
updated to improved generator...
r128 QString PythonQtWrapper_QXmlAttributes::type(QXmlAttributes* theWrappedObject, const QString& qName) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->type(qName));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QString PythonQtWrapper_QXmlAttributes::type(QXmlAttributes* theWrappedObject, const QString& uri, const QString& localName) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->type(uri, localName));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to new operators...
r120 QString PythonQtWrapper_QXmlAttributes::type(QXmlAttributes* theWrappedObject, int index) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to new operators...
r120 return ( theWrappedObject->type(index));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QString PythonQtWrapper_QXmlAttributes::uri(QXmlAttributes* theWrappedObject, int index) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->uri(index));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QString PythonQtWrapper_QXmlAttributes::value(QXmlAttributes* theWrappedObject, const QString& qName) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->value(qName));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QString PythonQtWrapper_QXmlAttributes::value(QXmlAttributes* theWrappedObject, const QString& uri, const QString& localName) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->value(uri, localName));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QString PythonQtWrapper_QXmlAttributes::value(QXmlAttributes* theWrappedObject, int index) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->value(index));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to Qt 4.6 API...
r110
florianlink
updated to Qt 4.8 wrappers...
r186 PythonQtShell_QXmlContentHandler::~PythonQtShell_QXmlContentHandler() {
PythonQtPrivate* priv = PythonQt::priv();
if (priv) { priv->shellClassDeleted(this); }
}
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlContentHandler::characters(const QString& ch)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "characters");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to new operators...
r120 static const char* argumentList[] ={"bool" , "const QString&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
florianlink
update with new py_ naming and field getters/setters...
r117 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[2] = {NULL, (void*)&ch};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("characters", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
florianlink
update with new py_ naming and field getters/setters...
r117 returnValue = *((bool*)args[0]);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return bool();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlContentHandler::endDocument()
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "endDocument");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
florianlink
updated to new operators...
r120 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[1] = {NULL};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("endDocument", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
florianlink
updated to new operators...
r120 returnValue = *((bool*)args[0]);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return bool();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlContentHandler::endElement(const QString& namespaceURI, const QString& localName, const QString& qName)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "endElement");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(4, argumentList);
bool returnValue;
void* args[4] = {NULL, (void*)&namespaceURI, (void*)&localName, (void*)&qName};
florianlink
updated to new operators...
r120 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
florianlink
updated to improved generator...
r128 if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
PythonQt::priv()->handleVirtualOverloadReturnError("endElement", methodInfo, result);
} else {
returnValue = *((bool*)args[0]);
}
}
}
florianlink
updated to new operators...
r120 if (result) { Py_DECREF(result); }
Py_DECREF(obj);
florianlink
updated to improved generator...
r128 return returnValue;
florianlink
updated to new operators...
r120 }
}
florianlink
updated to improved generator...
r128 return bool();
florianlink
updated to new operators...
r120 }
bool PythonQtShell_QXmlContentHandler::endPrefixMapping(const QString& prefix)
{
if (_wrapper) {
PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "endPrefixMapping");
PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
static const char* argumentList[] ={"bool" , "const QString&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to new operators...
r120 void* args[2] = {NULL, (void*)&prefix};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to new operators...
r120 PythonQt::priv()->handleVirtualOverloadReturnError("endPrefixMapping", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return bool();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QString PythonQtShell_QXmlContentHandler::errorString() const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "errorString");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"QString"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
QString returnValue;
void* args[1] = {NULL};
PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("errorString", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
florianlink
updated to improved generator...
r128 returnValue = *((QString*)args[0]);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return QString();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlContentHandler::ignorableWhitespace(const QString& ch)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "ignorableWhitespace");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to new operators...
r120 static const char* argumentList[] ={"bool" , "const QString&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to new operators...
r120 void* args[2] = {NULL, (void*)&ch};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("ignorableWhitespace", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return bool();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlContentHandler::processingInstruction(const QString& target, const QString& data)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "processingInstruction");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(3, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[3] = {NULL, (void*)&target, (void*)&data};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("processingInstruction", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return bool();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 void PythonQtShell_QXmlContentHandler::setDocumentLocator(QXmlLocator* locator)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "setDocumentLocator");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"" , "QXmlLocator*"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
void* args[2] = {NULL, (void*)&locator};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
florianlink
updated to improved generator...
r128 return;
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
florianlink
updated to improved generator...
r128
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlContentHandler::skippedEntity(const QString& name)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "skippedEntity");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QString&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[2] = {NULL, (void*)&name};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("skippedEntity", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return bool();
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlContentHandler::startDocument()
florianlink
updated to Qt 4.6 API...
r110 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "startDocument");
florianlink
updated to Qt 4.6 API...
r110 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[1] = {NULL};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("startDocument", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return bool();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlContentHandler::startElement(const QString& namespaceURI, const QString& localName, const QString& qName, const QXmlAttributes& atts)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "startElement");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QXmlAttributes&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(5, argumentList);
bool returnValue;
void* args[5] = {NULL, (void*)&namespaceURI, (void*)&localName, (void*)&qName, (void*)&atts};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("startElement", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
florianlink
updated to improved generator...
r128 returnValue = *((bool*)args[0]);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return bool();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlContentHandler::startPrefixMapping(const QString& prefix, const QString& uri)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "startPrefixMapping");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(3, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[3] = {NULL, (void*)&prefix, (void*)&uri};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("startPrefixMapping", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return bool();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
QXmlContentHandler* PythonQtWrapper_QXmlContentHandler::new_QXmlContentHandler()
{
return new PythonQtShell_QXmlContentHandler(); }
florianlink
updated to Qt 4.8 wrappers...
r186 PythonQtShell_QXmlDTDHandler::~PythonQtShell_QXmlDTDHandler() {
PythonQtPrivate* priv = PythonQt::priv();
if (priv) { priv->shellClassDeleted(this); }
}
florianlink
updated to improved generator...
r128 QString PythonQtShell_QXmlDTDHandler::errorString() const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "errorString");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"QString"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
QString returnValue;
void* args[1] = {NULL};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("errorString", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
florianlink
updated to improved generator...
r128 returnValue = *((QString*)args[0]);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return QString();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlDTDHandler::notationDecl(const QString& name, const QString& publicId, const QString& systemId)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "notationDecl");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(4, argumentList);
bool returnValue;
void* args[4] = {NULL, (void*)&name, (void*)&publicId, (void*)&systemId};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("notationDecl", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
florianlink
updated to improved generator...
r128 returnValue = *((bool*)args[0]);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return bool();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to new operators...
r120 bool PythonQtShell_QXmlDTDHandler::unparsedEntityDecl(const QString& name, const QString& publicId, const QString& systemId, const QString& notationName)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to new operators...
r120 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "unparsedEntityDecl");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to new operators...
r120 static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(5, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to new operators...
r120 void* args[5] = {NULL, (void*)&name, (void*)&publicId, (void*)&systemId, (void*)&notationName};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to new operators...
r120 PythonQt::priv()->handleVirtualOverloadReturnError("unparsedEntityDecl", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return bool();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
QXmlDTDHandler* PythonQtWrapper_QXmlDTDHandler::new_QXmlDTDHandler()
{
return new PythonQtShell_QXmlDTDHandler(); }
florianlink
updated to Qt 4.8 wrappers...
r186 PythonQtShell_QXmlDeclHandler::~PythonQtShell_QXmlDeclHandler() {
PythonQtPrivate* priv = PythonQt::priv();
if (priv) { priv->shellClassDeleted(this); }
}
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool PythonQtShell_QXmlDeclHandler::attributeDecl(const QString& eName, const QString& aName, const QString& type, const QString& valueDefault, const QString& value)
{
if (_wrapper) {
PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "attributeDecl");
PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&" , "const QString&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(6, argumentList);
bool returnValue;
void* args[6] = {NULL, (void*)&eName, (void*)&aName, (void*)&type, (void*)&valueDefault, (void*)&value};
PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
PythonQt::priv()->handleVirtualOverloadReturnError("attributeDecl", methodInfo, result);
} else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return bool();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
QString PythonQtShell_QXmlDeclHandler::errorString() const
{
if (_wrapper) {
PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "errorString");
PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
static const char* argumentList[] ={"QString"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
QString returnValue;
void* args[1] = {NULL};
PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
PythonQt::priv()->handleVirtualOverloadReturnError("errorString", methodInfo, result);
} else {
returnValue = *((QString*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return QString();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlDeclHandler::externalEntityDecl(const QString& name, const QString& publicId, const QString& systemId)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "externalEntityDecl");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(4, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[4] = {NULL, (void*)&name, (void*)&publicId, (void*)&systemId};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("externalEntityDecl", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return bool();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlDeclHandler::internalEntityDecl(const QString& name, const QString& value)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "internalEntityDecl");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(3, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[3] = {NULL, (void*)&name, (void*)&value};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("internalEntityDecl", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return bool();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
QXmlDeclHandler* PythonQtWrapper_QXmlDeclHandler::new_QXmlDeclHandler()
{
return new PythonQtShell_QXmlDeclHandler(); }
florianlink
updated to Qt 4.8 wrappers...
r186 PythonQtShell_QXmlDefaultHandler::~PythonQtShell_QXmlDefaultHandler() {
PythonQtPrivate* priv = PythonQt::priv();
if (priv) { priv->shellClassDeleted(this); }
}
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlDefaultHandler::attributeDecl(const QString& eName, const QString& aName, const QString& type, const QString& valueDefault, const QString& value)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "attributeDecl");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&" , "const QString&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(6, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[6] = {NULL, (void*)&eName, (void*)&aName, (void*)&type, (void*)&valueDefault, (void*)&value};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("attributeDecl", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return QXmlDefaultHandler::attributeDecl(eName, aName, type, valueDefault, value);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlDefaultHandler::characters(const QString& ch)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "characters");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QString&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[2] = {NULL, (void*)&ch};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("characters", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return QXmlDefaultHandler::characters(ch);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlDefaultHandler::comment(const QString& ch)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "comment");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QString&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[2] = {NULL, (void*)&ch};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("comment", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return QXmlDefaultHandler::comment(ch);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlDefaultHandler::endCDATA()
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "endCDATA");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[1] = {NULL};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("endCDATA", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return QXmlDefaultHandler::endCDATA();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlDefaultHandler::endDTD()
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "endDTD");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool"};
florianlink
updated to new operators...
r120 static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
florianlink
updated to improved generator...
r128 bool returnValue;
florianlink
updated to new operators...
r120 void* args[1] = {NULL};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("endDTD", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
florianlink
updated to improved generator...
r128 returnValue = *((bool*)args[0]);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return QXmlDefaultHandler::endDTD();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlDefaultHandler::endDocument()
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "endDocument");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[1] = {NULL};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("endDocument", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return QXmlDefaultHandler::endDocument();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlDefaultHandler::endElement(const QString& namespaceURI, const QString& localName, const QString& qName)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "endElement");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to new operators...
r120 static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(4, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[4] = {NULL, (void*)&namespaceURI, (void*)&localName, (void*)&qName};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("endElement", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return QXmlDefaultHandler::endElement(namespaceURI, localName, qName);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlDefaultHandler::endEntity(const QString& name)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "endEntity");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to new operators...
r120 static const char* argumentList[] ={"bool" , "const QString&"};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
florianlink
updated to new operators...
r120 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[2] = {NULL, (void*)&name};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
florianlink
updated to new operators...
r120 if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("endEntity", methodInfo, result);
florianlink
updated to new operators...
r120 } else {
returnValue = *((bool*)args[0]);
}
}
}
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 if (result) { Py_DECREF(result); }
Py_DECREF(obj);
florianlink
updated to new operators...
r120 return returnValue;
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
florianlink
updated to improved generator...
r128 return QXmlDefaultHandler::endEntity(name);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlDefaultHandler::endPrefixMapping(const QString& prefix)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "endPrefixMapping");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QString&"};
florianlink
updated to new operators...
r120 static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[2] = {NULL, (void*)&prefix};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("endPrefixMapping", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return QXmlDefaultHandler::endPrefixMapping(prefix);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlDefaultHandler::error(const QXmlParseException& exception)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "error");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QXmlParseException&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[2] = {NULL, (void*)&exception};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("error", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return QXmlDefaultHandler::error(exception);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QString PythonQtShell_QXmlDefaultHandler::errorString() const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "errorString");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"QString"};
florianlink
updated to new operators...
r120 static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
florianlink
updated to improved generator...
r128 QString returnValue;
florianlink
updated to new operators...
r120 void* args[1] = {NULL};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("errorString", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
florianlink
updated to improved generator...
r128 returnValue = *((QString*)args[0]);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return QXmlDefaultHandler::errorString();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlDefaultHandler::externalEntityDecl(const QString& name, const QString& publicId, const QString& systemId)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "externalEntityDecl");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(4, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[4] = {NULL, (void*)&name, (void*)&publicId, (void*)&systemId};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("externalEntityDecl", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return QXmlDefaultHandler::externalEntityDecl(name, publicId, systemId);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to new operators...
r120 bool PythonQtShell_QXmlDefaultHandler::fatalError(const QXmlParseException& exception)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to new operators...
r120 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "fatalError");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to new operators...
r120 static const char* argumentList[] ={"bool" , "const QXmlParseException&"};
florianlink
updated to Qt 4.6 API...
r110 static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to new operators...
r120 void* args[2] = {NULL, (void*)&exception};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to new operators...
r120 PythonQt::priv()->handleVirtualOverloadReturnError("fatalError", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return QXmlDefaultHandler::fatalError(exception);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlDefaultHandler::ignorableWhitespace(const QString& ch)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "ignorableWhitespace");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
static const char* argumentList[] ={"bool" , "const QString&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
bool returnValue;
florianlink
updated to improved generator...
r128 void* args[2] = {NULL, (void*)&ch};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("ignorableWhitespace", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return QXmlDefaultHandler::ignorableWhitespace(ch);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlDefaultHandler::internalEntityDecl(const QString& name, const QString& value)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "internalEntityDecl");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(3, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[3] = {NULL, (void*)&name, (void*)&value};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("internalEntityDecl", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return QXmlDefaultHandler::internalEntityDecl(name, value);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlDefaultHandler::notationDecl(const QString& name, const QString& publicId, const QString& systemId)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "notationDecl");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to new operators...
r120 static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(4, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to new operators...
r120 void* args[4] = {NULL, (void*)&name, (void*)&publicId, (void*)&systemId};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("notationDecl", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return QXmlDefaultHandler::notationDecl(name, publicId, systemId);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to new operators...
r120 bool PythonQtShell_QXmlDefaultHandler::processingInstruction(const QString& target, const QString& data)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to new operators...
r120 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "processingInstruction");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to new operators...
r120 static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(3, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to new operators...
r120 void* args[3] = {NULL, (void*)&target, (void*)&data};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to new operators...
r120 PythonQt::priv()->handleVirtualOverloadReturnError("processingInstruction", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return QXmlDefaultHandler::processingInstruction(target, data);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlDefaultHandler::resolveEntity(const QString& publicId, const QString& systemId, QXmlInputSource*& ret)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "resolveEntity");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "QXmlInputSource*&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(4, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[4] = {NULL, (void*)&publicId, (void*)&systemId, (void*)&ret};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("resolveEntity", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return QXmlDefaultHandler::resolveEntity(publicId, systemId, ret);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to new operators...
r120 void PythonQtShell_QXmlDefaultHandler::setDocumentLocator(QXmlLocator* locator)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to new operators...
r120 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "setDocumentLocator");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to new operators...
r120 static const char* argumentList[] ={"" , "QXmlLocator*"};
florianlink
updated to Qt 4.6 API...
r110 static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
florianlink
updated to new operators...
r120 void* args[2] = {NULL, (void*)&locator};
PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return;
}
}
QXmlDefaultHandler::setDocumentLocator(locator);
}
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlDefaultHandler::skippedEntity(const QString& name)
florianlink
updated to new operators...
r120 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "skippedEntity");
florianlink
updated to new operators...
r120 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QString&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[2] = {NULL, (void*)&name};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("skippedEntity", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return QXmlDefaultHandler::skippedEntity(name);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlDefaultHandler::startCDATA()
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "startCDATA");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[1] = {NULL};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("startCDATA", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return QXmlDefaultHandler::startCDATA();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlDefaultHandler::startDTD(const QString& name, const QString& publicId, const QString& systemId)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "startDTD");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(4, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[4] = {NULL, (void*)&name, (void*)&publicId, (void*)&systemId};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("startDTD", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return QXmlDefaultHandler::startDTD(name, publicId, systemId);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlDefaultHandler::startDocument()
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "startDocument");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[1] = {NULL};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("startDocument", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return QXmlDefaultHandler::startDocument();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlDefaultHandler::startElement(const QString& namespaceURI, const QString& localName, const QString& qName, const QXmlAttributes& atts)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "startElement");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QXmlAttributes&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(5, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[5] = {NULL, (void*)&namespaceURI, (void*)&localName, (void*)&qName, (void*)&atts};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("startElement", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return QXmlDefaultHandler::startElement(namespaceURI, localName, qName, atts);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlDefaultHandler::startEntity(const QString& name)
florianlink
updated to Qt 4.6 API...
r110 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "startEntity");
florianlink
updated to Qt 4.6 API...
r110 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QString&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
florianlink
updated to Qt 4.6 API...
r110 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[2] = {NULL, (void*)&name};
florianlink
updated to Qt 4.6 API...
r110 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("startEntity", methodInfo, result);
florianlink
updated to Qt 4.6 API...
r110 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return QXmlDefaultHandler::startEntity(name);
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlDefaultHandler::startPrefixMapping(const QString& prefix, const QString& uri)
florianlink
updated to Qt 4.6 API...
r110 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "startPrefixMapping");
florianlink
updated to Qt 4.6 API...
r110 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QString&" , "const QString&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(3, argumentList);
florianlink
updated to Qt 4.6 API...
r110 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[3] = {NULL, (void*)&prefix, (void*)&uri};
florianlink
updated to Qt 4.6 API...
r110 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("startPrefixMapping", methodInfo, result);
florianlink
updated to Qt 4.6 API...
r110 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return QXmlDefaultHandler::startPrefixMapping(prefix, uri);
}
bool PythonQtShell_QXmlDefaultHandler::unparsedEntityDecl(const QString& name, const QString& publicId, const QString& systemId, const QString& notationName)
{
if (_wrapper) {
PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "unparsedEntityDecl");
PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&" , "const QString&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(5, argumentList);
bool returnValue;
void* args[5] = {NULL, (void*)&name, (void*)&publicId, (void*)&systemId, (void*)&notationName};
PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
PythonQt::priv()->handleVirtualOverloadReturnError("unparsedEntityDecl", methodInfo, result);
} else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
return QXmlDefaultHandler::unparsedEntityDecl(name, publicId, systemId, notationName);
}
bool PythonQtShell_QXmlDefaultHandler::warning(const QXmlParseException& exception)
{
if (_wrapper) {
PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "warning");
PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
static const char* argumentList[] ={"bool" , "const QXmlParseException&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
bool returnValue;
void* args[2] = {NULL, (void*)&exception};
PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
PythonQt::priv()->handleVirtualOverloadReturnError("warning", methodInfo, result);
} else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
return QXmlDefaultHandler::warning(exception);
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 QXmlDefaultHandler* PythonQtWrapper_QXmlDefaultHandler::new_QXmlDefaultHandler()
{
return new PythonQtShell_QXmlDefaultHandler(); }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlDefaultHandler::attributeDecl(QXmlDefaultHandler* theWrappedObject, const QString& eName, const QString& aName, const QString& type, const QString& valueDefault, const QString& value)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlDefaultHandler*)theWrappedObject)->promoted_attributeDecl(eName, aName, type, valueDefault, value));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlDefaultHandler::characters(QXmlDefaultHandler* theWrappedObject, const QString& ch)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlDefaultHandler*)theWrappedObject)->promoted_characters(ch));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlDefaultHandler::comment(QXmlDefaultHandler* theWrappedObject, const QString& ch)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlDefaultHandler*)theWrappedObject)->promoted_comment(ch));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlDefaultHandler::endCDATA(QXmlDefaultHandler* theWrappedObject)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlDefaultHandler*)theWrappedObject)->promoted_endCDATA());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlDefaultHandler::endDTD(QXmlDefaultHandler* theWrappedObject)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlDefaultHandler*)theWrappedObject)->promoted_endDTD());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlDefaultHandler::endDocument(QXmlDefaultHandler* theWrappedObject)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlDefaultHandler*)theWrappedObject)->promoted_endDocument());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlDefaultHandler::endElement(QXmlDefaultHandler* theWrappedObject, const QString& namespaceURI, const QString& localName, const QString& qName)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlDefaultHandler*)theWrappedObject)->promoted_endElement(namespaceURI, localName, qName));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlDefaultHandler::endEntity(QXmlDefaultHandler* theWrappedObject, const QString& name)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlDefaultHandler*)theWrappedObject)->promoted_endEntity(name));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlDefaultHandler::endPrefixMapping(QXmlDefaultHandler* theWrappedObject, const QString& prefix)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlDefaultHandler*)theWrappedObject)->promoted_endPrefixMapping(prefix));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlDefaultHandler::error(QXmlDefaultHandler* theWrappedObject, const QXmlParseException& exception)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlDefaultHandler*)theWrappedObject)->promoted_error(exception));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QString PythonQtWrapper_QXmlDefaultHandler::errorString(QXmlDefaultHandler* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlDefaultHandler*)theWrappedObject)->promoted_errorString());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlDefaultHandler::externalEntityDecl(QXmlDefaultHandler* theWrappedObject, const QString& name, const QString& publicId, const QString& systemId)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlDefaultHandler*)theWrappedObject)->promoted_externalEntityDecl(name, publicId, systemId));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to new operators...
r120 bool PythonQtWrapper_QXmlDefaultHandler::fatalError(QXmlDefaultHandler* theWrappedObject, const QXmlParseException& exception)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to new operators...
r120 return ( ((PythonQtPublicPromoter_QXmlDefaultHandler*)theWrappedObject)->promoted_fatalError(exception));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlDefaultHandler::ignorableWhitespace(QXmlDefaultHandler* theWrappedObject, const QString& ch)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlDefaultHandler*)theWrappedObject)->promoted_ignorableWhitespace(ch));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlDefaultHandler::internalEntityDecl(QXmlDefaultHandler* theWrappedObject, const QString& name, const QString& value)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlDefaultHandler*)theWrappedObject)->promoted_internalEntityDecl(name, value));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlDefaultHandler::notationDecl(QXmlDefaultHandler* theWrappedObject, const QString& name, const QString& publicId, const QString& systemId)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlDefaultHandler*)theWrappedObject)->promoted_notationDecl(name, publicId, systemId));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlDefaultHandler::processingInstruction(QXmlDefaultHandler* theWrappedObject, const QString& target, const QString& data)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlDefaultHandler*)theWrappedObject)->promoted_processingInstruction(target, data));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlDefaultHandler::resolveEntity(QXmlDefaultHandler* theWrappedObject, const QString& publicId, const QString& systemId, QXmlInputSource*& ret)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlDefaultHandler*)theWrappedObject)->promoted_resolveEntity(publicId, systemId, ret));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlDefaultHandler::setDocumentLocator(QXmlDefaultHandler* theWrappedObject, QXmlLocator* locator)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( ((PythonQtPublicPromoter_QXmlDefaultHandler*)theWrappedObject)->promoted_setDocumentLocator(locator));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlDefaultHandler::skippedEntity(QXmlDefaultHandler* theWrappedObject, const QString& name)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlDefaultHandler*)theWrappedObject)->promoted_skippedEntity(name));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlDefaultHandler::startCDATA(QXmlDefaultHandler* theWrappedObject)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlDefaultHandler*)theWrappedObject)->promoted_startCDATA());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlDefaultHandler::startDTD(QXmlDefaultHandler* theWrappedObject, const QString& name, const QString& publicId, const QString& systemId)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlDefaultHandler*)theWrappedObject)->promoted_startDTD(name, publicId, systemId));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlDefaultHandler::startDocument(QXmlDefaultHandler* theWrappedObject)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlDefaultHandler*)theWrappedObject)->promoted_startDocument());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlDefaultHandler::startElement(QXmlDefaultHandler* theWrappedObject, const QString& namespaceURI, const QString& localName, const QString& qName, const QXmlAttributes& atts)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlDefaultHandler*)theWrappedObject)->promoted_startElement(namespaceURI, localName, qName, atts));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlDefaultHandler::startEntity(QXmlDefaultHandler* theWrappedObject, const QString& name)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlDefaultHandler*)theWrappedObject)->promoted_startEntity(name));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlDefaultHandler::startPrefixMapping(QXmlDefaultHandler* theWrappedObject, const QString& prefix, const QString& uri)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlDefaultHandler*)theWrappedObject)->promoted_startPrefixMapping(prefix, uri));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlDefaultHandler::unparsedEntityDecl(QXmlDefaultHandler* theWrappedObject, const QString& name, const QString& publicId, const QString& systemId, const QString& notationName)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlDefaultHandler*)theWrappedObject)->promoted_unparsedEntityDecl(name, publicId, systemId, notationName));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlDefaultHandler::warning(QXmlDefaultHandler* theWrappedObject, const QXmlParseException& exception)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlDefaultHandler*)theWrappedObject)->promoted_warning(exception));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to Qt 4.8 wrappers...
r186 PythonQtShell_QXmlEntityResolver::~PythonQtShell_QXmlEntityResolver() {
PythonQtPrivate* priv = PythonQt::priv();
if (priv) { priv->shellClassDeleted(this); }
}
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 QString PythonQtShell_QXmlEntityResolver::errorString() const
{
if (_wrapper) {
PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "errorString");
PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
static const char* argumentList[] ={"QString"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
QString returnValue;
void* args[1] = {NULL};
PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
PythonQt::priv()->handleVirtualOverloadReturnError("errorString", methodInfo, result);
} else {
returnValue = *((QString*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return QString();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
bool PythonQtShell_QXmlEntityResolver::resolveEntity(const QString& publicId, const QString& systemId, QXmlInputSource*& ret)
{
if (_wrapper) {
PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "resolveEntity");
PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "QXmlInputSource*&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(4, argumentList);
bool returnValue;
void* args[4] = {NULL, (void*)&publicId, (void*)&systemId, (void*)&ret};
PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
PythonQt::priv()->handleVirtualOverloadReturnError("resolveEntity", methodInfo, result);
} else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return bool();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
QXmlEntityResolver* PythonQtWrapper_QXmlEntityResolver::new_QXmlEntityResolver()
{
return new PythonQtShell_QXmlEntityResolver(); }
florianlink
updated to Qt 4.8 wrappers...
r186 PythonQtShell_QXmlErrorHandler::~PythonQtShell_QXmlErrorHandler() {
PythonQtPrivate* priv = PythonQt::priv();
if (priv) { priv->shellClassDeleted(this); }
}
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlErrorHandler::error(const QXmlParseException& exception)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "error");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to Qt 4.6 API...
r110 static const char* argumentList[] ={"bool" , "const QXmlParseException&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
bool returnValue;
void* args[2] = {NULL, (void*)&exception};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("error", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
florianlink
updated to Qt 4.6 API...
r110 returnValue = *((bool*)args[0]);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return bool();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to new operators...
r120 QString PythonQtShell_QXmlErrorHandler::errorString() const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to new operators...
r120 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "errorString");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to new operators...
r120 static const char* argumentList[] ={"QString"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
QString returnValue;
void* args[1] = {NULL};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to new operators...
r120 PythonQt::priv()->handleVirtualOverloadReturnError("errorString", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
florianlink
updated to new operators...
r120 returnValue = *((QString*)args[0]);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return QString();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlErrorHandler::fatalError(const QXmlParseException& exception)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "fatalError");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to new operators...
r120 static const char* argumentList[] ={"bool" , "const QXmlParseException&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
bool returnValue;
void* args[2] = {NULL, (void*)&exception};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("fatalError", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
florianlink
updated to new operators...
r120 returnValue = *((bool*)args[0]);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return bool();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlErrorHandler::warning(const QXmlParseException& exception)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "warning");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QXmlParseException&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
bool returnValue;
void* args[2] = {NULL, (void*)&exception};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
florianlink
updated to new operators...
r120 if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("warning", methodInfo, result);
florianlink
updated to new operators...
r120 } else {
florianlink
updated to improved generator...
r128 returnValue = *((bool*)args[0]);
florianlink
updated to new operators...
r120 }
}
}
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 if (result) { Py_DECREF(result); }
Py_DECREF(obj);
florianlink
updated to new operators...
r120 return returnValue;
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
florianlink
updated to improved generator...
r128 return bool();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QXmlErrorHandler* PythonQtWrapper_QXmlErrorHandler::new_QXmlErrorHandler()
{
return new PythonQtShell_QXmlErrorHandler(); }
florianlink
updated to Qt 4.8 wrappers...
r186 PythonQtShell_QXmlInputSource::~PythonQtShell_QXmlInputSource() {
PythonQtPrivate* priv = PythonQt::priv();
if (priv) { priv->shellClassDeleted(this); }
}
florianlink
updated to new operators...
r120 QString PythonQtShell_QXmlInputSource::data() const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to new operators...
r120 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "data");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to new operators...
r120 static const char* argumentList[] ={"QString"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 QString returnValue;
florianlink
updated to new operators...
r120 void* args[1] = {NULL};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to new operators...
r120 PythonQt::priv()->handleVirtualOverloadReturnError("data", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((QString*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return QXmlInputSource::data();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
void PythonQtShell_QXmlInputSource::fetchData()
{
if (_wrapper) {
PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "fetchData");
PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
static const char* argumentList[] ={""};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
void* args[1] = {NULL};
PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return;
}
}
QXmlInputSource::fetchData();
}
florianlink
updated to improved generator...
r128 QString PythonQtShell_QXmlInputSource::fromRawData(const QByteArray& data, bool beginning)
florianlink
updated to new operators...
r120 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "fromRawData");
florianlink
updated to new operators...
r120 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"QString" , "const QByteArray&" , "bool"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(3, argumentList);
QString returnValue;
void* args[3] = {NULL, (void*)&data, (void*)&beginning};
florianlink
updated to new operators...
r120 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
florianlink
updated to improved generator...
r128 if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
PythonQt::priv()->handleVirtualOverloadReturnError("fromRawData", methodInfo, result);
} else {
returnValue = *((QString*)args[0]);
}
}
}
florianlink
updated to new operators...
r120 if (result) { Py_DECREF(result); }
Py_DECREF(obj);
florianlink
updated to improved generator...
r128 return returnValue;
florianlink
updated to new operators...
r120 }
}
florianlink
updated to improved generator...
r128 return QXmlInputSource::fromRawData(data, beginning);
florianlink
updated to new operators...
r120 }
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 QChar PythonQtShell_QXmlInputSource::next()
{
if (_wrapper) {
PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "next");
PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
static const char* argumentList[] ={"QChar"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
QChar returnValue;
void* args[1] = {NULL};
PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
PythonQt::priv()->handleVirtualOverloadReturnError("next", methodInfo, result);
} else {
returnValue = *((QChar*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
return QXmlInputSource::next();
}
florianlink
updated to improved generator...
r128 void PythonQtShell_QXmlInputSource::reset()
{
if (_wrapper) {
PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "reset");
PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
static const char* argumentList[] ={""};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
void* args[1] = {NULL};
PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return;
}
}
QXmlInputSource::reset();
}
florianlink
updated to new operators...
r120 void PythonQtShell_QXmlInputSource::setData(const QByteArray& dat)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to new operators...
r120 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "setData");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to new operators...
r120 static const char* argumentList[] ={"" , "const QByteArray&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
void* args[2] = {NULL, (void*)&dat};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return;
}
}
florianlink
updated to new operators...
r120 QXmlInputSource::setData(dat);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to new operators...
r120 void PythonQtShell_QXmlInputSource::setData(const QString& dat)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to new operators...
r120 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "setData");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to new operators...
r120 static const char* argumentList[] ={"" , "const QString&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
void* args[2] = {NULL, (void*)&dat};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
florianlink
updated to new operators...
r120 return;
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
florianlink
updated to new operators...
r120 QXmlInputSource::setData(dat);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
QXmlInputSource* PythonQtWrapper_QXmlInputSource::new_QXmlInputSource()
{
return new PythonQtShell_QXmlInputSource(); }
QXmlInputSource* PythonQtWrapper_QXmlInputSource::new_QXmlInputSource(QIODevice* dev)
{
return new PythonQtShell_QXmlInputSource(dev); }
florianlink
updated to new operators...
r120 QString PythonQtWrapper_QXmlInputSource::data(QXmlInputSource* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to new operators...
r120 return ( ((PythonQtPublicPromoter_QXmlInputSource*)theWrappedObject)->promoted_data());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to new operators...
r120 void PythonQtWrapper_QXmlInputSource::fetchData(QXmlInputSource* theWrappedObject)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to new operators...
r120 ( ((PythonQtPublicPromoter_QXmlInputSource*)theWrappedObject)->promoted_fetchData());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QString PythonQtWrapper_QXmlInputSource::fromRawData(QXmlInputSource* theWrappedObject, const QByteArray& data, bool beginning)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlInputSource*)theWrappedObject)->promoted_fromRawData(data, beginning));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
QChar PythonQtWrapper_QXmlInputSource::next(QXmlInputSource* theWrappedObject)
{
return ( ((PythonQtPublicPromoter_QXmlInputSource*)theWrappedObject)->promoted_next());
}
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlInputSource::reset(QXmlInputSource* theWrappedObject)
{
( ((PythonQtPublicPromoter_QXmlInputSource*)theWrappedObject)->promoted_reset());
}
florianlink
updated to new operators...
r120 void PythonQtWrapper_QXmlInputSource::setData(QXmlInputSource* theWrappedObject, const QByteArray& dat)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to new operators...
r120 ( ((PythonQtPublicPromoter_QXmlInputSource*)theWrappedObject)->promoted_setData(dat));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to new operators...
r120 void PythonQtWrapper_QXmlInputSource::setData(QXmlInputSource* theWrappedObject, const QString& dat)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to new operators...
r120 ( ((PythonQtPublicPromoter_QXmlInputSource*)theWrappedObject)->promoted_setData(dat));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to Qt 4.8 wrappers...
r186 PythonQtShell_QXmlLexicalHandler::~PythonQtShell_QXmlLexicalHandler() {
PythonQtPrivate* priv = PythonQt::priv();
if (priv) { priv->shellClassDeleted(this); }
}
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlLexicalHandler::comment(const QString& ch)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "comment");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QString&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[2] = {NULL, (void*)&ch};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("comment", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return bool();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlLexicalHandler::endCDATA()
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "endCDATA");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool"};
florianlink
updated to Qt 4.6 API...
r110 static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
florianlink
updated to improved generator...
r128 bool returnValue;
florianlink
updated to Qt 4.6 API...
r110 void* args[1] = {NULL};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("endCDATA", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
florianlink
updated to improved generator...
r128 returnValue = *((bool*)args[0]);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return bool();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlLexicalHandler::endDTD()
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "endDTD");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[1] = {NULL};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("endDTD", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return bool();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlLexicalHandler::endEntity(const QString& name)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "endEntity");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QString&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[2] = {NULL, (void*)&name};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("endEntity", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return bool();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QString PythonQtShell_QXmlLexicalHandler::errorString() const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "errorString");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"QString"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
QString returnValue;
void* args[1] = {NULL};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("errorString", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
florianlink
updated to improved generator...
r128 returnValue = *((QString*)args[0]);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return QString();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to Qt 4.6 API...
r110 bool PythonQtShell_QXmlLexicalHandler::startCDATA()
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to Qt 4.6 API...
r110 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "startCDATA");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to Qt 4.6 API...
r110 static const char* argumentList[] ={"bool"};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
florianlink
updated to Qt 4.6 API...
r110 bool returnValue;
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 void* args[1] = {NULL};
PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to Qt 4.6 API...
r110 PythonQt::priv()->handleVirtualOverloadReturnError("startCDATA", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
florianlink
updated to Qt 4.6 API...
r110 returnValue = *((bool*)args[0]);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return bool();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlLexicalHandler::startDTD(const QString& name, const QString& publicId, const QString& systemId)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "startDTD");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QString&" , "const QString&" , "const QString&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(4, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[4] = {NULL, (void*)&name, (void*)&publicId, (void*)&systemId};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("startDTD", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return bool();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlLexicalHandler::startEntity(const QString& name)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "startEntity");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to Qt 4.6 API...
r110 static const char* argumentList[] ={"bool" , "const QString&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[2] = {NULL, (void*)&name};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("startEntity", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return bool();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
QXmlLexicalHandler* PythonQtWrapper_QXmlLexicalHandler::new_QXmlLexicalHandler()
{
return new PythonQtShell_QXmlLexicalHandler(); }
florianlink
updated to Qt 4.8 wrappers...
r186 PythonQtShell_QXmlLocator::~PythonQtShell_QXmlLocator() {
PythonQtPrivate* priv = PythonQt::priv();
if (priv) { priv->shellClassDeleted(this); }
}
florianlink
updated to improved generator...
r128 int PythonQtShell_QXmlLocator::columnNumber() const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "columnNumber");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
static const char* argumentList[] ={"int"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
int returnValue;
void* args[1] = {NULL};
PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("columnNumber", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((int*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return int();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 int PythonQtShell_QXmlLocator::lineNumber() const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "lineNumber");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
static const char* argumentList[] ={"int"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
int returnValue;
void* args[1] = {NULL};
PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("lineNumber", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((int*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return int();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
QXmlLocator* PythonQtWrapper_QXmlLocator::new_QXmlLocator()
{
return new PythonQtShell_QXmlLocator(); }
QXmlParseException* PythonQtWrapper_QXmlParseException::new_QXmlParseException(const QString& name, int c, int l, const QString& p, const QString& s)
{
return new QXmlParseException(name, c, l, p, s); }
florianlink
updated to Qt 4.6 API...
r110 QXmlParseException* PythonQtWrapper_QXmlParseException::new_QXmlParseException(const QXmlParseException& other)
{
return new QXmlParseException(other); }
florianlink
updated to improved generator...
r128 int PythonQtWrapper_QXmlParseException::columnNumber(QXmlParseException* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->columnNumber());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 int PythonQtWrapper_QXmlParseException::lineNumber(QXmlParseException* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->lineNumber());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QString PythonQtWrapper_QXmlParseException::message(QXmlParseException* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->message());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QString PythonQtWrapper_QXmlParseException::publicId(QXmlParseException* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->publicId());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QString PythonQtWrapper_QXmlParseException::systemId(QXmlParseException* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->systemId());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to Qt 4.8 wrappers...
r186 PythonQtShell_QXmlReader::~PythonQtShell_QXmlReader() {
PythonQtPrivate* priv = PythonQt::priv();
if (priv) { priv->shellClassDeleted(this); }
}
florianlink
updated to improved generator...
r128 QXmlDTDHandler* PythonQtShell_QXmlReader::DTDHandler() const
{
if (_wrapper) {
PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "DTDHandler");
PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
static const char* argumentList[] ={"QXmlDTDHandler*"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
QXmlDTDHandler* returnValue;
void* args[1] = {NULL};
PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
PythonQt::priv()->handleVirtualOverloadReturnError("DTDHandler", methodInfo, result);
} else {
returnValue = *((QXmlDTDHandler**)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
return 0;
}
QXmlContentHandler* PythonQtShell_QXmlReader::contentHandler() const
{
if (_wrapper) {
PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "contentHandler");
PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
static const char* argumentList[] ={"QXmlContentHandler*"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
QXmlContentHandler* returnValue;
void* args[1] = {NULL};
PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
PythonQt::priv()->handleVirtualOverloadReturnError("contentHandler", methodInfo, result);
} else {
returnValue = *((QXmlContentHandler**)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
return 0;
}
florianlink
updated to new operators...
r120 QXmlDeclHandler* PythonQtShell_QXmlReader::declHandler() const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to new operators...
r120 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "declHandler");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to new operators...
r120 static const char* argumentList[] ={"QXmlDeclHandler*"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
QXmlDeclHandler* returnValue;
void* args[1] = {NULL};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
florianlink
updated to new operators...
r120 if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
PythonQt::priv()->handleVirtualOverloadReturnError("declHandler", methodInfo, result);
} else {
returnValue = *((QXmlDeclHandler**)args[0]);
}
}
}
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 if (result) { Py_DECREF(result); }
Py_DECREF(obj);
florianlink
updated to new operators...
r120 return returnValue;
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
florianlink
updated to new operators...
r120 return 0;
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to new operators...
r120 QXmlEntityResolver* PythonQtShell_QXmlReader::entityResolver() const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to new operators...
r120 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "entityResolver");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to new operators...
r120 static const char* argumentList[] ={"QXmlEntityResolver*"};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
florianlink
updated to new operators...
r120 QXmlEntityResolver* returnValue;
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 void* args[1] = {NULL};
PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to new operators...
r120 PythonQt::priv()->handleVirtualOverloadReturnError("entityResolver", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
florianlink
updated to new operators...
r120 returnValue = *((QXmlEntityResolver**)args[0]);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return 0;
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QXmlErrorHandler* PythonQtShell_QXmlReader::errorHandler() const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "errorHandler");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"QXmlErrorHandler*"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
QXmlErrorHandler* returnValue;
void* args[1] = {NULL};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
florianlink
updated to Qt 4.6 API...
r110 if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("errorHandler", methodInfo, result);
florianlink
updated to Qt 4.6 API...
r110 } else {
florianlink
updated to improved generator...
r128 returnValue = *((QXmlErrorHandler**)args[0]);
florianlink
updated to Qt 4.6 API...
r110 }
}
}
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 if (result) { Py_DECREF(result); }
Py_DECREF(obj);
florianlink
updated to Qt 4.6 API...
r110 return returnValue;
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
florianlink
updated to improved generator...
r128 return 0;
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlReader::feature(const QString& name, bool* ok) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "feature");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QString&" , "bool*"};
florianlink
updated to new operators...
r120 static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(3, argumentList);
florianlink
updated to improved generator...
r128 bool returnValue;
void* args[3] = {NULL, (void*)&name, (void*)&ok};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
florianlink
updated to improved generator...
r128 if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
PythonQt::priv()->handleVirtualOverloadReturnError("feature", methodInfo, result);
} else {
returnValue = *((bool*)args[0]);
}
}
}
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 if (result) { Py_DECREF(result); }
Py_DECREF(obj);
florianlink
updated to improved generator...
r128 return returnValue;
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
florianlink
updated to improved generator...
r128 return bool();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlReader::hasFeature(const QString& name) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "hasFeature");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to new operators...
r120 static const char* argumentList[] ={"bool" , "const QString&"};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
florianlink
updated to new operators...
r120 bool returnValue;
void* args[2] = {NULL, (void*)&name};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("hasFeature", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
florianlink
updated to new operators...
r120 returnValue = *((bool*)args[0]);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return bool();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlReader::hasProperty(const QString& name) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "hasProperty");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QString&"};
florianlink
updated to new operators...
r120 static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[2] = {NULL, (void*)&name};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("hasProperty", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return bool();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QXmlLexicalHandler* PythonQtShell_QXmlReader::lexicalHandler() const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "lexicalHandler");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"QXmlLexicalHandler*"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
QXmlLexicalHandler* returnValue;
void* args[1] = {NULL};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
florianlink
updated to improved generator...
r128 if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
PythonQt::priv()->handleVirtualOverloadReturnError("lexicalHandler", methodInfo, result);
} else {
returnValue = *((QXmlLexicalHandler**)args[0]);
}
}
}
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 if (result) { Py_DECREF(result); }
Py_DECREF(obj);
florianlink
updated to improved generator...
r128 return returnValue;
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
florianlink
updated to improved generator...
r128 return 0;
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlReader::parse(const QXmlInputSource& input)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "parse");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QXmlInputSource&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
florianlink
updated to Qt 4.6 API...
r110 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[2] = {NULL, (void*)&input};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("parse", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
florianlink
updated to Qt 4.6 API...
r110 returnValue = *((bool*)args[0]);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return bool();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlReader::parse(const QXmlInputSource* input)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "parse");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QXmlInputSource*"};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
florianlink
updated to improved generator...
r128 bool returnValue;
void* args[2] = {NULL, (void*)&input};
florianlink
updated to new operators...
r120 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
florianlink
updated to improved generator...
r128 if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
PythonQt::priv()->handleVirtualOverloadReturnError("parse", methodInfo, result);
} else {
returnValue = *((bool*)args[0]);
}
}
}
florianlink
updated to new operators...
r120 if (result) { Py_DECREF(result); }
Py_DECREF(obj);
florianlink
updated to improved generator...
r128 return returnValue;
florianlink
updated to new operators...
r120 }
}
florianlink
updated to improved generator...
r128 return bool();
florianlink
updated to new operators...
r120 }
void* PythonQtShell_QXmlReader::property(const QString& name, bool* ok) const
{
if (_wrapper) {
PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "property");
PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
static const char* argumentList[] ={"void*" , "const QString&" , "bool*"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(3, argumentList);
void* returnValue;
void* args[3] = {NULL, (void*)&name, (void*)&ok};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to new operators...
r120 PythonQt::priv()->handleVirtualOverloadReturnError("property", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
florianlink
updated to new operators...
r120 returnValue = *((void**)args[0]);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return 0;
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 void PythonQtShell_QXmlReader::setContentHandler(QXmlContentHandler* handler)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "setContentHandler");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"" , "QXmlContentHandler*"};
florianlink
updated to new operators...
r120 static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
florianlink
updated to improved generator...
r128 void* args[2] = {NULL, (void*)&handler};
florianlink
updated to new operators...
r120 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
florianlink
updated to improved generator...
r128 return;
florianlink
updated to new operators...
r120 }
}
florianlink
updated to improved generator...
r128
florianlink
updated to new operators...
r120 }
florianlink
updated to improved generator...
r128 void PythonQtShell_QXmlReader::setDTDHandler(QXmlDTDHandler* handler)
florianlink
updated to new operators...
r120 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "setDTDHandler");
florianlink
updated to new operators...
r120 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"" , "QXmlDTDHandler*"};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
void* args[2] = {NULL, (void*)&handler};
PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return;
}
}
}
florianlink
updated to improved generator...
r128 void PythonQtShell_QXmlReader::setDeclHandler(QXmlDeclHandler* handler)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "setDeclHandler");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"" , "QXmlDeclHandler*"};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
florianlink
updated to new operators...
r120 void* args[2] = {NULL, (void*)&handler};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
florianlink
updated to new operators...
r120 return;
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
florianlink
updated to new operators...
r120
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 void PythonQtShell_QXmlReader::setEntityResolver(QXmlEntityResolver* handler)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "setEntityResolver");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"" , "QXmlEntityResolver*"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
void* args[2] = {NULL, (void*)&handler};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
florianlink
updated to improved generator...
r128 return;
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
florianlink
updated to improved generator...
r128
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to new operators...
r120 void PythonQtShell_QXmlReader::setErrorHandler(QXmlErrorHandler* handler)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to new operators...
r120 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "setErrorHandler");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to new operators...
r120 static const char* argumentList[] ={"" , "QXmlErrorHandler*"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
void* args[2] = {NULL, (void*)&handler};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return;
}
}
}
florianlink
updated to improved generator...
r128 void PythonQtShell_QXmlReader::setFeature(const QString& name, bool value)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "setFeature");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"" , "const QString&" , "bool"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(3, argumentList);
void* args[3] = {NULL, (void*)&name, (void*)&value};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
florianlink
updated to improved generator...
r128 return;
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
florianlink
updated to improved generator...
r128
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 void PythonQtShell_QXmlReader::setLexicalHandler(QXmlLexicalHandler* handler)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "setLexicalHandler");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"" , "QXmlLexicalHandler*"};
florianlink
updated to new operators...
r120 static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
void* args[2] = {NULL, (void*)&handler};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
florianlink
updated to new operators...
r120 return;
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
florianlink
updated to new operators...
r120
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 void PythonQtShell_QXmlReader::setProperty(const QString& name, void* value)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "setProperty");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"" , "const QString&" , "void*"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(3, argumentList);
void* args[3] = {NULL, (void*)&name, (void*)&value};
PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return;
}
}
}
QXmlReader* PythonQtWrapper_QXmlReader::new_QXmlReader()
{
return new PythonQtShell_QXmlReader(); }
florianlink
updated to Qt 4.8 wrappers...
r186 PythonQtShell_QXmlSimpleReader::~PythonQtShell_QXmlSimpleReader() {
PythonQtPrivate* priv = PythonQt::priv();
if (priv) { priv->shellClassDeleted(this); }
}
florianlink
updated to improved generator...
r128 QXmlDTDHandler* PythonQtShell_QXmlSimpleReader::DTDHandler() const
{
if (_wrapper) {
PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "DTDHandler");
PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
static const char* argumentList[] ={"QXmlDTDHandler*"};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
florianlink
updated to improved generator...
r128 QXmlDTDHandler* returnValue;
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 void* args[1] = {NULL};
PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("DTDHandler", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
florianlink
updated to improved generator...
r128 returnValue = *((QXmlDTDHandler**)args[0]);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return QXmlSimpleReader::DTDHandler();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QXmlContentHandler* PythonQtShell_QXmlSimpleReader::contentHandler() const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "contentHandler");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"QXmlContentHandler*"};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
florianlink
updated to improved generator...
r128 QXmlContentHandler* returnValue;
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 void* args[1] = {NULL};
PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("contentHandler", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
florianlink
updated to improved generator...
r128 returnValue = *((QXmlContentHandler**)args[0]);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return QXmlSimpleReader::contentHandler();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QXmlDeclHandler* PythonQtShell_QXmlSimpleReader::declHandler() const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "declHandler");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"QXmlDeclHandler*"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
QXmlDeclHandler* returnValue;
void* args[1] = {NULL};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
florianlink
updated to improved generator...
r128 if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
PythonQt::priv()->handleVirtualOverloadReturnError("declHandler", methodInfo, result);
} else {
returnValue = *((QXmlDeclHandler**)args[0]);
}
}
}
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 if (result) { Py_DECREF(result); }
Py_DECREF(obj);
florianlink
updated to improved generator...
r128 return returnValue;
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
florianlink
updated to improved generator...
r128 return QXmlSimpleReader::declHandler();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QXmlEntityResolver* PythonQtShell_QXmlSimpleReader::entityResolver() const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "entityResolver");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"QXmlEntityResolver*"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
QXmlEntityResolver* returnValue;
void* args[1] = {NULL};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
florianlink
updated to Qt 4.6 API...
r110 if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("entityResolver", methodInfo, result);
florianlink
updated to Qt 4.6 API...
r110 } else {
florianlink
updated to improved generator...
r128 returnValue = *((QXmlEntityResolver**)args[0]);
florianlink
updated to Qt 4.6 API...
r110 }
}
}
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 if (result) { Py_DECREF(result); }
Py_DECREF(obj);
florianlink
updated to Qt 4.6 API...
r110 return returnValue;
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
florianlink
updated to improved generator...
r128 return QXmlSimpleReader::entityResolver();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QXmlErrorHandler* PythonQtShell_QXmlSimpleReader::errorHandler() const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "errorHandler");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"QXmlErrorHandler*"};
florianlink
updated to new operators...
r120 static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
florianlink
updated to improved generator...
r128 QXmlErrorHandler* returnValue;
florianlink
updated to new operators...
r120 void* args[1] = {NULL};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
florianlink
updated to Qt 4.6 API...
r110 if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("errorHandler", methodInfo, result);
florianlink
updated to Qt 4.6 API...
r110 } else {
florianlink
updated to improved generator...
r128 returnValue = *((QXmlErrorHandler**)args[0]);
florianlink
updated to Qt 4.6 API...
r110 }
}
}
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 if (result) { Py_DECREF(result); }
Py_DECREF(obj);
florianlink
updated to Qt 4.6 API...
r110 return returnValue;
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
florianlink
updated to improved generator...
r128 return QXmlSimpleReader::errorHandler();
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlSimpleReader::feature(const QString& name, bool* ok) const
florianlink
updated to Qt 4.6 API...
r110 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "feature");
florianlink
updated to Qt 4.6 API...
r110 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QString&" , "bool*"};
florianlink
updated to new operators...
r120 static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(3, argumentList);
florianlink
updated to improved generator...
r128 bool returnValue;
void* args[3] = {NULL, (void*)&name, (void*)&ok};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
florianlink
updated to improved generator...
r128 if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
PythonQt::priv()->handleVirtualOverloadReturnError("feature", methodInfo, result);
} else {
returnValue = *((bool*)args[0]);
}
}
}
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 if (result) { Py_DECREF(result); }
Py_DECREF(obj);
florianlink
updated to improved generator...
r128 return returnValue;
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
florianlink
updated to improved generator...
r128 return QXmlSimpleReader::feature(name, ok);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlSimpleReader::hasFeature(const QString& name) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "hasFeature");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QString&"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
bool returnValue;
void* args[2] = {NULL, (void*)&name};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("hasFeature", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
florianlink
updated to improved generator...
r128 returnValue = *((bool*)args[0]);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return QXmlSimpleReader::hasFeature(name);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlSimpleReader::hasProperty(const QString& name) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "hasProperty");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QString&"};
florianlink
updated to new operators...
r120 static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
bool returnValue;
florianlink
updated to improved generator...
r128 void* args[2] = {NULL, (void*)&name};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("hasProperty", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
florianlink
updated to new operators...
r120 returnValue = *((bool*)args[0]);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return QXmlSimpleReader::hasProperty(name);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QXmlLexicalHandler* PythonQtShell_QXmlSimpleReader::lexicalHandler() const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "lexicalHandler");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"QXmlLexicalHandler*"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
QXmlLexicalHandler* returnValue;
void* args[1] = {NULL};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
florianlink
updated to improved generator...
r128 if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
PythonQt::priv()->handleVirtualOverloadReturnError("lexicalHandler", methodInfo, result);
} else {
returnValue = *((QXmlLexicalHandler**)args[0]);
}
}
}
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 if (result) { Py_DECREF(result); }
Py_DECREF(obj);
florianlink
updated to improved generator...
r128 return returnValue;
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
florianlink
updated to improved generator...
r128 return QXmlSimpleReader::lexicalHandler();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlSimpleReader::parse(const QXmlInputSource& input)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to new operators...
r120 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "parse");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QXmlInputSource&"};
florianlink
updated to new operators...
r120 static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to new operators...
r120 void* args[2] = {NULL, (void*)&input};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to new operators...
r120 PythonQt::priv()->handleVirtualOverloadReturnError("parse", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return QXmlSimpleReader::parse(input);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlSimpleReader::parse(const QXmlInputSource* input)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to Qt 4.6 API...
r110 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "parse");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QXmlInputSource*"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[2] = {NULL, (void*)&input};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to Qt 4.6 API...
r110 PythonQt::priv()->handleVirtualOverloadReturnError("parse", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return QXmlSimpleReader::parse(input);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlSimpleReader::parse(const QXmlInputSource* input, bool incremental)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "parse");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool" , "const QXmlInputSource*" , "bool"};
florianlink
updated to new operators...
r120 static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(3, argumentList);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 bool returnValue;
florianlink
updated to improved generator...
r128 void* args[3] = {NULL, (void*)&input, (void*)&incremental};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to improved generator...
r128 PythonQt::priv()->handleVirtualOverloadReturnError("parse", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to improved generator...
r128 return QXmlSimpleReader::parse(input, incremental);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtShell_QXmlSimpleReader::parseContinue()
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "parseContinue");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"bool"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(1, argumentList);
bool returnValue;
void* args[1] = {NULL};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
florianlink
updated to improved generator...
r128 if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
PythonQt::priv()->handleVirtualOverloadReturnError("parseContinue", methodInfo, result);
} else {
returnValue = *((bool*)args[0]);
}
}
}
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 if (result) { Py_DECREF(result); }
Py_DECREF(obj);
florianlink
updated to improved generator...
r128 return returnValue;
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
florianlink
updated to improved generator...
r128 return QXmlSimpleReader::parseContinue();
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to new operators...
r120 void* PythonQtShell_QXmlSimpleReader::property(const QString& name, bool* ok) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to new operators...
r120 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "property");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to new operators...
r120 static const char* argumentList[] ={"void*" , "const QString&" , "bool*"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(3, argumentList);
void* returnValue;
void* args[3] = {NULL, (void*)&name, (void*)&ok};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
florianlink
updated to new operators...
r120 PythonQt::priv()->handleVirtualOverloadReturnError("property", methodInfo, result);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 } else {
florianlink
updated to new operators...
r120 returnValue = *((void**)args[0]);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
florianlink
updated to new operators...
r120 return QXmlSimpleReader::property(name, ok);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to new operators...
r120 void PythonQtShell_QXmlSimpleReader::setContentHandler(QXmlContentHandler* handler)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to new operators...
r120 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "setContentHandler");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to new operators...
r120 static const char* argumentList[] ={"" , "QXmlContentHandler*"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
void* args[2] = {NULL, (void*)&handler};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return;
}
}
florianlink
updated to new operators...
r120 QXmlSimpleReader::setContentHandler(handler);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to new operators...
r120 void PythonQtShell_QXmlSimpleReader::setDTDHandler(QXmlDTDHandler* handler)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to new operators...
r120 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "setDTDHandler");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to new operators...
r120 static const char* argumentList[] ={"" , "QXmlDTDHandler*"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
void* args[2] = {NULL, (void*)&handler};
PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return;
}
}
QXmlSimpleReader::setDTDHandler(handler);
}
florianlink
updated to improved generator...
r128 void PythonQtShell_QXmlSimpleReader::setDeclHandler(QXmlDeclHandler* handler)
florianlink
updated to new operators...
r120 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "setDeclHandler");
florianlink
updated to new operators...
r120 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"" , "QXmlDeclHandler*"};
florianlink
updated to new operators...
r120 static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
florianlink
updated to improved generator...
r128 void* args[2] = {NULL, (void*)&handler};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
florianlink
updated to improved generator...
r128 return;
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
florianlink
updated to improved generator...
r128 QXmlSimpleReader::setDeclHandler(handler);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 void PythonQtShell_QXmlSimpleReader::setEntityResolver(QXmlEntityResolver* handler)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "setEntityResolver");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"" , "QXmlEntityResolver*"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
void* args[2] = {NULL, (void*)&handler};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
florianlink
updated to improved generator...
r128 return;
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
florianlink
updated to improved generator...
r128 QXmlSimpleReader::setEntityResolver(handler);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to new operators...
r120 void PythonQtShell_QXmlSimpleReader::setErrorHandler(QXmlErrorHandler* handler)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to new operators...
r120 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "setErrorHandler");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to new operators...
r120 static const char* argumentList[] ={"" , "QXmlErrorHandler*"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
void* args[2] = {NULL, (void*)&handler};
PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return;
}
}
QXmlSimpleReader::setErrorHandler(handler);
}
florianlink
updated to improved generator...
r128 void PythonQtShell_QXmlSimpleReader::setFeature(const QString& name, bool value)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "setFeature");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"" , "const QString&" , "bool"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(3, argumentList);
void* args[3] = {NULL, (void*)&name, (void*)&value};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
florianlink
updated to improved generator...
r128 return;
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
florianlink
updated to improved generator...
r128 QXmlSimpleReader::setFeature(name, value);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 void PythonQtShell_QXmlSimpleReader::setLexicalHandler(QXmlLexicalHandler* handler)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "setLexicalHandler");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"" , "QXmlLexicalHandler*"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
void* args[2] = {NULL, (void*)&handler};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
florianlink
updated to improved generator...
r128 return;
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
}
florianlink
updated to improved generator...
r128 QXmlSimpleReader::setLexicalHandler(handler);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 void PythonQtShell_QXmlSimpleReader::setProperty(const QString& name, void* value)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
if (_wrapper) {
florianlink
updated to improved generator...
r128 PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "setProperty");
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
florianlink
updated to improved generator...
r128 static const char* argumentList[] ={"" , "const QString&" , "void*"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(3, argumentList);
void* args[3] = {NULL, (void*)&name, (void*)&value};
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return;
}
}
florianlink
updated to improved generator...
r128 QXmlSimpleReader::setProperty(name, value);
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
QXmlSimpleReader* PythonQtWrapper_QXmlSimpleReader::new_QXmlSimpleReader()
{
return new PythonQtShell_QXmlSimpleReader(); }
florianlink
updated to improved generator...
r128 QXmlDTDHandler* PythonQtWrapper_QXmlSimpleReader::DTDHandler(QXmlSimpleReader* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlSimpleReader*)theWrappedObject)->promoted_DTDHandler());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QXmlContentHandler* PythonQtWrapper_QXmlSimpleReader::contentHandler(QXmlSimpleReader* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlSimpleReader*)theWrappedObject)->promoted_contentHandler());
}
QXmlDeclHandler* PythonQtWrapper_QXmlSimpleReader::declHandler(QXmlSimpleReader* theWrappedObject) const
{
return ( ((PythonQtPublicPromoter_QXmlSimpleReader*)theWrappedObject)->promoted_declHandler());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to new operators...
r120 QXmlEntityResolver* PythonQtWrapper_QXmlSimpleReader::entityResolver(QXmlSimpleReader* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to new operators...
r120 return ( ((PythonQtPublicPromoter_QXmlSimpleReader*)theWrappedObject)->promoted_entityResolver());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QXmlErrorHandler* PythonQtWrapper_QXmlSimpleReader::errorHandler(QXmlSimpleReader* theWrappedObject) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlSimpleReader*)theWrappedObject)->promoted_errorHandler());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlSimpleReader::feature(QXmlSimpleReader* theWrappedObject, const QString& name, bool* ok) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlSimpleReader*)theWrappedObject)->promoted_feature(name, ok));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlSimpleReader::hasFeature(QXmlSimpleReader* theWrappedObject, const QString& name) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlSimpleReader*)theWrappedObject)->promoted_hasFeature(name));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlSimpleReader::hasProperty(QXmlSimpleReader* theWrappedObject, const QString& name) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlSimpleReader*)theWrappedObject)->promoted_hasProperty(name));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 QXmlLexicalHandler* PythonQtWrapper_QXmlSimpleReader::lexicalHandler(QXmlSimpleReader* theWrappedObject) const
{
return ( ((PythonQtPublicPromoter_QXmlSimpleReader*)theWrappedObject)->promoted_lexicalHandler());
}
bool PythonQtWrapper_QXmlSimpleReader::parse(QXmlSimpleReader* theWrappedObject, const QXmlInputSource& input)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to new operators...
r120 return ( ((PythonQtPublicPromoter_QXmlSimpleReader*)theWrappedObject)->promoted_parse(input));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlSimpleReader::parse(QXmlSimpleReader* theWrappedObject, const QXmlInputSource* input)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlSimpleReader*)theWrappedObject)->promoted_parse(input));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlSimpleReader::parse(QXmlSimpleReader* theWrappedObject, const QXmlInputSource* input, bool incremental)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlSimpleReader*)theWrappedObject)->promoted_parse(input, incremental));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlSimpleReader::parseContinue(QXmlSimpleReader* theWrappedObject)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 return ( ((PythonQtPublicPromoter_QXmlSimpleReader*)theWrappedObject)->promoted_parseContinue());
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to new operators...
r120 void* PythonQtWrapper_QXmlSimpleReader::property(QXmlSimpleReader* theWrappedObject, const QString& name, bool* ok) const
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to new operators...
r120 return ( ((PythonQtPublicPromoter_QXmlSimpleReader*)theWrappedObject)->promoted_property(name, ok));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to new operators...
r120 void PythonQtWrapper_QXmlSimpleReader::setContentHandler(QXmlSimpleReader* theWrappedObject, QXmlContentHandler* handler)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to new operators...
r120 ( ((PythonQtPublicPromoter_QXmlSimpleReader*)theWrappedObject)->promoted_setContentHandler(handler));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to new operators...
r120 void PythonQtWrapper_QXmlSimpleReader::setDTDHandler(QXmlSimpleReader* theWrappedObject, QXmlDTDHandler* handler)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to new operators...
r120 ( ((PythonQtPublicPromoter_QXmlSimpleReader*)theWrappedObject)->promoted_setDTDHandler(handler));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlSimpleReader::setDeclHandler(QXmlSimpleReader* theWrappedObject, QXmlDeclHandler* handler)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 ( ((PythonQtPublicPromoter_QXmlSimpleReader*)theWrappedObject)->promoted_setDeclHandler(handler));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlSimpleReader::setEntityResolver(QXmlSimpleReader* theWrappedObject, QXmlEntityResolver* handler)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 ( ((PythonQtPublicPromoter_QXmlSimpleReader*)theWrappedObject)->promoted_setEntityResolver(handler));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to new operators...
r120 void PythonQtWrapper_QXmlSimpleReader::setErrorHandler(QXmlSimpleReader* theWrappedObject, QXmlErrorHandler* handler)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to new operators...
r120 ( ((PythonQtPublicPromoter_QXmlSimpleReader*)theWrappedObject)->promoted_setErrorHandler(handler));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlSimpleReader::setFeature(QXmlSimpleReader* theWrappedObject, const QString& name, bool value)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 ( ((PythonQtPublicPromoter_QXmlSimpleReader*)theWrappedObject)->promoted_setFeature(name, value));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlSimpleReader::setLexicalHandler(QXmlSimpleReader* theWrappedObject, QXmlLexicalHandler* handler)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( ((PythonQtPublicPromoter_QXmlSimpleReader*)theWrappedObject)->promoted_setLexicalHandler(handler));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlSimpleReader::setProperty(QXmlSimpleReader* theWrappedObject, const QString& name, void* value)
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 {
florianlink
updated to improved generator...
r128 ( ((PythonQtPublicPromoter_QXmlSimpleReader*)theWrappedObject)->promoted_setProperty(name, value));
florianlink
added newly generated wrappers for Qt 4.4.3...
r99 }