##// END OF EJS Templates
improved so that dict contains properties and that dir() shows all available things, including the derived base attributes...
improved so that dict contains properties and that dir() shows all available things, including the derived base attributes git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@70 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r34:5daedfb035c8
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