##// 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_QWebFrame.cpp
177 lines | 5.0 KiB | text/x-c | CppLexer
#include "PythonQtWrapper_QWebFrame.h"
#include <PythonQtSignalReceiver.h>
#include <PythonQtMethodInfo.h>
#include <PythonQtConversion.h>
#include <QVariant>
#include <qbytearray.h>
#include <qcoreevent.h>
#include <qicon.h>
#include <qlist.h>
#include <qnetworkrequest.h>
#include <qobject.h>
#include <qpainter.h>
#include <qpoint.h>
#include <qprinter.h>
#include <qrect.h>
#include <qregion.h>
#include <qsize.h>
#include <qurl.h>
#include <qwebframe.h>
#include <qwebpage.h>
void PythonQtWrapper_QWebFrame::setScrollBarValue(QWebFrame* theWrappedObject, Qt::Orientation orientation, int value)
{
theWrappedObject->setScrollBarValue(orientation, value);
}
void PythonQtWrapper_QWebFrame::render(QWebFrame* theWrappedObject, QPainter* painter, const QRegion& clip)
{
theWrappedObject->render(painter, clip);
}
QSize PythonQtWrapper_QWebFrame::contentsSize(QWebFrame* theWrappedObject) const
{
return theWrappedObject->contentsSize();
}
QPoint PythonQtWrapper_QWebFrame::pos(QWebFrame* theWrappedObject) const
{
return theWrappedObject->pos();
}
void PythonQtWrapper_QWebFrame::load(QWebFrame* theWrappedObject, const QUrl& url)
{
theWrappedObject->load(url);
}
QWebFrame* PythonQtWrapper_QWebFrame::parentFrame(QWebFrame* theWrappedObject) const
{
return theWrappedObject->parentFrame();
}
int PythonQtWrapper_QWebFrame::scrollBarMinimum(QWebFrame* theWrappedObject, Qt::Orientation orientation) const
{
return theWrappedObject->scrollBarMinimum(orientation);
}
Qt::ScrollBarPolicy PythonQtWrapper_QWebFrame::scrollBarPolicy(QWebFrame* theWrappedObject, Qt::Orientation orientation) const
{
return theWrappedObject->scrollBarPolicy(orientation);
}
void PythonQtWrapper_QWebFrame::load(QWebFrame* theWrappedObject, const QNetworkRequest& request, QNetworkAccessManager::Operation operation, const QByteArray& body)
{
theWrappedObject->load(request, operation, body);
}
QList<QWebFrame* > PythonQtWrapper_QWebFrame::childFrames(QWebFrame* theWrappedObject) const
{
return theWrappedObject->childFrames();
}
QString PythonQtWrapper_QWebFrame::frameName(QWebFrame* theWrappedObject) const
{
return theWrappedObject->frameName();
}
QRect PythonQtWrapper_QWebFrame::geometry(QWebFrame* theWrappedObject) const
{
return theWrappedObject->geometry();
}
QString PythonQtWrapper_QWebFrame::title(QWebFrame* theWrappedObject) const
{
return theWrappedObject->title();
}
void PythonQtWrapper_QWebFrame::render(QWebFrame* theWrappedObject, QPainter* painter)
{
theWrappedObject->render(painter);
}
QWebHitTestResult PythonQtWrapper_QWebFrame::hitTestContent(QWebFrame* theWrappedObject, const QPoint& pos) const
{
return theWrappedObject->hitTestContent(pos);
}
void PythonQtWrapper_QWebFrame::setTextSizeMultiplier(QWebFrame* theWrappedObject, qreal factor)
{
theWrappedObject->setTextSizeMultiplier(factor);
}
void PythonQtWrapper_QWebFrame::setUrl(QWebFrame* theWrappedObject, const QUrl& url)
{
theWrappedObject->setUrl(url);
}
void PythonQtWrapper_QWebFrame::addToJavaScriptWindowObject(QWebFrame* theWrappedObject, const QString& name, QObject* object)
{
theWrappedObject->addToJavaScriptWindowObject(name, object);
}
void PythonQtWrapper_QWebFrame::setContent(QWebFrame* theWrappedObject, const QByteArray& data, const QString& mimeType, const QUrl& baseUrl)
{
theWrappedObject->setContent(data, mimeType, baseUrl);
}
int PythonQtWrapper_QWebFrame::scrollBarMaximum(QWebFrame* theWrappedObject, Qt::Orientation orientation) const
{
return theWrappedObject->scrollBarMaximum(orientation);
}
int PythonQtWrapper_QWebFrame::scrollBarValue(QWebFrame* theWrappedObject, Qt::Orientation orientation) const
{
return theWrappedObject->scrollBarValue(orientation);
}
QString PythonQtWrapper_QWebFrame::toPlainText(QWebFrame* theWrappedObject) const
{
return theWrappedObject->toPlainText();
}
QString PythonQtWrapper_QWebFrame::renderTreeDump(QWebFrame* theWrappedObject) const
{
return theWrappedObject->renderTreeDump();
}
void PythonQtWrapper_QWebFrame::setScrollBarPolicy(QWebFrame* theWrappedObject, Qt::Orientation orientation, Qt::ScrollBarPolicy policy)
{
theWrappedObject->setScrollBarPolicy(orientation, policy);
}
QIcon PythonQtWrapper_QWebFrame::icon(QWebFrame* theWrappedObject) const
{
return theWrappedObject->icon();
}
QUrl PythonQtWrapper_QWebFrame::url(QWebFrame* theWrappedObject) const
{
return theWrappedObject->url();
}
void PythonQtWrapper_QWebFrame::setHtml(QWebFrame* theWrappedObject, const QString& html, const QUrl& baseUrl)
{
theWrappedObject->setHtml(html, baseUrl);
}
qreal PythonQtWrapper_QWebFrame::textSizeMultiplier(QWebFrame* theWrappedObject) const
{
return theWrappedObject->textSizeMultiplier();
}
QString PythonQtWrapper_QWebFrame::toHtml(QWebFrame* theWrappedObject) const
{
return theWrappedObject->toHtml();
}
QWebPage* PythonQtWrapper_QWebFrame::page(QWebFrame* theWrappedObject) const
{
return theWrappedObject->page();
}
bool PythonQtWrapper_QWebFrame::event(QWebFrame* theWrappedObject, QEvent* arg__1)
{
return ((PythonQtPublicPromoter_QWebFrame*)theWrappedObject)->promoted_event(arg__1);
}