##// 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_QDomNode.h
91 lines | 5.6 KiB | text/x-c | CLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QDOMNODE_H
#define PYTHONQTWRAPPER_QDOMNODE_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_QDomNode : public QObject
{ Q_OBJECT
public:
Q_ENUMS(NodeType EncodingPolicy )
enum NodeType{
ElementNode = QDomNode::ElementNode, AttributeNode = QDomNode::AttributeNode, TextNode = QDomNode::TextNode, CDATASectionNode = QDomNode::CDATASectionNode, EntityReferenceNode = QDomNode::EntityReferenceNode, EntityNode = QDomNode::EntityNode, ProcessingInstructionNode = QDomNode::ProcessingInstructionNode, CommentNode = QDomNode::CommentNode, DocumentNode = QDomNode::DocumentNode, DocumentTypeNode = QDomNode::DocumentTypeNode, DocumentFragmentNode = QDomNode::DocumentFragmentNode, NotationNode = QDomNode::NotationNode, BaseNode = QDomNode::BaseNode, CharacterDataNode = QDomNode::CharacterDataNode};
enum EncodingPolicy{
EncodingFromDocument = QDomNode::EncodingFromDocument, EncodingFromTextStream = QDomNode::EncodingFromTextStream};
public slots:
QDomNode* new_QDomNode();
QDomNode* new_QDomNode(const QDomNode& arg__1);
void delete_QDomNode(QDomNode* obj) { delete obj; }
florianlink
recreated wrappers to match current python qt version...
r73 QString nodeName(QDomNode* theWrappedObject) const;
int columnNumber(QDomNode* theWrappedObject) const;
void clear(QDomNode* theWrappedObject);
QDomNode cloneNode(QDomNode* theWrappedObject, bool deep = true) const;
QDomText toText(QDomNode* theWrappedObject) const;
QString namespaceURI(QDomNode* theWrappedObject) const;
void writeTo(QDomNode* theWrappedObject, QTextStream& arg__1);
QDomEntityReference toEntityReference(QDomNode* theWrappedObject) const;
bool isAttr(QDomNode* theWrappedObject) const;
QDomNode lastChild(QDomNode* theWrappedObject) const;
QDomNodeList childNodes(QDomNode* theWrappedObject) const;
bool isCharacterData(QDomNode* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 QDomDocumentFragment toDocumentFragment(QDomNode* theWrappedObject) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 bool isText(QDomNode* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 QDomElement previousSiblingElement(QDomNode* theWrappedObject, const QString& tagName = QString()) const;
florianlink
recreated wrappers to match current python qt version...
r73 bool isEntityReference(QDomNode* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 bool isSupported(QDomNode* theWrappedObject, const QString& feature, const QString& version) const;
florianlink
recreated wrappers to match current python qt version...
r73 QDomElement firstChildElement(QDomNode* theWrappedObject, const QString& tagName = QString()) const;
QDomNode replaceChild(QDomNode* theWrappedObject, const QDomNode& newChild, const QDomNode& oldChild);
bool hasChildNodes(QDomNode* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 void save(QDomNode* theWrappedObject, QTextStream& arg__1, int arg__2) const;
florianlink
recreated wrappers to match current python qt version...
r73 bool hasAttributes(QDomNode* theWrappedObject) const;
void setNodeValue(QDomNode* theWrappedObject, const QString& arg__1);
QDomNode appendChild(QDomNode* theWrappedObject, const QDomNode& newChild);
bool isCDATASection(QDomNode* theWrappedObject) const;
QDomNode removeChild(QDomNode* theWrappedObject, const QDomNode& oldChild);
bool isNotation(QDomNode* theWrappedObject) const;
bool isNull(QDomNode* theWrappedObject) const;
void save(QDomNode* theWrappedObject, QTextStream& arg__1, int arg__2, QDomNode::EncodingPolicy arg__3) const;
QDomCDATASection toCDATASection(QDomNode* theWrappedObject) const;
QDomDocument toDocument(QDomNode* theWrappedObject) const;
QDomNotation toNotation(QDomNode* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 QDomNode parentNode(QDomNode* theWrappedObject) const;
QDomNode insertAfter(QDomNode* theWrappedObject, const QDomNode& newChild, const QDomNode& refChild);
florianlink
recreated wrappers to match current python qt version...
r73 QDomElement lastChildElement(QDomNode* theWrappedObject, const QString& tagName = QString()) const;
QDomCharacterData toCharacterData(QDomNode* theWrappedObject) const;
QString prefix(QDomNode* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 QString localName(QDomNode* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 bool isProcessingInstruction(QDomNode* theWrappedObject) const;
QDomNode namedItem(QDomNode* theWrappedObject, const QString& name) const;
florianlink
upgraded wrappers to current generator version...
r28 int lineNumber(QDomNode* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 QDomNode::NodeType nodeType(QDomNode* theWrappedObject) const;
bool isDocumentType(QDomNode* theWrappedObject) const;
QDomNode nextSibling(QDomNode* theWrappedObject) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 void normalize(QDomNode* theWrappedObject);
florianlink
recreated wrappers to match current python qt version...
r73 QDomAttr toAttr(QDomNode* theWrappedObject) const;
QDomComment toComment(QDomNode* theWrappedObject) const;
QDomDocumentType toDocumentType(QDomNode* theWrappedObject) const;
bool isComment(QDomNode* theWrappedObject) const;
bool isEntity(QDomNode* theWrappedObject) const;
bool isDocumentFragment(QDomNode* theWrappedObject) const;
void setPrefix(QDomNode* theWrappedObject, const QString& pre);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 QDomProcessingInstruction toProcessingInstruction(QDomNode* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 bool isElement(QDomNode* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 QDomElement toElement(QDomNode* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 QDomElement nextSiblingElement(QDomNode* theWrappedObject, const QString& taName = QString()) const;
bool operator_equal(QDomNode* theWrappedObject, const QDomNode& arg__1) const;
QDomNode previousSibling(QDomNode* theWrappedObject) const;
QDomNode firstChild(QDomNode* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 bool isDocument(QDomNode* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 QDomDocument ownerDocument(QDomNode* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 QDomEntity toEntity(QDomNode* theWrappedObject) const;
QString nodeValue(QDomNode* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 QDomNode insertBefore(QDomNode* theWrappedObject, const QDomNode& newChild, const QDomNode& refChild);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 };
#endif // PYTHONQTWRAPPER_QDOMNODE_H