##// END OF EJS Templates
code cleanup and rename of PythonQtWrapper to PythonQtInstanceWrapper and PythonQtMetaObjectWrapper to PythonQtClassWrapper, since these names match much better what these classes wrap, regarding that we are wrapping CPP objects as well...
code cleanup and rename of PythonQtWrapper to PythonQtInstanceWrapper and PythonQtMetaObjectWrapper to PythonQtClassWrapper, since these names match much better what these classes wrap, regarding that we are wrapping CPP objects as well git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@52 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r16:c68e0aff542c
Show More
PythonQtWrapper_QXmlFormatter.h
36 lines | 1.5 KiB | text/x-c | CLexer
#ifndef PYTHONQTWRAPPER_QXMLFORMATTER_H
#define PYTHONQTWRAPPER_QXMLFORMATTER_H
#include <qxmlformatter.h>
#include <QObject>
#include <QVariant>
#include <qabstractxmlnodemodel.h>
#include <qabstractxmlreceiver.h>
#include <qiodevice.h>
#include <qtextcodec.h>
#include <qxmlname.h>
#include <qxmlquery.h>
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; }
void atomicValue(QXmlFormatter* theWrappedObject, const QVariant& value);
void attribute(QXmlFormatter* theWrappedObject, const QXmlName& name, const QStringRef& value);
void characters(QXmlFormatter* theWrappedObject, const QStringRef& value);
void comment(QXmlFormatter* theWrappedObject, const QString& value);
void endDocument(QXmlFormatter* theWrappedObject);
void endElement(QXmlFormatter* theWrappedObject);
void endOfSequence(QXmlFormatter* theWrappedObject);
int indentationDepth(QXmlFormatter* theWrappedObject) const;
void processingInstruction(QXmlFormatter* theWrappedObject, const QXmlName& name, const QString& value);
void setIndentationDepth(QXmlFormatter* theWrappedObject, int depth);
void startDocument(QXmlFormatter* theWrappedObject);
void startElement(QXmlFormatter* theWrappedObject, const QXmlName& name);
void startOfSequence(QXmlFormatter* theWrappedObject);
};
#endif // PYTHONQTWRAPPER_QXMLFORMATTER_H