##// 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_QXmlQuery.h
48 lines | 2.2 KiB | text/x-c | CLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QXMLQUERY_H
#define PYTHONQTWRAPPER_QXMLQUERY_H
#include <qxmlquery.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 <qabstractmessagehandler.h>
#include <qabstracturiresolver.h>
#include <qabstractxmlnodemodel.h>
#include <qabstractxmlreceiver.h>
#include <qiodevice.h>
#include <qurl.h>
#include <qxmlname.h>
#include <qxmlnamepool.h>
#include <qxmlquery.h>
#include <qxmlresultitems.h>
class PythonQtWrapper_QXmlQuery : public QObject
{ Q_OBJECT
public:
public slots:
QXmlQuery* new_QXmlQuery();
QXmlQuery* new_QXmlQuery(const QXmlNamePool& np);
QXmlQuery* new_QXmlQuery(const QXmlQuery& other);
void delete_QXmlQuery(QXmlQuery* obj) { delete obj; }
florianlink
recreated wrappers to match current python qt version...
r73 void setQuery(QXmlQuery* theWrappedObject, const QUrl& queryURI, const QUrl& baseURI = QUrl());
void setMessageHandler(QXmlQuery* theWrappedObject, QAbstractMessageHandler* messageHandler);
void setQuery(QXmlQuery* theWrappedObject, QIODevice* sourceCode, const QUrl& documentURI = QUrl());
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void setQuery(QXmlQuery* theWrappedObject, const QString& sourceCode, const QUrl& documentURI = QUrl());
florianlink
upgraded wrappers to current generator version...
r28 QAbstractMessageHandler* messageHandler(QXmlQuery* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 void bindVariable(QXmlQuery* theWrappedObject, const QXmlName& name, QIODevice* arg__2);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void bindVariable(QXmlQuery* theWrappedObject, const QXmlName& name, const QXmlItem& value);
florianlink
recreated wrappers to match current python qt version...
r73 QXmlQuery* operator_assign(QXmlQuery* theWrappedObject, const QXmlQuery& other);
const QAbstractUriResolver* uriResolver(QXmlQuery* theWrappedObject) const;
bool evaluateTo(QXmlQuery* theWrappedObject, QAbstractXmlReceiver* callback) const;
florianlink
upgraded wrappers to current generator version...
r28 QXmlNamePool namePool(QXmlQuery* theWrappedObject) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void bindVariable(QXmlQuery* theWrappedObject, const QString& localName, QIODevice* arg__2);
florianlink
upgraded wrappers to current generator version...
r28 void bindVariable(QXmlQuery* theWrappedObject, const QString& localName, const QXmlItem& value);
florianlink
recreated wrappers to match current python qt version...
r73 void setFocus(QXmlQuery* theWrappedObject, const QXmlItem& item);
void evaluateTo(QXmlQuery* theWrappedObject, QXmlResultItems* result) const;
bool isValid(QXmlQuery* theWrappedObject) const;
void setUriResolver(QXmlQuery* theWrappedObject, const QAbstractUriResolver* resolver);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 };
#endif // PYTHONQTWRAPPER_QXMLQUERY_H