##// END OF EJS Templates
added builtin support for variants etc., this will replace the direct includes in PythonQt...
added builtin support for variants etc., this will replace the direct includes in PythonQt git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@129 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r73:40dc86970256
r93:7b53f64eae84
Show More
PythonQtWrapper_QWebFrame.cpp
177 lines | 5.1 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::load(QWebFrame* theWrappedObject, const QUrl& url)
{
( theWrappedObject->load(url));
}
QString PythonQtWrapper_QWebFrame::title(QWebFrame* theWrappedObject) const
{
return ( theWrappedObject->title());
}
QWebFrame* PythonQtWrapper_QWebFrame::parentFrame(QWebFrame* theWrappedObject) const
{
return ( theWrappedObject->parentFrame());
}
QString PythonQtWrapper_QWebFrame::toHtml(QWebFrame* theWrappedObject) const
{
return ( theWrappedObject->toHtml());
}
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));
}
int PythonQtWrapper_QWebFrame::scrollBarValue(QWebFrame* theWrappedObject, Qt::Orientation orientation) const
{
return ( theWrappedObject->scrollBarValue(orientation));
}
void PythonQtWrapper_QWebFrame::setTextSizeMultiplier(QWebFrame* theWrappedObject, qreal factor)
{
( theWrappedObject->setTextSizeMultiplier(factor));
}
QString PythonQtWrapper_QWebFrame::frameName(QWebFrame* theWrappedObject) const
{
return ( theWrappedObject->frameName());
}
QRect PythonQtWrapper_QWebFrame::geometry(QWebFrame* theWrappedObject) const
{
return ( theWrappedObject->geometry());
}
void PythonQtWrapper_QWebFrame::render(QWebFrame* theWrappedObject, QPainter* painter)
{
( theWrappedObject->render(painter));
}
void PythonQtWrapper_QWebFrame::setContent(QWebFrame* theWrappedObject, const QByteArray& data, const QString& mimeType, const QUrl& baseUrl)
{
( theWrappedObject->setContent(data, mimeType, baseUrl));
}
void PythonQtWrapper_QWebFrame::setScrollBarPolicy(QWebFrame* theWrappedObject, Qt::Orientation orientation, Qt::ScrollBarPolicy policy)
{
( theWrappedObject->setScrollBarPolicy(orientation, policy));
}
void PythonQtWrapper_QWebFrame::addToJavaScriptWindowObject(QWebFrame* theWrappedObject, const QString& name, QObject* object)
{
( theWrappedObject->addToJavaScriptWindowObject(name, object));
}
int PythonQtWrapper_QWebFrame::scrollBarMaximum(QWebFrame* theWrappedObject, Qt::Orientation orientation) const
{
return ( theWrappedObject->scrollBarMaximum(orientation));
}
QWebPage* PythonQtWrapper_QWebFrame::page(QWebFrame* theWrappedObject) const
{
return ( theWrappedObject->page());
}
QString PythonQtWrapper_QWebFrame::renderTreeDump(QWebFrame* theWrappedObject) const
{
return ( theWrappedObject->renderTreeDump());
}
QIcon PythonQtWrapper_QWebFrame::icon(QWebFrame* theWrappedObject) const
{
return ( theWrappedObject->icon());
}
qreal PythonQtWrapper_QWebFrame::textSizeMultiplier(QWebFrame* theWrappedObject) const
{
return ( theWrappedObject->textSizeMultiplier());
}
QList<QWebFrame* > PythonQtWrapper_QWebFrame::childFrames(QWebFrame* theWrappedObject) const
{
return ( theWrappedObject->childFrames());
}
bool PythonQtWrapper_QWebFrame::event(QWebFrame* theWrappedObject, QEvent* arg__1)
{
return ( ((PythonQtPublicPromoter_QWebFrame*)theWrappedObject)->promoted_event(arg__1));
}
void PythonQtWrapper_QWebFrame::setHtml(QWebFrame* theWrappedObject, const QString& html, const QUrl& baseUrl)
{
( theWrappedObject->setHtml(html, baseUrl));
}
QUrl PythonQtWrapper_QWebFrame::url(QWebFrame* theWrappedObject) const
{
return ( theWrappedObject->url());
}
void PythonQtWrapper_QWebFrame::setScrollBarValue(QWebFrame* theWrappedObject, Qt::Orientation orientation, int value)
{
( theWrappedObject->setScrollBarValue(orientation, value));
}
void PythonQtWrapper_QWebFrame::setUrl(QWebFrame* theWrappedObject, const QUrl& url)
{
( theWrappedObject->setUrl(url));
}
void PythonQtWrapper_QWebFrame::render(QWebFrame* theWrappedObject, QPainter* painter, const QRegion& clip)
{
( theWrappedObject->render(painter, clip));
}
QString PythonQtWrapper_QWebFrame::toPlainText(QWebFrame* theWrappedObject) const
{
return ( theWrappedObject->toPlainText());
}
QSize PythonQtWrapper_QWebFrame::contentsSize(QWebFrame* theWrappedObject) const
{
return ( theWrappedObject->contentsSize());
}
QWebHitTestResult PythonQtWrapper_QWebFrame::hitTestContent(QWebFrame* theWrappedObject, const QPoint& pos) const
{
return ( theWrappedObject->hitTestContent(pos));
}
QPoint PythonQtWrapper_QWebFrame::pos(QWebFrame* theWrappedObject) const
{
return ( theWrappedObject->pos());
}