##// END OF EJS Templates
added alphabetic sorting...
added alphabetic sorting git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@132 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r73:40dc86970256
r96:3170eb771a99
Show More
PythonQtWrapper_QDomElement.h
48 lines | 2.9 KiB | text/x-c | CLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QDOMELEMENT_H
#define PYTHONQTWRAPPER_QDOMELEMENT_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 <qdom.h>
#include <qtextstream.h>
class PythonQtWrapper_QDomElement : public QObject
{ Q_OBJECT
public:
public slots:
QDomElement* new_QDomElement();
QDomElement* new_QDomElement(const QDomElement& x);
void delete_QDomElement(QDomElement* obj) { delete obj; }
florianlink
upgraded wrappers to current generator version...
r28 void removeAttribute(QDomElement* theWrappedObject, const QString& name);
QString tagName(QDomElement* theWrappedObject) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 void setAttribute(QDomElement* theWrappedObject, const QString& name, qlonglong value);
void setAttributeNS(QDomElement* theWrappedObject, const QString nsURI, const QString& qName, const QString& value);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 QDomAttr attributeNodeNS(QDomElement* theWrappedObject, const QString& nsURI, const QString& localName);
florianlink
upgraded wrappers to current generator version...
r28 QString attributeNS(QDomElement* theWrappedObject, const QString nsURI, const QString& localName, const QString& defValue = QString()) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void setAttribute(QDomElement* theWrappedObject, const QString& name, const QString& value);
void setAttributeNS(QDomElement* theWrappedObject, const QString nsURI, const QString& qName, int value);
QDomAttr attributeNode(QDomElement* theWrappedObject, const QString& name);
bool hasAttributeNS(QDomElement* theWrappedObject, const QString& nsURI, const QString& localName) const;
void setAttribute(QDomElement* theWrappedObject, const QString& name, float value);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 QString text(QDomElement* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 void removeAttributeNS(QDomElement* theWrappedObject, const QString& nsURI, const QString& localName);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 QDomAttr removeAttributeNode(QDomElement* theWrappedObject, const QDomAttr& oldAttr);
void setAttribute(QDomElement* theWrappedObject, const QString& name, double value);
QDomNamedNodeMap attributes(QDomElement* theWrappedObject) const;
void setAttributeNS(QDomElement* theWrappedObject, const QString nsURI, const QString& qName, qlonglong value);
florianlink
upgraded wrappers to current generator version...
r28 void setTagName(QDomElement* theWrappedObject, const QString& name);
QDomNodeList elementsByTagName(QDomElement* theWrappedObject, const QString& tagname) const;
void setAttribute(QDomElement* theWrappedObject, const QString& name, int value);
bool hasAttribute(QDomElement* theWrappedObject, const QString& name) const;
QString attribute(QDomElement* theWrappedObject, const QString& name, const QString& defValue = QString()) const;
QDomNodeList elementsByTagNameNS(QDomElement* theWrappedObject, const QString& nsURI, const QString& localName) const;
QDomAttr setAttributeNode(QDomElement* theWrappedObject, const QDomAttr& newAttr);
QDomAttr setAttributeNodeNS(QDomElement* theWrappedObject, const QDomAttr& newAttr);
florianlink
recreated wrappers to match current python qt version...
r73 void setAttributeNS(QDomElement* theWrappedObject, const QString nsURI, const QString& qName, double value);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 };
#endif // PYTHONQTWRAPPER_QDOMELEMENT_H