##// END OF EJS Templates
added builtin support for variants etc., this will replace the direct includes in PythonQt...
added builtin support for variants etc., this will replace the direct includes in PythonQt git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@129 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r73:40dc86970256
r93:7b53f64eae84
Show More
PythonQtWrapper_QXmlFormatter.h
75 lines | 3.4 KiB | text/x-c | CLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QXMLFORMATTER_H
#define PYTHONQTWRAPPER_QXMLFORMATTER_H
#include <qxmlformatter.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_QXmlFormatter : public QXmlFormatter
{
public:
PythonQtShell_QXmlFormatter(const QXmlQuery& query, QIODevice* outputDevice):QXmlFormatter(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_QXmlFormatter : public QXmlFormatter
{ public:
inline void promoted_startOfSequence() { QXmlFormatter::startOfSequence(); }
inline void promoted_characters(const QStringRef& value) { QXmlFormatter::characters(value); }
florianlink
recreated wrappers to match current python qt version...
r73 inline void promoted_atomicValue(const QVariant& value) { QXmlFormatter::atomicValue(value); }
inline void promoted_endElement() { QXmlFormatter::endElement(); }
inline void promoted_attribute(const QXmlName& name, const QStringRef& value) { QXmlFormatter::attribute(name, value); }
florianlink
upgraded wrappers to current generator version...
r28 inline void promoted_startDocument() { QXmlFormatter::startDocument(); }
florianlink
recreated wrappers to match current python qt version...
r73 inline void promoted_endDocument() { QXmlFormatter::endDocument(); }
florianlink
upgraded wrappers to current generator version...
r28 inline void promoted_processingInstruction(const QXmlName& name, const QString& value) { QXmlFormatter::processingInstruction(name, value); }
inline void promoted_startElement(const QXmlName& name) { QXmlFormatter::startElement(name); }
inline void promoted_comment(const QString& value) { QXmlFormatter::comment(value); }
florianlink
recreated wrappers to match current python qt version...
r73 inline void promoted_endOfSequence() { QXmlFormatter::endOfSequence(); }
florianlink
upgraded wrappers to current generator version...
r28 };
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 class PythonQtWrapper_QXmlFormatter : public QObject
{ Q_OBJECT
public:
public slots:
QXmlFormatter* new_QXmlFormatter(const QXmlQuery& query, QIODevice* outputDevice);
void delete_QXmlFormatter(QXmlFormatter* obj) { delete obj; }
florianlink
recreated wrappers to match current python qt version...
r73 void setIndentationDepth(QXmlFormatter* theWrappedObject, int depth);
florianlink
upgraded wrappers to current generator version...
r28 int indentationDepth(QXmlFormatter* theWrappedObject) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void startOfSequence(QXmlFormatter* theWrappedObject);
florianlink
upgraded wrappers to current generator version...
r28 void characters(QXmlFormatter* theWrappedObject, const QStringRef& value);
florianlink
recreated wrappers to match current python qt version...
r73 void atomicValue(QXmlFormatter* theWrappedObject, const QVariant& value);
void endElement(QXmlFormatter* theWrappedObject);
void attribute(QXmlFormatter* theWrappedObject, const QXmlName& name, const QStringRef& value);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void startDocument(QXmlFormatter* theWrappedObject);
florianlink
recreated wrappers to match current python qt version...
r73 void endDocument(QXmlFormatter* theWrappedObject);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void processingInstruction(QXmlFormatter* theWrappedObject, const QXmlName& name, const QString& value);
florianlink
upgraded wrappers to current generator version...
r28 void startElement(QXmlFormatter* theWrappedObject, const QXmlName& name);
void comment(QXmlFormatter* theWrappedObject, const QString& value);
florianlink
recreated wrappers to match current python qt version...
r73 void endOfSequence(QXmlFormatter* theWrappedObject);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 };
#endif // PYTHONQTWRAPPER_QXMLFORMATTER_H