Home | History | Annotate | Download | only in Api

Lines Matching refs:QWebFrame

22 #include "qwebframe.h"
120 bool QWEBKIT_EXPORT qtwebkit_webframe_scrollOverflow(QWebFrame* qFrame, int dx, int dy, const QPoint& pos)
173 void QWEBKIT_EXPORT qtwebkit_webframe_scrollRecursively(QWebFrame* qFrame, int dx, int dy, const QPoint& pos)
238 void QWebFramePrivate::init(QWebFrame *qframe, QWebFrameData *frameData)
257 // The QWebFrame is created as a child of QWebPage or a parent QWebFrame.
316 renderFrameExtras(context, QFlags<QWebFrame::RenderLayer>(QWebFrame::ScrollBarLayer) | QWebFrame::PanIconLayer, clip);
345 void QWebFramePrivate::renderRelativeCoords(GraphicsContext* context, QFlags<QWebFrame::RenderLayer> layers, const QRegion& clip)
359 if (layers & QWebFrame::ContentsLayer) {
398 void QWebFramePrivate::renderFrameExtras(GraphicsContext* context, QFlags<QWebFrame::RenderLayer> layers, const QRegion& clip)
400 if (!(layers & (QWebFrame::PanIconLayer | QWebFrame::ScrollBarLayer)))
416 if (layers & QWebFrame::ScrollBarLayer
428 if (layers & QWebFrame::PanIconLayer)
471 \class QWebFrame
473 \brief The QWebFrame class represents a frame in a web page.
477 QWebFrame represents a frame inside a web page. Each QWebPage
489 The QWebFrame class also offers methods to retrieve both the URL currently
503 QWebFrame objects are created and controlled by the web page. You
512 A QWebFrame can be printed onto a QPrinter using the print() function.
521 \enum QWebFrame::RenderLayer
523 This enum describes the layers available for rendering using \l{QWebFrame::}{render()}.
533 QWebFrame::QWebFrame(QWebPage *parent, QWebFrameData *frameData)
550 QWebFrame::QWebFrame(QWebFrame *parent, QWebFrameData *frameData)
562 QWebFrame::~QWebFrame()
587 void QWebFrame::addToJavaScriptWindowObject(const QString &name, QObject *object)
593 \fn void QWebFrame::addToJavaScriptWindowObject(const QString &name, QObject *object, QScriptEngine::ValueOwnership own)
612 void QWebFrame::addToJavaScriptWindowObject(const QString &name, QObject *object, QScriptEngine::ValueOwnership ownership)
655 QString QWebFrame::toHtml() const
668 QString QWebFrame::toPlainText() const
683 QString QWebFrame::renderTreeDump() const
692 \property QWebFrame::title
698 QString QWebFrame::title() const
736 QMultiMap<QString, QString> QWebFrame::metaData() const
780 \property QWebFrame::url
790 void QWebFrame::setUrl(const QUrl &url)
798 QUrl QWebFrame::url() const
805 \property QWebFrame::requestedUrl
812 QUrl QWebFrame::requestedUrl() const
818 \property QWebFrame::baseUrl
823 QUrl QWebFrame::baseUrl() const
831 \property QWebFrame::icon
837 QIcon QWebFrame::icon() const
845 QString QWebFrame::frameName() const
855 QWebPage *QWebFrame::page() const
867 void QWebFrame::load(const QUrl &url)
883 void QWebFrame::load(const QNetworkRequest &req,
965 void QWebFrame::setHtml(const QString &html, const QUrl &baseUrl)
988 void QWebFrame::setContent(const QByteArray &data, const QString &mimeType, const QUrl &baseUrl)
1009 This is equivalent to qobject_cast<QWebFrame*>(frame->parent()).
1013 QWebFrame *QWebFrame::parentFrame() const
1023 QList<QWebFrame*> QWebFrame::childFrames() const
1025 QList<QWebFrame*> rc;
1030 QWebFrame* webFrame = qobject_cast<QWebFrame*>(loader->networkingContext()->originatingObject());
1042 Qt::ScrollBarPolicy QWebFrame::scrollBarPolicy(Qt::Orientation orientation) const
1052 void QWebFrame::setScrollBarPolicy(Qt::Orientation orientation, Qt::ScrollBarPolicy policy)
1082 void QWebFrame::setScrollBarValue(Qt::Orientation orientation, int value)
1101 int QWebFrame::scrollBarValue(Qt::Orientation orientation) const
1116 int QWebFrame::scrollBarMaximum(Qt::Orientation orientation) const
1132 int QWebFrame::scrollBarMinimum(Qt::Orientation orientation) const
1144 QRect QWebFrame::scrollBarGeometry(Qt::Orientation orientation) const
1158 \sa QWebFrame::scrollPosition
1161 void QWebFrame::scroll(int dx, int dy)
1170 \property QWebFrame::scrollPosition
1175 QPoint QWebFrame::scrollPosition() const
1184 void QWebFrame::setScrollPosition(const QPoint &pos)
1196 void QWebFrame::scrollToAnchor(const QString& anchor)
1210 void QWebFrame::render(QPainter* painter, RenderLayer layer, const QRegion& clip)
1225 void QWebFrame::render(QPainter* painter, const QRegion& clip)
1237 void QWebFrame::render(QPainter* painter)
1250 \property QWebFrame::textSizeMultiplier
1265 void QWebFrame::setTextSizeMultiplier(qreal factor)
1275 qreal QWebFrame::textSizeMultiplier() const
1281 \property QWebFrame::zoomFactor
1286 void QWebFrame::setZoomFactor(qreal factor)
1294 qreal QWebFrame::zoomFactor() const
1300 \property QWebFrame::focus
1305 bool QWebFrame::hasFocus() const
1316 void QWebFrame::setFocus()
1324 QPoint QWebFrame::pos() const
1335 QRect QWebFrame::geometry() const
1343 \property QWebFrame::contentsSize
1348 QSize QWebFrame::contentsSize() const
1364 QWebElement QWebFrame::documentElement() const
1382 QWebElementCollection QWebFrame::findAllElements(const QString &selectorQuery) const
1398 QWebElement QWebFrame::findFirstElement(const QString &selectorQuery) const
1406 QWebHitTestResult QWebFrame::hitTestContent(const QPoint &pos) const
1421 bool QWebFrame::event(QEvent *e)
1432 void QWebFrame::print(QPrinter *printer) const
1530 QVariant QWebFrame::evaluateJavaScript(const QString& scriptSource)
1555 QWebSecurityOrigin QWebFrame::securityOrigin() const
1557 QWebFrame* that = const_cast<QWebFrame*>(this);
1562 WebCore::Frame* QWebFramePrivate::core(const QWebFrame* webFrame)
1567 QWebFrame* QWebFramePrivate::kit(const WebCore::Frame* coreFrame)
1569 return qobject_cast<QWebFrame*>(coreFrame->loader()->networkingContext()->originatingObject());
1574 \fn void QWebFrame::javaScriptWindowObjectCleared()
1579 If you intend to add QObjects to a QWebFrame using
1586 \fn void QWebFrame::provisionalLoad()
1591 \fn void QWebFrame::titleChanged(const QString &title)
1600 \fn void QWebFrame::urlChanged(const QUrl &url)
1609 \fn void QWebFrame::initialLayoutCompleted()
1618 \fn void QWebFrame::iconChanged()
1627 \fn void QWebFrame::contentsSizeChanged(const QSize &size)
1637 \fn void QWebFrame::loadStarted()
1646 \fn void QWebFrame::loadFinished(bool ok)
1656 \fn void QWebFrame::pageChanged()
1672 QWebHitTestResult is returned by QWebFrame::hitTestContent() to provide
1870 QWebFrame *QWebHitTestResult::linkTargetFrame() const
1943 QWebFrame *QWebHitTestResult::frame() const