##// END OF EJS Templates
- wrapped instances are now wrapped by class specific subtypes to facilitate future deriving from python...
- wrapped instances are now wrapped by class specific subtypes to facilitate future deriving from python - object creation has changed by using the python type system (calling the type object with PyObject_Call) git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@54 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r18:44e5ff2700cb
Show More
PythonQtWrapper_QDomDocument.h
51 lines | 3.4 KiB | text/x-c | CLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QDOMDOCUMENT_H
#define PYTHONQTWRAPPER_QDOMDOCUMENT_H
#include <qdom.h>
#include <QObject>
#include <QVariant>
#include <qbytearray.h>
#include <qdom.h>
#include <qiodevice.h>
#include <qtextstream.h>
#include <qxml.h>
class PythonQtWrapper_QDomDocument : public QObject
{ Q_OBJECT
public:
public slots:
QDomDocument* new_QDomDocument();
QDomDocument* new_QDomDocument(const QDomDocument& x);
QDomDocument* new_QDomDocument(const QDomDocumentType& doctype);
QDomDocument* new_QDomDocument(const QString& name);
void delete_QDomDocument(QDomDocument* obj) { delete obj; }
QDomAttr createAttribute(QDomDocument* theWrappedObject, const QString& name);
QDomAttr createAttributeNS(QDomDocument* theWrappedObject, const QString& nsURI, const QString& qName);
QDomCDATASection createCDATASection(QDomDocument* theWrappedObject, const QString& data);
QDomComment createComment(QDomDocument* theWrappedObject, const QString& data);
QDomDocumentFragment createDocumentFragment(QDomDocument* theWrappedObject);
QDomElement createElement(QDomDocument* theWrappedObject, const QString& tagName);
QDomElement createElementNS(QDomDocument* theWrappedObject, const QString& nsURI, const QString& qName);
QDomEntityReference createEntityReference(QDomDocument* theWrappedObject, const QString& name);
QDomProcessingInstruction createProcessingInstruction(QDomDocument* theWrappedObject, const QString& target, const QString& data);
QDomText createTextNode(QDomDocument* theWrappedObject, const QString& data);
QDomDocumentType doctype(QDomDocument* theWrappedObject) const;
QDomElement documentElement(QDomDocument* theWrappedObject) const;
QDomElement elementById(QDomDocument* theWrappedObject, const QString& elementId);
QDomNodeList elementsByTagName(QDomDocument* theWrappedObject, const QString& tagname) const;
QDomNodeList elementsByTagNameNS(QDomDocument* theWrappedObject, const QString& nsURI, const QString& localName);
QDomImplementation implementation(QDomDocument* theWrappedObject) const;
QDomNode importNode(QDomDocument* theWrappedObject, const QDomNode& importedNode, bool deep);
bool setContent(QDomDocument* theWrappedObject, QIODevice* dev, QString* errorMsg = 0, int* errorLine = 0, int* errorColumn = 0);
bool setContent(QDomDocument* theWrappedObject, QIODevice* dev, bool namespaceProcessing, QString* errorMsg = 0, int* errorLine = 0, int* errorColumn = 0);
bool setContent(QDomDocument* theWrappedObject, QXmlInputSource* source, QXmlReader* reader, QString* errorMsg = 0, int* errorLine = 0, int* errorColumn = 0);
bool setContent(QDomDocument* theWrappedObject, const QByteArray& text, QString* errorMsg = 0, int* errorLine = 0, int* errorColumn = 0);
bool setContent(QDomDocument* theWrappedObject, const QByteArray& text, bool namespaceProcessing, QString* errorMsg = 0, int* errorLine = 0, int* errorColumn = 0);
bool setContent(QDomDocument* theWrappedObject, const QString& text, QString* errorMsg = 0, int* errorLine = 0, int* errorColumn = 0);
bool setContent(QDomDocument* theWrappedObject, const QString& text, bool namespaceProcessing, QString* errorMsg = 0, int* errorLine = 0, int* errorColumn = 0);
QByteArray toByteArray(QDomDocument* theWrappedObject, int arg__1 = 1) const;
QString toString(QDomDocument* theWrappedObject, int arg__1 = 1) const;
};
#endif // PYTHONQTWRAPPER_QDOMDOCUMENT_H