webkit  2cdf99a9e3038c7e01b3c37e8ad903ecbe5eecf1
https://github.com/WebKit/webkit
WebHistoryItem.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2003 Apple Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  *
8  * 1. Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of Apple Inc. ("Apple") nor the names of
14  * its contributors may be used to endorse or promote products derived
15  * from this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
18  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20  * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
21  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 
29 #import <Foundation/Foundation.h>
30 
31 #if !TARGET_OS_IPHONE
32 #import <AppKit/AppKit.h>
33 #endif
34 
36 @class NSURL;
37 
38 /*
39  @discussion Notification sent when history item is modified.
40  @constant WebHistoryItemChanged Posted from whenever the value of
41  either the item's title, alternate title, url strings, or last visited interval
42  changes. The userInfo will be nil.
43 */
45 
53 @interface WebHistoryItem : NSObject <NSCopying>
54 {
55 @package
56  WebHistoryItemPrivate *_private;
57 }
58 
70 - (instancetype)initWithURLString:(NSString *)URLString title:(NSString *)title lastVisitedTimeInterval:(NSTimeInterval)time;
71 
77 @property (nonatomic, readonly, copy) NSString *originalURLString;
78 
85 @property (nonatomic, readonly, copy) NSString *URLString;
86 
87 
94 @property (nonatomic, readonly, copy) NSString *title;
95 
102 @property (nonatomic, readonly) NSTimeInterval lastVisitedTimeInterval;
104 /*
105  @property alternateTitle
106  @abstract A title that may be used by the client to display this item.
107 */
108 @property (nonatomic, copy) NSString *alternateTitle;
110 #if !TARGET_OS_IPHONE
111 
116 @property (nonatomic, readonly, strong) NSImage *icon;
117 #endif
118 
119 @end
double NSTimeInterval
Definition: WebCoreSystemInterface.h:57
OBJC_CLASS NSImage
Definition: WebCoreSystemInterface.h:102
NSImage * icon
Definition: WebHistoryItem.h:117
OBJC_CLASS NSURL
Definition: WebCoreSystemInterface.h:108
Definition: interfaces.idl:200
NSString * alternateTitle
Definition: WebHistoryItem.h:109
struct NSString NSString
Definition: WebCoreNSStringExtras.h:35
Definition: WebHistoryItem.h:53
NSString * WebHistoryItemChangedNotification
Definition: WebHistoryItem.mm:86
virtual HRESULT STDMETHODCALLTYPE initWithURLString(_In_ BSTR urlString, _In_ BSTR title, DATE lastVisited)
Definition: WebHistoryItem.cpp:408
NSString * originalURLString
Definition: WebHistoryItem.h:78
Definition: WebHistoryItem.mm:90
NSTimeInterval lastVisitedTimeInterval
Definition: WebHistoryItem.h:103