##// END OF EJS Templates
started to update/improve docs...
started to update/improve docs git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@68 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r32:ae159b178ea0
Show More
PythonQtWrapper_QDomDocument.h
53 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>
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 <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; }
florianlink
upgraded wrappers to current generator version...
r28 bool setContent(QDomDocument* theWrappedObject, QIODevice* dev, bool namespaceProcessing, 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);
QDomAttr createAttribute(QDomDocument* theWrappedObject, const QString& name);
QDomElement createElement(QDomDocument* theWrappedObject, const QString& tagName);
QDomNodeList elementsByTagName(QDomDocument* theWrappedObject, const QString& tagname) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 bool setContent(QDomDocument* theWrappedObject, const QString& text, bool namespaceProcessing, QString* errorMsg = 0, int* errorLine = 0, int* errorColumn = 0);
florianlink
upgraded wrappers to current generator version...
r28 QDomDocumentFragment createDocumentFragment(QDomDocument* theWrappedObject);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 QDomElement elementById(QDomDocument* theWrappedObject, const QString& elementId);
florianlink
upgraded wrappers to current generator version...
r28 QDomNode importNode(QDomDocument* theWrappedObject, const QDomNode& importedNode, bool deep);
bool setContent(QDomDocument* theWrappedObject, QXmlInputSource* source, QXmlReader* reader, 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);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 QDomImplementation implementation(QDomDocument* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 QDomAttr createAttributeNS(QDomDocument* theWrappedObject, const QString& nsURI, const QString& qName);
QDomText createTextNode(QDomDocument* theWrappedObject, const QString& data);
QDomNodeList elementsByTagNameNS(QDomDocument* theWrappedObject, const QString& nsURI, const QString& localName);
bool setContent(QDomDocument* theWrappedObject, const QByteArray& text, bool namespaceProcessing, QString* errorMsg = 0, int* errorLine = 0, int* errorColumn = 0);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 QByteArray toByteArray(QDomDocument* theWrappedObject, int arg__1 = 1) const;
florianlink
upgraded wrappers to current generator version...
r28 QDomProcessingInstruction createProcessingInstruction(QDomDocument* theWrappedObject, const QString& target, const QString& data);
QDomDocumentType doctype(QDomDocument* theWrappedObject) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 QDomElement documentElement(QDomDocument* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 QDomElement createElementNS(QDomDocument* theWrappedObject, const QString& nsURI, const QString& qName);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 QDomEntityReference createEntityReference(QDomDocument* theWrappedObject, const QString& name);
bool setContent(QDomDocument* theWrappedObject, QIODevice* dev, QString* errorMsg = 0, int* errorLine = 0, int* errorColumn = 0);
QDomCDATASection createCDATASection(QDomDocument* theWrappedObject, const QString& data);
florianlink
upgraded wrappers to current generator version...
r28 QString toString(QDomDocument* theWrappedObject, int arg__1 = 1) const;
QDomComment createComment(QDomDocument* theWrappedObject, const QString& data);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 };
#endif // PYTHONQTWRAPPER_QDOMDOCUMENT_H