##// END OF EJS Templates
fixed bad reference counting and borrowed references...
fixed bad reference counting and borrowed references git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@55 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r19:4f416979f8bf
Show More
PythonQtWrapper_QXmlStreamWriter.h
55 lines | 3.4 KiB | text/x-c | CLexer
#ifndef PYTHONQTWRAPPER_QXMLSTREAMWRITER_H
#define PYTHONQTWRAPPER_QXMLSTREAMWRITER_H
#include <qxmlstream.h>
#include <QObject>
#include <QVariant>
#include <qbytearray.h>
#include <qiodevice.h>
#include <qtextcodec.h>
#include <qxmlstream.h>
class PythonQtWrapper_QXmlStreamWriter : public QObject
{ Q_OBJECT
public:
public slots:
QXmlStreamWriter* new_QXmlStreamWriter();
QXmlStreamWriter* new_QXmlStreamWriter(QByteArray* array);
QXmlStreamWriter* new_QXmlStreamWriter(QIODevice* device);
void delete_QXmlStreamWriter(QXmlStreamWriter* obj) { delete obj; }
bool autoFormatting(QXmlStreamWriter* theWrappedObject) const;
int autoFormattingIndent(QXmlStreamWriter* theWrappedObject) const;
QTextCodec* codec(QXmlStreamWriter* theWrappedObject) const;
QIODevice* device(QXmlStreamWriter* theWrappedObject) const;
void setAutoFormatting(QXmlStreamWriter* theWrappedObject, bool arg__1);
void setAutoFormattingIndent(QXmlStreamWriter* theWrappedObject, int spaces);
void setCodec(QXmlStreamWriter* theWrappedObject, QTextCodec* codec);
void setCodec(QXmlStreamWriter* theWrappedObject, const char* codecName);
void setDevice(QXmlStreamWriter* theWrappedObject, QIODevice* device);
void writeAttribute(QXmlStreamWriter* theWrappedObject, const QString& namespaceUri, const QString& name, const QString& value);
void writeAttribute(QXmlStreamWriter* theWrappedObject, const QString& qualifiedName, const QString& value);
void writeAttribute(QXmlStreamWriter* theWrappedObject, const QXmlStreamAttribute& attribute);
void writeAttributes(QXmlStreamWriter* theWrappedObject, const QXmlStreamAttributes& attributes);
void writeCDATA(QXmlStreamWriter* theWrappedObject, const QString& text);
void writeCharacters(QXmlStreamWriter* theWrappedObject, const QString& text);
void writeComment(QXmlStreamWriter* theWrappedObject, const QString& text);
void writeCurrentToken(QXmlStreamWriter* theWrappedObject, const QXmlStreamReader& reader);
void writeDTD(QXmlStreamWriter* theWrappedObject, const QString& dtd);
void writeDefaultNamespace(QXmlStreamWriter* theWrappedObject, const QString& namespaceUri);
void writeEmptyElement(QXmlStreamWriter* theWrappedObject, const QString& namespaceUri, const QString& name);
void writeEmptyElement(QXmlStreamWriter* theWrappedObject, const QString& qualifiedName);
void writeEndDocument(QXmlStreamWriter* theWrappedObject);
void writeEndElement(QXmlStreamWriter* theWrappedObject);
void writeEntityReference(QXmlStreamWriter* theWrappedObject, const QString& name);
void writeNamespace(QXmlStreamWriter* theWrappedObject, const QString& namespaceUri, const QString& prefix = QString());
void writeProcessingInstruction(QXmlStreamWriter* theWrappedObject, const QString& target, const QString& data = QString());
void writeStartDocument(QXmlStreamWriter* theWrappedObject);
void writeStartDocument(QXmlStreamWriter* theWrappedObject, const QString& version);
void writeStartElement(QXmlStreamWriter* theWrappedObject, const QString& namespaceUri, const QString& name);
void writeStartElement(QXmlStreamWriter* theWrappedObject, const QString& qualifiedName);
void writeTextElement(QXmlStreamWriter* theWrappedObject, const QString& namespaceUri, const QString& name, const QString& text);
void writeTextElement(QXmlStreamWriter* theWrappedObject, const QString& qualifiedName, const QString& text);
};
#endif // PYTHONQTWRAPPER_QXMLSTREAMWRITER_H