##// END OF EJS Templates
code cleanup and rename of PythonQtWrapper to PythonQtInstanceWrapper and PythonQtMetaObjectWrapper to PythonQtClassWrapper, since these names match much better what these classes wrap, regarding that we are wrapping CPP objects as well...
code cleanup and rename of PythonQtWrapper to PythonQtInstanceWrapper and PythonQtMetaObjectWrapper to PythonQtClassWrapper, since these names match much better what these classes wrap, regarding that we are wrapping CPP objects as well git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@52 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r16:c68e0aff542c
Show More
PythonQtWrapper_QWebHitTestResult.h
35 lines | 1.4 KiB | text/x-c | CLexer
#ifndef PYTHONQTWRAPPER_QWEBHITTESTRESULT_H
#define PYTHONQTWRAPPER_QWEBHITTESTRESULT_H
#include <qwebframe.h>
#include <QObject>
#include <QVariant>
#include <qpixmap.h>
#include <qpoint.h>
#include <qurl.h>
#include <qwebframe.h>
class PythonQtWrapper_QWebHitTestResult : public QObject
{ Q_OBJECT
public:
public slots:
QWebHitTestResult* new_QWebHitTestResult();
QWebHitTestResult* new_QWebHitTestResult(const QWebHitTestResult& other);
void delete_QWebHitTestResult(QWebHitTestResult* obj) { delete obj; }
QString alternateText(QWebHitTestResult* theWrappedObject) const;
QWebFrame* frame(QWebHitTestResult* theWrappedObject) const;
QUrl imageUrl(QWebHitTestResult* theWrappedObject) const;
bool isContentEditable(QWebHitTestResult* theWrappedObject) const;
bool isContentSelected(QWebHitTestResult* theWrappedObject) const;
bool isNull(QWebHitTestResult* theWrappedObject) const;
QWebFrame* linkTargetFrame(QWebHitTestResult* theWrappedObject) const;
QString linkText(QWebHitTestResult* theWrappedObject) const;
QUrl linkTitle(QWebHitTestResult* theWrappedObject) const;
QUrl linkUrl(QWebHitTestResult* theWrappedObject) const;
QPixmap pixmap(QWebHitTestResult* theWrappedObject) const;
QPoint pos(QWebHitTestResult* theWrappedObject) const;
QString title(QWebHitTestResult* theWrappedObject) const;
};
#endif // PYTHONQTWRAPPER_QWEBHITTESTRESULT_H