webkit
2cdf99a9e3038c7e01b3c37e8ad903ecbe5eecf1
https://github.com/WebKit/webkit
|
#import <WebHistoryItem.h>
Instance Methods | |
(instancetype) | - initWithURLString:title:lastVisitedTimeInterval: |
(virtual HRESULT STDMETHODCALLTYPE) | - QueryInterface |
(virtual ULONG STDMETHODCALLTYPE) | - AddRef |
(virtual ULONG STDMETHODCALLTYPE) | - Release |
(virtual HRESULT STDMETHODCALLTYPE) | - initWithURLString |
(virtual HRESULT STDMETHODCALLTYPE) | - originalURLString |
(virtual HRESULT STDMETHODCALLTYPE) | - URLString |
(virtual HRESULT STDMETHODCALLTYPE) | - title |
(virtual HRESULT STDMETHODCALLTYPE) | - lastVisitedTimeInterval |
(virtual HRESULT STDMETHODCALLTYPE) | - setAlternateTitle |
(virtual HRESULT STDMETHODCALLTYPE) | - alternateTitle |
(virtual HRESULT STDMETHODCALLTYPE) | - icon |
(virtual HRESULT STDMETHODCALLTYPE) | - initFromDictionaryRepresentation |
(virtual HRESULT STDMETHODCALLTYPE) | - dictionaryRepresentation |
(virtual HRESULT STDMETHODCALLTYPE) | - visitCount |
(virtual HRESULT STDMETHODCALLTYPE) | - setVisitCount |
(virtual HRESULT STDMETHODCALLTYPE) | - hasURLString |
(virtual HRESULT STDMETHODCALLTYPE) | - mergeAutoCompleteHints |
(virtual HRESULT STDMETHODCALLTYPE) | - setLastVisitedTimeInterval |
(virtual HRESULT STDMETHODCALLTYPE) | - setTitle |
(virtual HRESULT STDMETHODCALLTYPE) | - RSSFeedReferrer |
(virtual HRESULT STDMETHODCALLTYPE) | - setRSSFeedReferrer |
(virtual HRESULT STDMETHODCALLTYPE) | - hasPageCache |
(virtual HRESULT STDMETHODCALLTYPE) | - setHasPageCache |
(virtual HRESULT STDMETHODCALLTYPE) | - target |
(virtual HRESULT STDMETHODCALLTYPE) | - isTargetItem |
(virtual HRESULT STDMETHODCALLTYPE) | - children |
(virtual HRESULT STDMETHODCALLTYPE) | - lastVisitWasFailure |
(virtual HRESULT STDMETHODCALLTYPE) | - setLastVisitWasFailure |
(virtual HRESULT STDMETHODCALLTYPE) | - lastVisitWasHTTPNonGet |
(virtual HRESULT STDMETHODCALLTYPE) | - setLastVisitWasHTTPNonGet |
(virtual HRESULT STDMETHODCALLTYPE) | - redirectURLs |
(virtual HRESULT STDMETHODCALLTYPE) | - visitedWithTitle |
(virtual HRESULT STDMETHODCALLTYPE) | - getDailyVisitCounts |
(virtual HRESULT STDMETHODCALLTYPE) | - getWeeklyVisitCounts |
(virtual HRESULT STDMETHODCALLTYPE) | - recordInitialVisit |
(WebCore::HistoryItem *) | - historyItem |
(id) | - initWithURLString:title:displayTitle:lastVisitedTimeInterval: [implementation] |
(id) | - initFromDictionaryRepresentation: [implementation] |
(id) | - initWithWebCoreHistoryItem: [implementation] |
(void) | - setTitle: [implementation] |
(void) | - _visitedWithTitle: [implementation] |
Instance Methods inherited from IWebHistoryItem | |
HRESULT | initWithURLString ([in] BSTR urlString, [in] BSTR title, [in] DATE lastVisited) |
HRESULT | originalURLString ([out, retval] BSTR *url) |
HRESULT | URLString ([out, retval] BSTR *url) |
HRESULT | title ([out, retval] BSTR *pageTitle) |
HRESULT | lastVisitedTimeInterval ([out, retval] DATE *lastVisited) |
HRESULT | setAlternateTitle ([in] BSTR title) |
HRESULT | alternateTitle ([out, retval] BSTR *title) |
HRESULT | icon ([out, retval] HBITMAP *hBitmap) |
Class Methods | |
(static WebHistoryItem *) | + createInstance |
(static WebHistoryItem *) | + createInstance |
(WebHistoryItem *) | + entryWithURL: [implementation] |
Protected Member Functions | |
() | - WebHistoryItem |
() | - ~WebHistoryItem |
Protected Attributes | |
package WebHistoryItemPrivate * | _private |
ULONG | m_refCount { 0 } |
RefPtr< WebCore::HistoryItem > | m_historyItem |
WTF::String | m_alternateTitle |
Properties | |
NSString * | originalURLString |
NSString * | URLString |
NSString * | title |
NSTimeInterval | lastVisitedTimeInterval |
NSString * | alternateTitle |
NSImage * | icon |
WebHistoryItems are created by WebKit to represent pages visited. The WebBackForwardList and WebHistory classes both use WebHistoryItems to represent pages visited. With the exception of the displayTitle, the properties of WebHistoryItems are set by WebKit. WebHistoryItems are normally never created directly.
- WebHistoryItem | (PassRefPtr< WebCore::HistoryItem >) | historyItem |
- (HRESULT) children | (unsigned *) | childCount | |
(SAFEARRAY **) | children | ||
Implements IWebHistoryItemPrivate.
+ (WebHistoryItem *) createInstance |
+ (WebHistoryItem *) createInstance | (PassRefPtr< WebCore::HistoryItem >) | historyItem |
|
implementation |
- (HRESULT) getDailyVisitCounts | (_Out_ int *) | number | |
(__deref_out_opt int **) | counts | ||
- (HRESULT) getWeeklyVisitCounts | (_Out_ int *) | number | |
(__deref_out_opt int **) | counts | ||
- (HistoryItem *) historyItem | const |
- (HRESULT) icon | (__deref_opt_out HBITMAP *) | hBitmap |
|
implementation |
|
implementation |
- (instancetype) initWithURLString: | (NSString *) | URLString | |
title: | (NSString *) | title | |
lastVisitedTimeInterval: | (NSTimeInterval) | time | |
initWithURLString:title:lastVisitedTimeInterval:
URLString | The URL string for the item. |
title | The title to use for the item. This is normally the <title> of a page. |
time | The time used to indicate when the item was used. Initialize a new WebHistoryItem WebHistoryItems are normally created for you by the WebKit. You may use this method to prepopulate a WebBackForwardList, or create 'artificial' items to add to a WebBackForwardList. When first initialized the URLString and originalURLString will be the same. |
|
implementation |
- (HRESULT) lastVisitedTimeInterval | (_Out_ DATE *) | lastVisited |
- (HRESULT) mergeAutoCompleteHints | (_In_opt_ IWebHistoryItem *) |
- (HRESULT) recordInitialVisit |
Implements IWebHistoryItemPrivate.
- (HRESULT) redirectURLs | (_COM_Outptr_opt_ IEnumVARIANT **) | urls |
Implements IWebHistoryItemPrivate.
- (HRESULT) setLastVisitedTimeInterval | (DATE) | time |
Implements IWebHistoryItemPrivate.
Implements IWebHistoryItemPrivate.
Implements IWebHistoryItemPrivate.
- (HRESULT) setVisitCount | (int) | count |
Implements IWebHistoryItemPrivate.
- (HRESULT) visitCount | (_Out_ int *) | count |
|
protected |
|
protected |
|
protected |
|
protected |
|
readwritenonatomiccopy |
|
readnonatomicstrong |
|
readnonatomicassign |
|
readnonatomiccopy |
|
readnonatomiccopy |
|
readnonatomiccopy |