Home | History | Annotate | Download | only in Api

Lines Matching refs:url

451     The QWebFrame class also offers methods to retrieve both the URL currently
452 loaded by the frame (see url()) as well as the URL originally requested
454 of the URL before and after a DNS resolution or a redirection occurs during
455 the load process. The requestedUrl() also matches to the URL added to the
500 if (!frameData->url.isEmpty()) {
501 WebCore::ResourceRequest request(frameData->url, frameData->referrer);
531 new URL, you should add them in a slot connected to the
555 new URL, you should add them in a slot connected to the
686 static inline QUrl ensureAbsoluteUrl(const QUrl &url)
688 if (!url.isRelative())
689 return url;
691 return QUrl::fromLocalFile(QFileInfo(url.toLocalFile()).absoluteFilePath());
695 \property QWebFrame::url
696 \brief the url of the frame currently viewed
701 void QWebFrame::setUrl(const QUrl &url)
703 d->frame->loader()->begin(ensureAbsoluteUrl(url));
705 load(ensureAbsoluteUrl(url));
708 QUrl QWebFrame::url() const
710 return d->frame->loader()->url();
717 The URL requested to loaded by the frame currently viewed. The URL may differ from
718 the one returned by url() if a DNS resolution or a redirection occurs.
720 \sa url(), setUrl()
743 return loader->originalRequest().url();
748 \brief the base URL of the frame, can be used to resolve relative URLs
766 return QWebSettings::iconForUrl(d->frame->loader()->url());
786 Loads \a url into this frame.
788 \note The view remains the same until enough data has arrived to display the new \a url.
792 void QWebFrame::load(const QUrl &url)
794 load(QNetworkRequest(ensureAbsoluteUrl(url)));
803 \note The view remains the same until enough data has arrived to display the new \a url.
814 QUrl url = ensureAbsoluteUrl(req.url());
816 WebCore::ResourceRequest request(url);
1526 \fn void QWebFrame::urlChanged(const QUrl &url)
1528 This signal is emitted with the URL of the frame when the frame's title is
1529 received. The new URL is specified by \a url.
1531 \sa url()
1750 Returns the url to which the link points to.
1805 Returns the url of the image.