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

File last commit:

r73:40dc86970256
r96:3170eb771a99
Show More
PythonQtWrapper_QXmlSerializer.h
78 lines | 3.7 KiB | text/x-c | CLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QXMLSERIALIZER_H
#define PYTHONQTWRAPPER_QXMLSERIALIZER_H
#include <qxmlserializer.h>
#include <QObject>
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 #include <PythonQt.h>
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #include <QVariant>
#include <qabstractxmlnodemodel.h>
#include <qabstractxmlreceiver.h>
#include <qiodevice.h>
#include <qtextcodec.h>
#include <qxmlname.h>
#include <qxmlquery.h>
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 class PythonQtShell_QXmlSerializer : public QXmlSerializer
{
public:
PythonQtShell_QXmlSerializer(const QXmlQuery& query, QIODevice* outputDevice):QXmlSerializer(query, outputDevice),_wrapper(NULL) {};
virtual void atomicValue(const QVariant& value);
virtual void attribute(const QXmlName& name, const QStringRef& value);
virtual void characters(const QStringRef& value);
virtual void comment(const QString& value);
virtual void endDocument();
virtual void endElement();
virtual void endOfSequence();
virtual void namespaceBinding(const QXmlName& nb);
virtual void processingInstruction(const QXmlName& name, const QString& value);
virtual void startDocument();
virtual void startElement(const QXmlName& name);
virtual void startOfSequence();
virtual void whitespaceOnly(const QStringRef& value);
PythonQtInstanceWrapper* _wrapper;
};
florianlink
upgraded wrappers to current generator version...
r28 class PythonQtPublicPromoter_QXmlSerializer : public QXmlSerializer
{ public:
florianlink
recreated wrappers to match current python qt version...
r73 inline void promoted_startOfSequence() { QXmlSerializer::startOfSequence(); }
inline void promoted_processingInstruction(const QXmlName& name, const QString& value) { QXmlSerializer::processingInstruction(name, value); }
inline void promoted_endDocument() { QXmlSerializer::endDocument(); }
florianlink
upgraded wrappers to current generator version...
r28 inline void promoted_startDocument() { QXmlSerializer::startDocument(); }
inline void promoted_startElement(const QXmlName& name) { QXmlSerializer::startElement(name); }
inline void promoted_endElement() { QXmlSerializer::endElement(); }
inline void promoted_endOfSequence() { QXmlSerializer::endOfSequence(); }
florianlink
recreated wrappers to match current python qt version...
r73 inline void promoted_atomicValue(const QVariant& value) { QXmlSerializer::atomicValue(value); }
inline void promoted_attribute(const QXmlName& name, const QStringRef& value) { QXmlSerializer::attribute(name, value); }
inline void promoted_characters(const QStringRef& value) { QXmlSerializer::characters(value); }
inline void promoted_comment(const QString& value) { QXmlSerializer::comment(value); }
inline void promoted_namespaceBinding(const QXmlName& nb) { QXmlSerializer::namespaceBinding(nb); }
florianlink
upgraded wrappers to current generator version...
r28 };
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 class PythonQtWrapper_QXmlSerializer : public QObject
{ Q_OBJECT
public:
public slots:
QXmlSerializer* new_QXmlSerializer(const QXmlQuery& query, QIODevice* outputDevice);
void delete_QXmlSerializer(QXmlSerializer* obj) { delete obj; }
florianlink
recreated wrappers to match current python qt version...
r73 void startOfSequence(QXmlSerializer* theWrappedObject);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 const QTextCodec* codec(QXmlSerializer* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 void processingInstruction(QXmlSerializer* theWrappedObject, const QXmlName& name, const QString& value);
void endDocument(QXmlSerializer* theWrappedObject);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void startDocument(QXmlSerializer* theWrappedObject);
void startElement(QXmlSerializer* theWrappedObject, const QXmlName& name);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 void endElement(QXmlSerializer* theWrappedObject);
void endOfSequence(QXmlSerializer* theWrappedObject);
florianlink
recreated wrappers to match current python qt version...
r73 void atomicValue(QXmlSerializer* theWrappedObject, const QVariant& value);
void attribute(QXmlSerializer* theWrappedObject, const QXmlName& name, const QStringRef& value);
void characters(QXmlSerializer* theWrappedObject, const QStringRef& value);
void comment(QXmlSerializer* theWrappedObject, const QString& value);
void namespaceBinding(QXmlSerializer* theWrappedObject, const QXmlName& nb);
QIODevice* outputDevice(QXmlSerializer* theWrappedObject) const;
void setCodec(QXmlSerializer* theWrappedObject, const QTextCodec* codec);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 };
#endif // PYTHONQTWRAPPER_QXMLSERIALIZER_H