Home | History | Annotate | Download | only in Api

Lines Matching refs:Page

30 #include "Page.h"
49 Each QWebHistoryItem instance represents an entry in the history stack of a Web page,
50 containing information about the page, its location, and when it was last visited.
52 The following table shows the properties of the page held by the history item, and
57 \row \o title() \o The page title.
58 \row \o url() \o The location of the page.
59 \row \o originalUrl() \o The URL used to access the page.
60 \row \o lastVisited() \o The date and time of the user's last visit to the page.
61 \row \o icon() \o The icon associated with the page that was provided by the server.
127 Returns the title of the page associated with the history item.
140 Returns the date and time that the page associated with the item was last visited.
230 pages ahead of the current page can be obtained with the forwardItems() function.
266 WebCore::Page* page = static_cast<WebCore::BackForwardListImpl*>(lst)->page();
267 if (page && page->groupPtr())
268 page->groupPtr()->removeVisitedLinks();
282 d->page()->updateNavigationActions();
363 corresponding page; i.e., goes back one history item.
370 WebCore::Page* page = static_cast<WebCore::BackForwardListImpl*>(d->lst)->page();
371 page->goToItem(d->lst->backItem(), WebCore::FrameLoadTypeIndexedBackForward);
377 corresponding page; i.e., goes forward one history item.
384 WebCore::Page* page = static_cast<WebCore::BackForwardListImpl*>(d->lst)->page();
385 page->goToItem(d->lst->forwardItem(), WebCore::FrameLoadTypeIndexedBackForward);
390 Sets the current item to be the specified \a item in the history and goes to the page.
396 WebCore::Page* page = static_cast<WebCore::BackForwardListImpl*>(d->lst)->page();
397 page->goToItem(item.d->item, WebCore::FrameLoadTypeIndexedBackForward);
545 static_cast<WebCore::BackForwardListImpl*>(history.d->lst)->page()->mainFrame()->loader()->history()->setCurrentItem(history.d->lst->entries()[currentIndex].get());
550 d->page()->updateNavigationActions();
555 QWebPagePrivate* QWebHistoryPrivate::page()
557 return QWebFramePrivate::kit(static_cast<WebCore::BackForwardListImpl*>(lst)->page()->mainFrame())->page()->handle();