Home | History | Annotate | Download | only in Api

Lines Matching full:page

28 #include "Page.h"
46 Each QWebHistoryItem instance represents an entry in the history stack of a Web page,
47 containing information about the page, its location, and when it was last visited.
49 The following table shows the properties of the page held by the history item, and
54 \row \o title() \o The page title.
55 \row \o url() \o The location of the page.
56 \row \o originalUrl() \o The URL used to access the page.
57 \row \o lastVisited() \o The date and time of the user's last visit to the page.
58 \row \o icon() \o The icon associated with the page that was provided by the server.
124 Returns the title of the page associated with the history item.
137 Returns the date and time that the page associated with the item was last visited.
226 pages ahead of the current page can be obtained with the forwardItems() function.
262 WebCore::Page* page = lst->page();
263 if (page && page->groupPtr())
264 page->groupPtr()->removeVisitedLinks();
278 d->page()->updateNavigationActions();
359 corresponding page; i.e., goes back one history item.
367 WebCore::Page* page = d->lst->page();
368 page->goToItem(currentItem().d->item, WebCore::FrameLoadTypeIndexedBackForward);
374 corresponding page; i.e., goes forward one history item.
382 WebCore::Page* page = d->lst->page();
383 page->goToItem(currentItem().d->item, WebCore::FrameLoadTypeIndexedBackForward);
388 Sets the current item to be the specified \a item in the history and goes to the page.
395 WebCore::Page* page = d->lst->page();
396 page->goToItem(currentItem().d->item, WebCore::FrameLoadTypeIndexedBackForward);
547 d->page()->updateNavigationActions();
552 QWebPagePrivate* QWebHistoryPrivate::page()
554 return QWebFramePrivate::kit(lst->page()->mainFrame())->page()->handle();