Home
last modified time | relevance | path

Searched refs:QWebHistoryItem (Results 1 – 15 of 15) sorted by relevance

/external/webkit/Source/WebKit/qt/Api/
Dqwebhistory.cpp77 QWebHistoryItem::QWebHistoryItem(const QWebHistoryItem &other) in QWebHistoryItem() function in QWebHistoryItem
87 QWebHistoryItem &QWebHistoryItem::operator=(const QWebHistoryItem &other) in operator =()
96 QWebHistoryItem::~QWebHistoryItem() in ~QWebHistoryItem()
105 QUrl QWebHistoryItem::originalUrl() const in originalUrl()
118 QUrl QWebHistoryItem::url() const in url()
131 QString QWebHistoryItem::title() const in title()
144 QDateTime QWebHistoryItem::lastVisited() const in lastVisited()
158 QIcon QWebHistoryItem::icon() const in icon()
172 QVariant QWebHistoryItem::userData() const in userData()
188 void QWebHistoryItem::setUserData(const QVariant& userData) in setUserData()
[all …]
Dqwebhistory.h39 class QWEBKIT_EXPORT QWebHistoryItem {
41 QWebHistoryItem(const QWebHistoryItem &other);
42 QWebHistoryItem &operator=(const QWebHistoryItem &other);
43 ~QWebHistoryItem();
59 QWebHistoryItem(QWebHistoryItemPrivate *priv);
76 QList<QWebHistoryItem> items() const;
77 QList<QWebHistoryItem> backItems(int maxItems) const;
78 QList<QWebHistoryItem> forwardItems(int maxItems) const;
85 void goToItem(const QWebHistoryItem &item);
87 QWebHistoryItem backItem() const;
[all …]
Dqwebhistory_p.h32 static QExplicitlySharedDataPointer<QWebHistoryItemPrivate> get(QWebHistoryItem* q) in get()
48 static WebCore::HistoryItem* core(const QWebHistoryItem* q);
Dqwebpage.h46 class QWebHistoryItem; variable
398 void saveFrameStateRequested(QWebFrame* frame, QWebHistoryItem* item);
Dqwebframe.h48 class QWebHistoryItem; variable
/external/webkit/Source/WebKit/qt/WebCoreSupport/
DDumpRenderTreeSupportQt.h52 class QWebHistoryItem; variable
176 static QMap<QString, QWebHistoryItem> getChildHistoryItems(const QWebHistoryItem& historyItem); in Q_DECLARE_METATYPE()
177 static bool isTargetItem(const QWebHistoryItem& historyItem); in Q_DECLARE_METATYPE()
178 static QString historyItemTarget(const QWebHistoryItem& historyItem); in Q_DECLARE_METATYPE()
DDumpRenderTreeSupportQt.cpp837 bool DumpRenderTreeSupportQt::isTargetItem(const QWebHistoryItem& historyItem) in isTargetItem()
839 QWebHistoryItem it = historyItem; in isTargetItem()
845 QString DumpRenderTreeSupportQt::historyItemTarget(const QWebHistoryItem& historyItem) in historyItemTarget()
847 QWebHistoryItem it = historyItem; in historyItemTarget()
851 QMap<QString, QWebHistoryItem> DumpRenderTreeSupportQt::getChildHistoryItems(const QWebHistoryItem&… in getChildHistoryItems()
853 QWebHistoryItem it = historyItem; in getChildHistoryItems()
858 QMap<QString, QWebHistoryItem> kids; in getChildHistoryItems()
860 QWebHistoryItem kid(new QWebHistoryItemPrivate(children[i].get())); in getChildHistoryItems()
DFrameLoaderClientQt.cpp882 QWebHistoryItem historyItem(new QWebHistoryItemPrivate(item)); in saveViewStateToItem()
/external/webkit/Source/WebKit/qt/tests/qwebhistory/
Dtst_qwebhistory.cpp172 QWebHistoryItem current = hist->currentItem(); in goToItem()
188 QList<QWebHistoryItem> items = hist->items(); in items()
221 QList<QWebHistoryItem> items = hist->items(); in serialize_1()
268 QWebHistoryItem a = hist->currentItem(); in serialize_3()
285 QWebHistoryItem b = hist->currentItem(); in serialize_3()
/external/webkit/Source/WebKit/qt/symbian/bwins/
DQtWebKitu.def17 …??0QWebHistoryItem@@AAE@PAVQWebHistoryItemPrivate@@@Z @ 16 NONAME ; QWebHistoryItem::QWebHistoryIt…
18 …??0QWebHistoryItem@@QAE@ABV0@@Z @ 17 NONAME ; QWebHistoryItem::QWebHistoryItem(class QWebHistoryIt…
42 ??1QWebHistoryItem@@QAE@XZ @ 41 NONAME ; QWebHistoryItem::~QWebHistoryItem(void)
55 …??4QWebHistoryItem@@QAEAAV0@ABV0@@Z @ 54 NONAME ; class QWebHistoryItem & QWebHistoryItem::operato…
99 …?backItem@QWebHistory@@QBE?AVQWebHistoryItem@@XZ @ 98 NONAME ; class QWebHistoryItem QWebHistory::…
100 …BE?AV?$QList@VQWebHistoryItem@@@@H@Z @ 99 NONAME ; class QList<class QWebHistoryItem> QWebHistory:…
130 …?currentItem@QWebHistory@@QBE?AVQWebHistoryItem@@XZ @ 129 NONAME ; class QWebHistoryItem QWebHisto…
194 …?forwardItem@QWebHistory@@QBE?AVQWebHistoryItem@@XZ @ 193 NONAME ; class QWebHistoryItem QWebHisto…
195 …E?AV?$QList@VQWebHistoryItem@@@@H@Z @ 194 NONAME ; class QList<class QWebHistoryItem> QWebHistory:…
213 …QAEXABVQWebHistoryItem@@@Z @ 212 NONAME ; void QWebHistory::goToItem(class QWebHistoryItem const &)
[all …]
/external/webkit/Tools/DumpRenderTree/qt/
DDumpRenderTreeQt.cpp840 static QString dumpHistoryItem(const QWebHistoryItem& item, int indent, bool current) in dumpHistoryItem()
875 QMap<QString, QWebHistoryItem> children = DumpRenderTreeSupportQt::getChildHistoryItems(item); in dumpHistoryItem()
876 foreach (QWebHistoryItem item, children) in dumpHistoryItem()
895 foreach (const QWebHistoryItem item, history->backItems(maxItems)) { in dumpBackForwardList()
901 QWebHistoryItem item = history->currentItem(); in dumpBackForwardList()
905 foreach (const QWebHistoryItem item, history->forwardItems(maxItems)) { in dumpBackForwardList()
/external/webkit/Source/WebKit/qt/
DChangeLog-2011-02-163191 (QWebHistoryItem::originalUrl):
3192 (QWebHistoryItem::url):
15588 Explain the implications in the QWebHistoryItem documentation, and get rid
16765 New autotests that test QWebHistory and QWebHistoryItem serialization.
16797 Returns an invalid QWebHistoryItem if the index is out of range.
19808 Add userData() and setUserData() to QWebHistoryItem.
19814 Small cleanup by Simon (docs and forward declaration of QWebHistoryItem in qwebframe.h)
19818 (QWebHistoryItem::userData):
19819 (QWebHistoryItem::setUserData):
19892 (QWebHistoryItem::originalUrl):
[all …]
DChangeLog1163 (QWebHistoryItem::icon):
1249 (QWebHistoryItem::icon): Use IconDatabase directly.
/external/webkit/Source/WebKit/qt/tests/qwebpage/
Dtst_qwebpage.cpp516 QVERIFY(::waitForSignal(m_page, SIGNAL(saveFrameStateRequested(QWebFrame*,QWebHistoryItem*)))); in modified()
/external/webkit/Source/WebCore/
DChangeLog-2010-01-2993757 New autotests that test QWebHistory and QWebHistoryItem serialization.