##// END OF EJS Templates
merged contributions from https://github.com/commontk/PythonQt/compare/svn-mirror...patched removed VTK support git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@205 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r128:2bd3690c0f37
r166:ebe967ac6804
Show More
com_trolltech_qt_xml1.cpp
836 lines | 27.6 KiB | text/x-c | CppLexer
florianlink
updated to Qt 4.6 API...
r110 #include "com_trolltech_qt_xml1.h"
#include <PythonQtConversion.h>
#include <PythonQtMethodInfo.h>
#include <PythonQtSignalReceiver.h>
#include <QVariant>
#include <qbytearray.h>
#include <qiodevice.h>
#include <qlist.h>
#include <qtextcodec.h>
#include <qvector.h>
#include <qxmlstream.h>
QXmlStreamAttribute* PythonQtWrapper_QXmlStreamAttribute::new_QXmlStreamAttribute()
{
return new QXmlStreamAttribute(); }
QXmlStreamAttribute* PythonQtWrapper_QXmlStreamAttribute::new_QXmlStreamAttribute(const QString& namespaceUri, const QString& name, const QString& value)
{
return new QXmlStreamAttribute(namespaceUri, name, value); }
QXmlStreamAttribute* PythonQtWrapper_QXmlStreamAttribute::new_QXmlStreamAttribute(const QString& qualifiedName, const QString& value)
{
return new QXmlStreamAttribute(qualifiedName, value); }
QXmlStreamAttribute* PythonQtWrapper_QXmlStreamAttribute::new_QXmlStreamAttribute(const QXmlStreamAttribute& arg__1)
{
return new QXmlStreamAttribute(arg__1); }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlStreamAttribute::isDefault(QXmlStreamAttribute* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->isDefault());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 QStringRef PythonQtWrapper_QXmlStreamAttribute::name(QXmlStreamAttribute* 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 }
QStringRef PythonQtWrapper_QXmlStreamAttribute::namespaceUri(QXmlStreamAttribute* theWrappedObject) const
{
return ( theWrappedObject->namespaceUri());
}
florianlink
updated to new operators...
r120 bool PythonQtWrapper_QXmlStreamAttribute::__ne__(QXmlStreamAttribute* theWrappedObject, const QXmlStreamAttribute& other) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to new operators...
r120 return ( (*theWrappedObject)!= other);
}
bool PythonQtWrapper_QXmlStreamAttribute::__eq__(QXmlStreamAttribute* theWrappedObject, const QXmlStreamAttribute& other) const
florianlink
updated to Qt 4.6 API...
r110 {
return ( (*theWrappedObject)== other);
}
florianlink
updated to improved generator...
r128 QStringRef PythonQtWrapper_QXmlStreamAttribute::prefix(QXmlStreamAttribute* theWrappedObject) const
florianlink
updated to new operators...
r120 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->prefix());
florianlink
updated to new operators...
r120 }
florianlink
updated to improved generator...
r128 QStringRef PythonQtWrapper_QXmlStreamAttribute::qualifiedName(QXmlStreamAttribute* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->qualifiedName());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 QStringRef PythonQtWrapper_QXmlStreamAttribute::value(QXmlStreamAttribute* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->value());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to new operators...
r120
florianlink
updated to Qt 4.6 API...
r110
florianlink
updated to improved generator...
r128 QXmlStreamAttributes* PythonQtWrapper_QXmlStreamAttributes::new_QXmlStreamAttributes()
{
return new PythonQtShell_QXmlStreamAttributes(); }
florianlink
updated to Qt 4.6 API...
r110
void PythonQtWrapper_QXmlStreamAttributes::append(QXmlStreamAttributes* theWrappedObject, const QString& namespaceUri, const QString& name, const QString& value)
{
( theWrappedObject->append(namespaceUri, name, value));
}
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamAttributes::append(QXmlStreamAttributes* theWrappedObject, const QString& qualifiedName, const QString& value)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->append(qualifiedName, value));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamAttributes::append(QXmlStreamAttributes* theWrappedObject, const QXmlStreamAttribute& attribute)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->append(attribute));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 const QXmlStreamAttribute* PythonQtWrapper_QXmlStreamAttributes::at(QXmlStreamAttributes* theWrappedObject, int i) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return &( theWrappedObject->at(i));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 int PythonQtWrapper_QXmlStreamAttributes::capacity(QXmlStreamAttributes* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->capacity());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to new operators...
r120 void PythonQtWrapper_QXmlStreamAttributes::clear(QXmlStreamAttributes* theWrappedObject)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to new operators...
r120 ( theWrappedObject->clear());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlStreamAttributes::contains(QXmlStreamAttributes* theWrappedObject, const QXmlStreamAttribute& t) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->contains(t));
florianlink
updated to new operators...
r120 }
florianlink
updated to improved generator...
r128 int PythonQtWrapper_QXmlStreamAttributes::count(QXmlStreamAttributes* theWrappedObject) const
florianlink
updated to new operators...
r120 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->count());
florianlink
updated to Qt 4.6 API...
r110 }
int PythonQtWrapper_QXmlStreamAttributes::count(QXmlStreamAttributes* theWrappedObject, const QXmlStreamAttribute& t) const
{
return ( theWrappedObject->count(t));
}
bool PythonQtWrapper_QXmlStreamAttributes::empty(QXmlStreamAttributes* theWrappedObject) const
{
return ( theWrappedObject->empty());
}
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlStreamAttributes::endsWith(QXmlStreamAttributes* theWrappedObject, const QXmlStreamAttribute& t) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->endsWith(t));
florianlink
updated to new operators...
r120 }
florianlink
updated to improved generator...
r128 QVector<QXmlStreamAttribute >* PythonQtWrapper_QXmlStreamAttributes::fill(QXmlStreamAttributes* theWrappedObject, const QXmlStreamAttribute& t, int size)
florianlink
updated to new operators...
r120 {
florianlink
updated to improved generator...
r128 return &( theWrappedObject->fill(t, size));
florianlink
updated to Qt 4.6 API...
r110 }
const QXmlStreamAttribute* PythonQtWrapper_QXmlStreamAttributes::first(QXmlStreamAttributes* theWrappedObject) const
{
return &( theWrappedObject->first());
}
QVector<QXmlStreamAttribute > PythonQtWrapper_QXmlStreamAttributes::static_QXmlStreamAttributes_fromList(const QList<QXmlStreamAttribute >& list)
{
return (QXmlStreamAttributes::fromList(list));
}
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlStreamAttributes::hasAttribute(QXmlStreamAttributes* theWrappedObject, const QString& namespaceUri, const QString& name) const
{
return ( theWrappedObject->hasAttribute(namespaceUri, name));
}
bool PythonQtWrapper_QXmlStreamAttributes::hasAttribute(QXmlStreamAttributes* theWrappedObject, const QString& qualifiedName) const
{
return ( theWrappedObject->hasAttribute(qualifiedName));
}
florianlink
updated to Qt 4.6 API...
r110 int PythonQtWrapper_QXmlStreamAttributes::indexOf(QXmlStreamAttributes* theWrappedObject, const QXmlStreamAttribute& t, int from) const
{
return ( theWrappedObject->indexOf(t, from));
}
bool PythonQtWrapper_QXmlStreamAttributes::isEmpty(QXmlStreamAttributes* theWrappedObject) const
{
return ( theWrappedObject->isEmpty());
}
florianlink
updated to improved generator...
r128 const QXmlStreamAttribute* PythonQtWrapper_QXmlStreamAttributes::last(QXmlStreamAttributes* theWrappedObject) const
{
return &( theWrappedObject->last());
}
int PythonQtWrapper_QXmlStreamAttributes::lastIndexOf(QXmlStreamAttributes* theWrappedObject, const QXmlStreamAttribute& t, int from) const
{
return ( theWrappedObject->lastIndexOf(t, from));
}
florianlink
updated to new operators...
r120 QVector<QXmlStreamAttribute > PythonQtWrapper_QXmlStreamAttributes::mid(QXmlStreamAttributes* theWrappedObject, int pos, int length) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to new operators...
r120 return ( theWrappedObject->mid(pos, length));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlStreamAttributes::__ne__(QXmlStreamAttributes* theWrappedObject, const QVector<QXmlStreamAttribute >& v) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( (*theWrappedObject)!= v);
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to new operators...
r120 bool PythonQtWrapper_QXmlStreamAttributes::__eq__(QXmlStreamAttributes* theWrappedObject, const QVector<QXmlStreamAttribute >& v) const
florianlink
updated to Qt 4.6 API...
r110 {
return ( (*theWrappedObject)== v);
}
void PythonQtWrapper_QXmlStreamAttributes::prepend(QXmlStreamAttributes* theWrappedObject, const QXmlStreamAttribute& t)
{
( theWrappedObject->prepend(t));
}
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamAttributes::remove(QXmlStreamAttributes* theWrappedObject, int i)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->remove(i));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamAttributes::remove(QXmlStreamAttributes* theWrappedObject, int i, int n)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->remove(i, n));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamAttributes::replace(QXmlStreamAttributes* theWrappedObject, int i, const QXmlStreamAttribute& t)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->replace(i, t));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to new operators...
r120 void PythonQtWrapper_QXmlStreamAttributes::reserve(QXmlStreamAttributes* theWrappedObject, int size)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to new operators...
r120 ( theWrappedObject->reserve(size));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamAttributes::resize(QXmlStreamAttributes* theWrappedObject, int size)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->resize(size));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamAttributes::setSharable(QXmlStreamAttributes* theWrappedObject, bool sharable)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->setSharable(sharable));
}
int PythonQtWrapper_QXmlStreamAttributes::size(QXmlStreamAttributes* theWrappedObject) const
{
return ( theWrappedObject->size());
florianlink
updated to Qt 4.6 API...
r110 }
void PythonQtWrapper_QXmlStreamAttributes::squeeze(QXmlStreamAttributes* theWrappedObject)
{
( theWrappedObject->squeeze());
}
bool PythonQtWrapper_QXmlStreamAttributes::startsWith(QXmlStreamAttributes* theWrappedObject, const QXmlStreamAttribute& t) const
{
return ( theWrappedObject->startsWith(t));
}
QList<QXmlStreamAttribute > PythonQtWrapper_QXmlStreamAttributes::toList(QXmlStreamAttributes* theWrappedObject) const
{
return ( theWrappedObject->toList());
}
florianlink
updated to improved generator...
r128 QStringRef PythonQtWrapper_QXmlStreamAttributes::value(QXmlStreamAttributes* theWrappedObject, const QString& namespaceUri, const QString& name) const
{
return ( theWrappedObject->value(namespaceUri, name));
}
QStringRef PythonQtWrapper_QXmlStreamAttributes::value(QXmlStreamAttributes* theWrappedObject, const QString& qualifiedName) const
{
return ( theWrappedObject->value(qualifiedName));
}
florianlink
updated to Qt 4.6 API...
r110
QXmlStreamEntityDeclaration* PythonQtWrapper_QXmlStreamEntityDeclaration::new_QXmlStreamEntityDeclaration()
{
return new QXmlStreamEntityDeclaration(); }
QXmlStreamEntityDeclaration* PythonQtWrapper_QXmlStreamEntityDeclaration::new_QXmlStreamEntityDeclaration(const QXmlStreamEntityDeclaration& arg__1)
{
return new QXmlStreamEntityDeclaration(arg__1); }
florianlink
updated to improved generator...
r128 QStringRef PythonQtWrapper_QXmlStreamEntityDeclaration::name(QXmlStreamEntityDeclaration* theWrappedObject) const
florianlink
updated to new operators...
r120 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->name());
florianlink
updated to new operators...
r120 }
florianlink
updated to Qt 4.6 API...
r110 QStringRef PythonQtWrapper_QXmlStreamEntityDeclaration::notationName(QXmlStreamEntityDeclaration* theWrappedObject) const
{
return ( theWrappedObject->notationName());
}
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlStreamEntityDeclaration::__ne__(QXmlStreamEntityDeclaration* theWrappedObject, const QXmlStreamEntityDeclaration& other) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( (*theWrappedObject)!= other);
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to new operators...
r120 bool PythonQtWrapper_QXmlStreamEntityDeclaration::__eq__(QXmlStreamEntityDeclaration* theWrappedObject, const QXmlStreamEntityDeclaration& other) const
florianlink
updated to Qt 4.6 API...
r110 {
return ( (*theWrappedObject)== other);
}
florianlink
updated to improved generator...
r128 QStringRef PythonQtWrapper_QXmlStreamEntityDeclaration::publicId(QXmlStreamEntityDeclaration* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->publicId());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to new operators...
r120 QStringRef PythonQtWrapper_QXmlStreamEntityDeclaration::systemId(QXmlStreamEntityDeclaration* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to new operators...
r120 return ( theWrappedObject->systemId());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 QStringRef PythonQtWrapper_QXmlStreamEntityDeclaration::value(QXmlStreamEntityDeclaration* theWrappedObject) const
{
return ( theWrappedObject->value());
}
florianlink
updated to Qt 4.6 API...
r110
QXmlStreamNamespaceDeclaration* PythonQtWrapper_QXmlStreamNamespaceDeclaration::new_QXmlStreamNamespaceDeclaration()
{
return new QXmlStreamNamespaceDeclaration(); }
QXmlStreamNamespaceDeclaration* PythonQtWrapper_QXmlStreamNamespaceDeclaration::new_QXmlStreamNamespaceDeclaration(const QString& prefix, const QString& namespaceUri)
{
return new QXmlStreamNamespaceDeclaration(prefix, namespaceUri); }
QXmlStreamNamespaceDeclaration* PythonQtWrapper_QXmlStreamNamespaceDeclaration::new_QXmlStreamNamespaceDeclaration(const QXmlStreamNamespaceDeclaration& arg__1)
{
return new QXmlStreamNamespaceDeclaration(arg__1); }
florianlink
updated to improved generator...
r128 QStringRef PythonQtWrapper_QXmlStreamNamespaceDeclaration::namespaceUri(QXmlStreamNamespaceDeclaration* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->namespaceUri());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to new operators...
r120 bool PythonQtWrapper_QXmlStreamNamespaceDeclaration::__ne__(QXmlStreamNamespaceDeclaration* theWrappedObject, const QXmlStreamNamespaceDeclaration& other) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to new operators...
r120 return ( (*theWrappedObject)!= other);
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlStreamNamespaceDeclaration::__eq__(QXmlStreamNamespaceDeclaration* theWrappedObject, const QXmlStreamNamespaceDeclaration& other) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( (*theWrappedObject)== other);
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 QStringRef PythonQtWrapper_QXmlStreamNamespaceDeclaration::prefix(QXmlStreamNamespaceDeclaration* theWrappedObject) const
florianlink
updated to new operators...
r120 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->prefix());
florianlink
updated to new operators...
r120 }
florianlink
updated to Qt 4.6 API...
r110
QXmlStreamNotationDeclaration* PythonQtWrapper_QXmlStreamNotationDeclaration::new_QXmlStreamNotationDeclaration()
{
return new QXmlStreamNotationDeclaration(); }
QXmlStreamNotationDeclaration* PythonQtWrapper_QXmlStreamNotationDeclaration::new_QXmlStreamNotationDeclaration(const QXmlStreamNotationDeclaration& arg__1)
{
return new QXmlStreamNotationDeclaration(arg__1); }
florianlink
updated to improved generator...
r128 QStringRef PythonQtWrapper_QXmlStreamNotationDeclaration::name(QXmlStreamNotationDeclaration* theWrappedObject) const
{
return ( theWrappedObject->name());
}
florianlink
updated to new operators...
r120 bool PythonQtWrapper_QXmlStreamNotationDeclaration::__ne__(QXmlStreamNotationDeclaration* theWrappedObject, const QXmlStreamNotationDeclaration& other) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to new operators...
r120 return ( (*theWrappedObject)!= other);
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to new operators...
r120 bool PythonQtWrapper_QXmlStreamNotationDeclaration::__eq__(QXmlStreamNotationDeclaration* theWrappedObject, const QXmlStreamNotationDeclaration& other) const
florianlink
updated to Qt 4.6 API...
r110 {
return ( (*theWrappedObject)== other);
}
florianlink
updated to improved generator...
r128 QStringRef PythonQtWrapper_QXmlStreamNotationDeclaration::publicId(QXmlStreamNotationDeclaration* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->publicId());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 QStringRef PythonQtWrapper_QXmlStreamNotationDeclaration::systemId(QXmlStreamNotationDeclaration* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->systemId());
florianlink
updated to Qt 4.6 API...
r110 }
QXmlStreamReader* PythonQtWrapper_QXmlStreamReader::new_QXmlStreamReader()
{
return new QXmlStreamReader(); }
QXmlStreamReader* PythonQtWrapper_QXmlStreamReader::new_QXmlStreamReader(QIODevice* device)
{
return new QXmlStreamReader(device); }
QXmlStreamReader* PythonQtWrapper_QXmlStreamReader::new_QXmlStreamReader(const QByteArray& data)
{
return new QXmlStreamReader(data); }
QXmlStreamReader* PythonQtWrapper_QXmlStreamReader::new_QXmlStreamReader(const QString& data)
{
return new QXmlStreamReader(data); }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamReader::addData(QXmlStreamReader* theWrappedObject, const QByteArray& data)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->addData(data));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamReader::addData(QXmlStreamReader* theWrappedObject, const QString& data)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->addData(data));
florianlink
updated to new operators...
r120 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamReader::addExtraNamespaceDeclaration(QXmlStreamReader* theWrappedObject, const QXmlStreamNamespaceDeclaration& extraNamespaceDeclaraction)
florianlink
updated to new operators...
r120 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->addExtraNamespaceDeclaration(extraNamespaceDeclaraction));
florianlink
updated to new operators...
r120 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamReader::addExtraNamespaceDeclarations(QXmlStreamReader* theWrappedObject, const QVector<QXmlStreamNamespaceDeclaration >& extraNamespaceDeclaractions)
florianlink
updated to new operators...
r120 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->addExtraNamespaceDeclarations(extraNamespaceDeclaractions));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlStreamReader::atEnd(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->atEnd());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 QXmlStreamAttributes PythonQtWrapper_QXmlStreamReader::attributes(QXmlStreamReader* theWrappedObject) const
florianlink
updated to new operators...
r120 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->attributes());
florianlink
updated to new operators...
r120 }
florianlink
updated to improved generator...
r128 qint64 PythonQtWrapper_QXmlStreamReader::characterOffset(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->characterOffset());
florianlink
updated to Qt 4.6 API...
r110 }
void PythonQtWrapper_QXmlStreamReader::clear(QXmlStreamReader* theWrappedObject)
{
( theWrappedObject->clear());
}
florianlink
updated to improved generator...
r128 qint64 PythonQtWrapper_QXmlStreamReader::columnNumber(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->columnNumber());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to new operators...
r120 QIODevice* PythonQtWrapper_QXmlStreamReader::device(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to new operators...
r120 return ( theWrappedObject->device());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 QStringRef PythonQtWrapper_QXmlStreamReader::documentEncoding(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->documentEncoding());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 QStringRef PythonQtWrapper_QXmlStreamReader::documentVersion(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->documentVersion());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 QStringRef PythonQtWrapper_QXmlStreamReader::dtdName(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->dtdName());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 QStringRef PythonQtWrapper_QXmlStreamReader::dtdPublicId(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->dtdPublicId());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 QStringRef PythonQtWrapper_QXmlStreamReader::dtdSystemId(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->dtdSystemId());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 QVector<QXmlStreamEntityDeclaration > PythonQtWrapper_QXmlStreamReader::entityDeclarations(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->entityDeclarations());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 QXmlStreamEntityResolver* PythonQtWrapper_QXmlStreamReader::entityResolver(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->entityResolver());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 QXmlStreamReader::Error PythonQtWrapper_QXmlStreamReader::error(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->error());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 QString PythonQtWrapper_QXmlStreamReader::errorString(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->errorString());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlStreamReader::hasError(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->hasError());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlStreamReader::isCDATA(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->isCDATA());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlStreamReader::isCharacters(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->isCharacters());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlStreamReader::isComment(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->isComment());
florianlink
updated to new operators...
r120 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlStreamReader::isDTD(QXmlStreamReader* theWrappedObject) const
florianlink
updated to new operators...
r120 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->isDTD());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlStreamReader::isEndDocument(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->isEndDocument());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlStreamReader::isEndElement(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->isEndElement());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlStreamReader::isEntityReference(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->isEntityReference());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlStreamReader::isProcessingInstruction(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->isProcessingInstruction());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlStreamReader::isStandaloneDocument(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->isStandaloneDocument());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlStreamReader::isStartDocument(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->isStartDocument());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlStreamReader::isStartElement(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->isStartElement());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlStreamReader::isWhitespace(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->isWhitespace());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 qint64 PythonQtWrapper_QXmlStreamReader::lineNumber(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->lineNumber());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 QStringRef PythonQtWrapper_QXmlStreamReader::name(QXmlStreamReader* 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 new operators...
r120 QVector<QXmlStreamNamespaceDeclaration > PythonQtWrapper_QXmlStreamReader::namespaceDeclarations(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to new operators...
r120 return ( theWrappedObject->namespaceDeclarations());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlStreamReader::namespaceProcessing(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->namespaceProcessing());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 QStringRef PythonQtWrapper_QXmlStreamReader::namespaceUri(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->namespaceUri());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 QVector<QXmlStreamNotationDeclaration > PythonQtWrapper_QXmlStreamReader::notationDeclarations(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->notationDeclarations());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 QStringRef PythonQtWrapper_QXmlStreamReader::prefix(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->prefix());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 QStringRef PythonQtWrapper_QXmlStreamReader::processingInstructionData(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->processingInstructionData());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 QStringRef PythonQtWrapper_QXmlStreamReader::processingInstructionTarget(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->processingInstructionTarget());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 QStringRef PythonQtWrapper_QXmlStreamReader::qualifiedName(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->qualifiedName());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamReader::raiseError(QXmlStreamReader* theWrappedObject, const QString& message)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->raiseError(message));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 QString PythonQtWrapper_QXmlStreamReader::readElementText(QXmlStreamReader* theWrappedObject)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->readElementText());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 QString PythonQtWrapper_QXmlStreamReader::readElementText(QXmlStreamReader* theWrappedObject, QXmlStreamReader::ReadElementTextBehaviour behaviour)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->readElementText(behaviour));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 QXmlStreamReader::TokenType PythonQtWrapper_QXmlStreamReader::readNext(QXmlStreamReader* theWrappedObject)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->readNext());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlStreamReader::readNextStartElement(QXmlStreamReader* theWrappedObject)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->readNextStartElement());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamReader::setDevice(QXmlStreamReader* theWrappedObject, QIODevice* device)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->setDevice(device));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamReader::setEntityResolver(QXmlStreamReader* theWrappedObject, QXmlStreamEntityResolver* resolver)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->setEntityResolver(resolver));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamReader::setNamespaceProcessing(QXmlStreamReader* theWrappedObject, bool arg__1)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->setNamespaceProcessing(arg__1));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamReader::skipCurrentElement(QXmlStreamReader* theWrappedObject)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->skipCurrentElement());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 QStringRef PythonQtWrapper_QXmlStreamReader::text(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->text());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 QString PythonQtWrapper_QXmlStreamReader::tokenString(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->tokenString());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 QXmlStreamReader::TokenType PythonQtWrapper_QXmlStreamReader::tokenType(QXmlStreamReader* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->tokenType());
florianlink
updated to Qt 4.6 API...
r110 }
QXmlStreamWriter* PythonQtWrapper_QXmlStreamWriter::new_QXmlStreamWriter()
{
return new QXmlStreamWriter(); }
QXmlStreamWriter* PythonQtWrapper_QXmlStreamWriter::new_QXmlStreamWriter(QByteArray* array)
{
return new QXmlStreamWriter(array); }
QXmlStreamWriter* PythonQtWrapper_QXmlStreamWriter::new_QXmlStreamWriter(QIODevice* device)
{
return new QXmlStreamWriter(device); }
florianlink
updated to improved generator...
r128 bool PythonQtWrapper_QXmlStreamWriter::autoFormatting(QXmlStreamWriter* theWrappedObject) const
florianlink
updated to new operators...
r120 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->autoFormatting());
florianlink
updated to new operators...
r120 }
florianlink
updated to Qt 4.6 API...
r110 int PythonQtWrapper_QXmlStreamWriter::autoFormattingIndent(QXmlStreamWriter* theWrappedObject) const
{
return ( theWrappedObject->autoFormattingIndent());
}
florianlink
updated to improved generator...
r128 QTextCodec* PythonQtWrapper_QXmlStreamWriter::codec(QXmlStreamWriter* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->codec());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 QIODevice* PythonQtWrapper_QXmlStreamWriter::device(QXmlStreamWriter* theWrappedObject) const
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 return ( theWrappedObject->device());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamWriter::setAutoFormatting(QXmlStreamWriter* theWrappedObject, bool arg__1)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->setAutoFormatting(arg__1));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamWriter::setAutoFormattingIndent(QXmlStreamWriter* theWrappedObject, int spacesOrTabs)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->setAutoFormattingIndent(spacesOrTabs));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamWriter::setCodec(QXmlStreamWriter* theWrappedObject, QTextCodec* codec)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->setCodec(codec));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamWriter::setCodec(QXmlStreamWriter* theWrappedObject, const char* codecName)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->setCodec(codecName));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamWriter::setDevice(QXmlStreamWriter* theWrappedObject, QIODevice* device)
florianlink
updated to new operators...
r120 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->setDevice(device));
florianlink
updated to new operators...
r120 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamWriter::writeAttribute(QXmlStreamWriter* theWrappedObject, const QString& namespaceUri, const QString& name, const QString& value)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->writeAttribute(namespaceUri, name, value));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamWriter::writeAttribute(QXmlStreamWriter* theWrappedObject, const QString& qualifiedName, const QString& value)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->writeAttribute(qualifiedName, value));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to new operators...
r120 void PythonQtWrapper_QXmlStreamWriter::writeAttribute(QXmlStreamWriter* theWrappedObject, const QXmlStreamAttribute& attribute)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to new operators...
r120 ( theWrappedObject->writeAttribute(attribute));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamWriter::writeAttributes(QXmlStreamWriter* theWrappedObject, const QXmlStreamAttributes& attributes)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->writeAttributes(attributes));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamWriter::writeCDATA(QXmlStreamWriter* theWrappedObject, const QString& text)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->writeCDATA(text));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamWriter::writeCharacters(QXmlStreamWriter* theWrappedObject, const QString& text)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->writeCharacters(text));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamWriter::writeComment(QXmlStreamWriter* theWrappedObject, const QString& text)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->writeComment(text));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamWriter::writeCurrentToken(QXmlStreamWriter* theWrappedObject, const QXmlStreamReader& reader)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->writeCurrentToken(reader));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamWriter::writeDTD(QXmlStreamWriter* theWrappedObject, const QString& dtd)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->writeDTD(dtd));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamWriter::writeDefaultNamespace(QXmlStreamWriter* theWrappedObject, const QString& namespaceUri)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->writeDefaultNamespace(namespaceUri));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamWriter::writeEmptyElement(QXmlStreamWriter* theWrappedObject, const QString& namespaceUri, const QString& name)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->writeEmptyElement(namespaceUri, name));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamWriter::writeEmptyElement(QXmlStreamWriter* theWrappedObject, const QString& qualifiedName)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->writeEmptyElement(qualifiedName));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamWriter::writeEndDocument(QXmlStreamWriter* theWrappedObject)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->writeEndDocument());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamWriter::writeEndElement(QXmlStreamWriter* theWrappedObject)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->writeEndElement());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamWriter::writeEntityReference(QXmlStreamWriter* theWrappedObject, const QString& name)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->writeEntityReference(name));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamWriter::writeNamespace(QXmlStreamWriter* theWrappedObject, const QString& namespaceUri, const QString& prefix)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->writeNamespace(namespaceUri, prefix));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamWriter::writeProcessingInstruction(QXmlStreamWriter* theWrappedObject, const QString& target, const QString& data)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->writeProcessingInstruction(target, data));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamWriter::writeStartDocument(QXmlStreamWriter* theWrappedObject)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->writeStartDocument());
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamWriter::writeStartDocument(QXmlStreamWriter* theWrappedObject, const QString& version)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->writeStartDocument(version));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamWriter::writeStartDocument(QXmlStreamWriter* theWrappedObject, const QString& version, bool standalone)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->writeStartDocument(version, standalone));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamWriter::writeStartElement(QXmlStreamWriter* theWrappedObject, const QString& namespaceUri, const QString& name)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->writeStartElement(namespaceUri, name));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamWriter::writeStartElement(QXmlStreamWriter* theWrappedObject, const QString& qualifiedName)
florianlink
updated to Qt 4.6 API...
r110 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->writeStartElement(qualifiedName));
florianlink
updated to Qt 4.6 API...
r110 }
florianlink
updated to improved generator...
r128 void PythonQtWrapper_QXmlStreamWriter::writeTextElement(QXmlStreamWriter* theWrappedObject, const QString& namespaceUri, const QString& name, const QString& text)
florianlink
updated to new operators...
r120 {
florianlink
updated to improved generator...
r128 ( theWrappedObject->writeTextElement(namespaceUri, name, text));
}
void PythonQtWrapper_QXmlStreamWriter::writeTextElement(QXmlStreamWriter* theWrappedObject, const QString& qualifiedName, const QString& text)
{
( theWrappedObject->writeTextElement(qualifiedName, text));
florianlink
updated to new operators...
r120 }
florianlink
updated to Qt 4.6 API...
r110