| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CELLS_CONTENT_SUGGESTIONS_ITEM
_H_ | 5 #ifndef IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CELLS_CONTENT_SUGGESTIONS_ITEM
_H_ |
| 6 #define IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CELLS_CONTENT_SUGGESTIONS_ITEM
_H_ | 6 #define IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CELLS_CONTENT_SUGGESTIONS_ITEM
_H_ |
| 7 | 7 |
| 8 #import "ios/chrome/browser/ui/collection_view/cells/collection_view_item.h" | 8 #import "ios/chrome/browser/ui/collection_view/cells/collection_view_item.h" |
| 9 #import "ios/chrome/browser/ui/content_suggestions/identifier/content_suggestion
_identifier.h" | 9 #import "ios/chrome/browser/ui/content_suggestions/cells/suggested_content.h" |
| 10 #import "ios/third_party/material_components_ios/src/components/CollectionCells/
src/MaterialCollectionCells.h" | 10 #import "ios/third_party/material_components_ios/src/components/CollectionCells/
src/MaterialCollectionCells.h" |
| 11 | 11 |
| 12 namespace base { | 12 namespace base { |
| 13 class Time; | 13 class Time; |
| 14 } | 14 } |
| 15 | 15 |
| 16 @class ContentSuggestionsItem; | 16 @class ContentSuggestionsItem; |
| 17 @class FaviconAttributes; | 17 @class FaviconAttributes; |
| 18 @class FaviconViewNew; | 18 @class FaviconViewNew; |
| 19 class GURL; | 19 class GURL; |
| 20 | 20 |
| 21 // Delegate for a ContentSuggestionsItem. | |
| 22 @protocol ContentSuggestionsItemDelegate | |
| 23 | |
| 24 // Loads the image associated with this item. | |
| 25 - (void)loadImageForSuggestionItem:(ContentSuggestionsItem*)suggestionItem; | |
| 26 | |
| 27 @end | |
| 28 | |
| 29 // Item for an article in the suggestions. | 21 // Item for an article in the suggestions. |
| 30 @interface ContentSuggestionsItem | 22 @interface ContentSuggestionsItem : CollectionViewItem<SuggestedContent> |
| 31 : CollectionViewItem<ContentSuggestionIdentification> | |
| 32 | 23 |
| 33 // Initialize an article with a |title|, a |subtitle|, an |image| and the |url| | 24 // Initialize an article with a |title|, a |subtitle|, an |image| and the |url| |
| 34 // to the full article. |type| is the type of the item. | 25 // to the full article. |type| is the type of the item. |
| 35 - (instancetype)initWithType:(NSInteger)type | 26 - (instancetype)initWithType:(NSInteger)type |
| 36 title:(NSString*)title | 27 title:(NSString*)title |
| 37 subtitle:(NSString*)subtitle | 28 subtitle:(NSString*)subtitle |
| 38 delegate:(id<ContentSuggestionsItemDelegate>)delegate | |
| 39 url:(const GURL&)url NS_DESIGNATED_INITIALIZER; | 29 url:(const GURL&)url NS_DESIGNATED_INITIALIZER; |
| 40 | 30 |
| 41 - (instancetype)initWithType:(NSInteger)type NS_UNAVAILABLE; | 31 - (instancetype)initWithType:(NSInteger)type NS_UNAVAILABLE; |
| 42 | 32 |
| 43 @property(nonatomic, copy, readonly) NSString* title; | 33 @property(nonatomic, copy, readonly) NSString* title; |
| 44 @property(nonatomic, strong) UIImage* image; | |
| 45 @property(nonatomic, readonly, assign) GURL URL; | 34 @property(nonatomic, readonly, assign) GURL URL; |
| 46 @property(nonatomic, copy) NSString* publisher; | 35 @property(nonatomic, copy) NSString* publisher; |
| 47 @property(nonatomic, assign) base::Time publishDate; | 36 @property(nonatomic, assign) base::Time publishDate; |
| 48 @property(nonatomic, weak) id<ContentSuggestionsItemDelegate> delegate; | |
| 49 // Attributes for favicon. | |
| 50 @property(nonatomic, strong) FaviconAttributes* attributes; | |
| 51 // Whether the suggestion has an image associated. | 37 // Whether the suggestion has an image associated. |
| 52 @property(nonatomic, assign) BOOL hasImage; | 38 @property(nonatomic, assign) BOOL hasImage; |
| 53 // Whether the suggestion is available offline. If YES, an icon is displayed. | 39 // Whether the suggestion is available offline. If YES, an icon is displayed. |
| 54 @property(nonatomic, assign) BOOL availableOffline; | 40 @property(nonatomic, assign) BOOL availableOffline; |
| 55 | 41 |
| 56 @end | 42 @end |
| 57 | 43 |
| 58 // Corresponding cell for an article in the suggestions. | 44 // Corresponding cell for an article in the suggestions. |
| 59 @interface ContentSuggestionsCell : MDCCollectionViewCell | 45 @interface ContentSuggestionsCell : MDCCollectionViewCell |
| 60 | 46 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 73 date:(base::Time)publishDate | 59 date:(base::Time)publishDate |
| 74 offlineAvailability:(BOOL)availableOffline; | 60 offlineAvailability:(BOOL)availableOffline; |
| 75 | 61 |
| 76 // Setst the subtitle text. If |subtitle| is nil, the space taken by the | 62 // Setst the subtitle text. If |subtitle| is nil, the space taken by the |
| 77 // subtitle is removed. | 63 // subtitle is removed. |
| 78 - (void)setSubtitleText:(NSString*)subtitle; | 64 - (void)setSubtitleText:(NSString*)subtitle; |
| 79 | 65 |
| 80 @end | 66 @end |
| 81 | 67 |
| 82 #endif // IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CELLS_CONTENT_SUGGESTIONS_I
TEM_H_ | 68 #endif // IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CELLS_CONTENT_SUGGESTIONS_I
TEM_H_ |
| OLD | NEW |