Home | History | Annotate | Download | only in Api

Lines Matching refs:QWebFrame

22 #include "qwebframe.h"
90 bool QWEBKIT_EXPORT qt_drt_hasDocumentElement(QWebFrame* qframe)
95 void QWEBKIT_EXPORT qt_drt_setJavaScriptProfilingEnabled(QWebFrame* qframe, bool enabled)
112 bool QWEBKIT_EXPORT qt_drt_pauseAnimation(QWebFrame *qframe, const QString &animationName, double time, const QString &elementId)
132 bool QWEBKIT_EXPORT qt_drt_pauseTransitionOfProperty(QWebFrame *qframe, const QString &propertyName, double time, const QString &elementId)
154 bool QWEBKIT_EXPORT qt_drt_pauseSVGAnimation(QWebFrame *qframe, const QString &animationId, double time, const QString &elementId)
178 int QWEBKIT_EXPORT qt_drt_numberOfActiveAnimations(QWebFrame *qframe)
191 void QWEBKIT_EXPORT qt_drt_clearFrameName(QWebFrame* qFrame)
213 QString QWEBKIT_EXPORT qt_drt_counterValueForElementById(QWebFrame* qFrame, const QString& id)
223 int QWEBKIT_EXPORT qt_drt_pageNumberForElementById(QWebFrame* qFrame, const QString& id, float width, float height)
237 void QWEBKIT_EXPORT qt_suspendActiveDOMObjects(QWebFrame* qFrame)
245 void QWEBKIT_EXPORT qt_resumeActiveDOMObjects(QWebFrame* qFrame)
271 void QWebFramePrivate::init(QWebFrame *qframe, QWebFrameData *frameData)
327 void QWebFramePrivate::renderRelativeCoords(GraphicsContext* context, QWebFrame::RenderLayer layer, const QRegion& clip)
352 if (layer & QWebFrame::ContentsLayer) {
370 if (layer & QWebFrame::ScrollBarLayer
385 if (layer & QWebFrame::PanIconLayer)
433 \class QWebFrame
435 \brief The QWebFrame class represents a frame in a web page.
439 QWebFrame represents a frame inside a web page. Each QWebPage
451 The QWebFrame class also offers methods to retrieve both the URL currently
465 QWebFrame objects are created and controlled by the web page. You
472 A QWebFrame can be printed onto a QPrinter using the print() function.
481 \enum QWebFrame::RenderLayer
483 This enum describes the layers available for rendering using \l{QWebFrame::}{render()}.
493 QWebFrame::QWebFrame(QWebPage *parent, QWebFrameData *frameData)
506 QWebFrame::QWebFrame(QWebFrame *parent, QWebFrameData *frameData)
514 QWebFrame::~QWebFrame()
538 void QWebFrame::addToJavaScriptWindowObject(const QString &name, QObject *object)
544 \fn void QWebFrame::addToJavaScriptWindowObject(const QString &name, QObject *object, QScriptEngine::ValueOwnership own)
562 void QWebFrame::addToJavaScriptWindowObject(const QString &name, QObject *object, QScriptEngine::ValueOwnership ownership)
589 QString QWebFrame::toHtml() const
602 QString QWebFrame::toPlainText() const
617 QString QWebFrame::renderTreeDump() const
626 \property QWebFrame::title
632 QString QWebFrame::title() const
670 QMultiMap<QString, QString> QWebFrame::metaData() const
695 \property QWebFrame::url
701 void QWebFrame::setUrl(const QUrl &url)
708 QUrl QWebFrame::url() const
715 \property QWebFrame::requestedUrl
722 QUrl QWebFrame::requestedUrl() const
747 \property QWebFrame::baseUrl
752 QUrl QWebFrame::baseUrl() const
758 \property QWebFrame::icon
764 QIcon QWebFrame::icon() const
772 QString QWebFrame::frameName() const
780 QWebPage *QWebFrame::page() const
792 void QWebFrame::load(const QUrl &url)
807 void QWebFrame::load(const QNetworkRequest &req,
871 void QWebFrame::setHtml(const QString &html, const QUrl &baseUrl)
894 void QWebFrame::setContent(const QByteArray &data, const QString &mimeType, const QUrl &baseUrl)
910 This is equivalent to qobject_cast<QWebFrame*>(frame->parent()).
914 QWebFrame *QWebFrame::parentFrame() const
924 QList<QWebFrame*> QWebFrame::childFrames() const
926 QList<QWebFrame*> rc;
943 Qt::ScrollBarPolicy QWebFrame::scrollBarPolicy(Qt::Orientation orientation) const
953 void QWebFrame::setScrollBarPolicy(Qt::Orientation orientation, Qt::ScrollBarPolicy policy)
983 void QWebFrame::setScrollBarValue(Qt::Orientation orientation, int value)
1002 int QWebFrame::scrollBarValue(Qt::Orientation orientation) const
1017 int QWebFrame::scrollBarMaximum(Qt::Orientation orientation) const
1033 int QWebFrame::scrollBarMinimum(Qt::Orientation orientation) const
1045 QRect QWebFrame::scrollBarGeometry(Qt::Orientation orientation) const
1059 \sa QWebFrame::scrollPosition
1062 void QWebFrame::scroll(int dx, int dy)
1077 \sa QWebFrame::scroll
1079 bool QWebFrame::scrollRecursively(int dx, int dy)
1114 bool QWEBKIT_EXPORT qtwebkit_webframe_scrollRecursively(QWebFrame* qFrame, int dx, int dy)
1120 \property QWebFrame::scrollPosition
1125 QPoint QWebFrame::scrollPosition() const
1134 void QWebFrame::setScrollPosition(const QPoint &pos)
1149 void QWebFrame::render(QPainter* painter, RenderLayer layer, const QRegion& clip)
1164 void QWebFrame::render(QPainter* painter, const QRegion& clip)
1176 void QWebFrame::render(QPainter* painter)
1189 \property QWebFrame::textSizeMultiplier
1204 void QWebFrame::setTextSizeMultiplier(qreal factor)
1212 qreal QWebFrame::textSizeMultiplier() const
1218 \property QWebFrame::zoomFactor
1223 void QWebFrame::setZoomFactor(qreal factor)
1228 qreal QWebFrame::zoomFactor() const
1234 \property QWebFrame::focus
1239 bool QWebFrame::hasFocus() const
1250 void QWebFrame::setFocus()
1258 QPoint QWebFrame::pos() const
1269 QRect QWebFrame::geometry() const
1277 \property QWebFrame::contentsSize
1282 QSize QWebFrame::contentsSize() const
1298 QWebElement QWebFrame::documentElement() const
1316 QWebElementCollection QWebFrame::findAllElements(const QString &selectorQuery) const
1332 QWebElement QWebFrame::findFirstElement(const QString &selectorQuery) const
1340 QWebHitTestResult QWebFrame::hitTestContent(const QPoint &pos) const
1355 bool QWebFrame::event(QEvent *e)
1366 void QWebFrame::print(QPrinter *printer) const
1464 QVariant QWebFrame::evaluateJavaScript(const QString& scriptSource)
1481 QWebSecurityOrigin QWebFrame::securityOrigin() const
1483 QWebFrame* that = const_cast<QWebFrame*>(this);
1488 WebCore::Frame* QWebFramePrivate::core(QWebFrame* webFrame)
1493 QWebFrame* QWebFramePrivate::kit(WebCore::Frame* coreFrame)
1500 \fn void QWebFrame::javaScriptWindowObjectCleared()
1505 If you intend to add QObjects to a QWebFrame using
1512 \fn void QWebFrame::provisionalLoad()
1517 \fn void QWebFrame::titleChanged(const QString &title)
1526 \fn void QWebFrame::urlChanged(const QUrl &url)
1535 \fn void QWebFrame::initialLayoutCompleted()
1544 \fn void QWebFrame::iconChanged()
1553 \fn void QWebFrame::contentsSizeChanged(const QSize &size)
1563 \fn void QWebFrame::loadStarted()
1572 \fn void QWebFrame::loadFinished(bool ok)
1589 QWebHitTestResult is returned by QWebFrame::hitTestContent() to provide
1787 QWebFrame *QWebHitTestResult::linkTargetFrame() const
1860 QWebFrame *QWebHitTestResult::frame() const