Lines Matching defs:items

228   A list of items describing the pages that can be visited by going back can be
229 obtained by calling the backItems() function; similarly, items describing the
231 The total list of items is obtained with the items() function.
234 of a list. Arbitrary items in the history can be obtained with itemAt(), the total
235 number of items is given by count(), and the history can be cleared with the
258 \sa count(), items()
286 Returns a list of all items currently in the history.
290 QList<QWebHistoryItem> QWebHistory::items() const
292 const WebCore::HistoryItemVector &items = d->lst->entries();
295 for (unsigned i = 0; i < items.size(); ++i) {
296 QWebHistoryItemPrivate *priv = new QWebHistoryItemPrivate(items[i].get());
303 Returns the list of items in the backwards history list.
310 WebCore::HistoryItemVector items(maxItems);
311 d->lst->backListWithLimit(maxItems, items);
314 for (unsigned i = 0; i < items.size(); ++i) {
315 QWebHistoryItemPrivate *priv = new QWebHistoryItemPrivate(items[i].get());
322 Returns the list of items in the forward history list.
329 WebCore::HistoryItemVector items(maxItems);
330 d->lst->forwardListWithLimit(maxItems, items);
333 for (unsigned i = 0; i < items.size(); ++i) {
334 QWebHistoryItemPrivate *priv = new QWebHistoryItemPrivate(items[i].get());
455 Returns the total number of items in the history.
464 Returns the maximum number of items in the history.
475 Sets the maximum number of items in the history to \a count.
503 const WebCore::HistoryItemVector &items = d->lst->entries();
504 for (unsigned i = 0; i < items.size(); i++)
505 items[i].get()->saveState(target, version);