##// END OF EJS Templates
updated version number, next version will be 2.0 due to the wrapping generator addition...
updated version number, next version will be 2.0 due to the wrapping generator addition git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@69 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r33:1742cf875fd9
Show More
PythonQtWrapper_QXmlQuery.h
48 lines | 2.2 KiB | text/x-c | CLexer
#ifndef PYTHONQTWRAPPER_QXMLQUERY_H
#define PYTHONQTWRAPPER_QXMLQUERY_H
#include <qxmlquery.h>
#include <QObject>
#include <PythonQt.h>
#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; }
const QAbstractUriResolver* uriResolver(QXmlQuery* theWrappedObject) const;
void setQuery(QXmlQuery* theWrappedObject, const QString& sourceCode, const QUrl& documentURI = QUrl());
void bindVariable(QXmlQuery* theWrappedObject, const QXmlName& name, QIODevice* arg__2);
QAbstractMessageHandler* messageHandler(QXmlQuery* theWrappedObject) const;
void setQuery(QXmlQuery* theWrappedObject, const QUrl& queryURI, const QUrl& baseURI = QUrl());
QXmlQuery& operator_assign(QXmlQuery* theWrappedObject, const QXmlQuery& other);
bool evaluateTo(QXmlQuery* theWrappedObject, QAbstractXmlReceiver* callback) const;
void evaluateTo(QXmlQuery* theWrappedObject, QXmlResultItems* result) const;
void bindVariable(QXmlQuery* theWrappedObject, const QXmlName& name, const QXmlItem& value);
QXmlNamePool namePool(QXmlQuery* theWrappedObject) const;
void setUriResolver(QXmlQuery* theWrappedObject, const QAbstractUriResolver* resolver);
void setQuery(QXmlQuery* theWrappedObject, QIODevice* sourceCode, const QUrl& documentURI = QUrl());
bool isValid(QXmlQuery* theWrappedObject) const;
void bindVariable(QXmlQuery* theWrappedObject, const QString& localName, QIODevice* arg__2);
void setFocus(QXmlQuery* theWrappedObject, const QXmlItem& item);
void bindVariable(QXmlQuery* theWrappedObject, const QString& localName, const QXmlItem& value);
void setMessageHandler(QXmlQuery* theWrappedObject, QAbstractMessageHandler* messageHandler);
};
#endif // PYTHONQTWRAPPER_QXMLQUERY_H