OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_COLLECTION_VIEW_CELLS_COLLECTION_VIEW_TEXT_ITEM_H_ | 5 #ifndef IOS_CHROME_BROWSER_UI_COLLECTION_VIEW_CELLS_COLLECTION_VIEW_TEXT_ITEM_H_ |
6 #define IOS_CHROME_BROWSER_UI_COLLECTION_VIEW_CELLS_COLLECTION_VIEW_TEXT_ITEM_H_ | 6 #define IOS_CHROME_BROWSER_UI_COLLECTION_VIEW_CELLS_COLLECTION_VIEW_TEXT_ITEM_H_ |
7 | 7 |
8 #import <UIKit/UIKit.h> | 8 #import <UIKit/UIKit.h> |
9 | 9 |
10 #import "ios/chrome/browser/ui/collection_view/cells/collection_view_item.h" | 10 #import "ios/chrome/browser/ui/collection_view/cells/collection_view_item.h" |
11 #import "ios/third_party/material_components_ios/src/components/CollectionCells/
src/MaterialCollectionCells.h" | 11 #import "ios/third_party/material_components_ios/src/components/CollectionCells/
src/MaterialCollectionCells.h" |
12 | 12 |
13 // Collection view item to represent and configure a CollectionViewTextCell. | 13 // Collection view item to represent and configure a CollectionViewTextCell. |
14 @interface CollectionViewTextItem : CollectionViewItem | 14 @interface CollectionViewTextItem : CollectionViewItem |
15 | 15 |
16 // The accessory type for the represented cell. | 16 // The accessory type for the represented cell. |
17 @property(nonatomic) MDCCollectionViewCellAccessoryType accessoryType; | 17 @property(nonatomic) MDCCollectionViewCellAccessoryType accessoryType; |
18 | 18 |
19 // The main text to display. | 19 // The main text to display. |
20 @property(nonatomic, nullable, copy) NSString* text; | 20 @property(nonatomic, copy) NSString* text; |
21 | 21 |
22 // The secondary text to display. | 22 // The secondary text to display. |
23 @property(nonatomic, nullable, copy) NSString* detailText; | 23 @property(nonatomic, copy) NSString* detailText; |
24 | |
25 // The font of the main text. Default is the medium Roboto font of size 14. | |
26 @property(nonatomic, null_resettable, copy) UIFont* textFont; | |
27 | |
28 // The color of the main text. Default is the 900 tint color of the grey | |
29 // palette. | |
30 @property(nonatomic, null_resettable, copy) UIColor* textColor; | |
31 | 24 |
32 // The maximum number of lines of the main text. Default is 1. | 25 // The maximum number of lines of the main text. Default is 1. |
33 @property(nonatomic, assign) NSInteger numberOfTextLines; | 26 @property(nonatomic, assign) NSInteger numberOfTextLines; |
34 | 27 |
35 // The font of the secondary text. Default is the regular Roboto font of size | |
36 // 14. | |
37 @property(nonatomic, null_resettable, copy) UIFont* detailTextFont; | |
38 | |
39 // The color of the secondary text. Default is the 500 tint color of the grey | |
40 // palette. | |
41 @property(nonatomic, null_resettable, copy) UIColor* detailTextColor; | |
42 | |
43 // The maximum number of lines of the secondary text. Default is 1. | 28 // The maximum number of lines of the secondary text. Default is 1. |
44 @property(nonatomic, assign) NSInteger numberOfDetailTextLines; | 29 @property(nonatomic, assign) NSInteger numberOfDetailTextLines; |
45 | 30 |
46 @end | 31 @end |
47 | 32 |
48 #endif // IOS_CHROME_BROWSER_UI_COLLECTION_VIEW_CELLS_COLLECTION_VIEW_TEXT_ITEM
_H_ | 33 #endif // IOS_CHROME_BROWSER_UI_COLLECTION_VIEW_CELLS_COLLECTION_VIEW_TEXT_ITEM
_H_ |
OLD | NEW |