Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(360)

Side by Side Diff: ios/chrome/browser/ui/collection_view/cells/collection_view_text_item.h

Issue 2814793003: Adds accessoryType property to CollectionViewItem (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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"
12 11
13 // Collection view item to represent and configure a CollectionViewTextCell. 12 // Collection view item to represent and configure a CollectionViewTextCell.
14 @interface CollectionViewTextItem : CollectionViewItem 13 @interface CollectionViewTextItem : CollectionViewItem
15 14
16 // The accessory type for the represented cell.
17 @property(nonatomic) MDCCollectionViewCellAccessoryType accessoryType;
18
19 // The main text to display. 15 // The main text to display.
20 @property(nonatomic, nullable, copy) NSString* text; 16 @property(nonatomic, nullable, copy) NSString* text;
21 17
22 // The secondary text to display. 18 // The secondary text to display.
23 @property(nonatomic, nullable, copy) NSString* detailText; 19 @property(nonatomic, nullable, copy) NSString* detailText;
24 20
25 // The font of the main text. Default is the medium Roboto font of size 14. 21 // The font of the main text. Default is the medium Roboto font of size 14.
26 @property(nonatomic, null_resettable, copy) UIFont* textFont; 22 @property(nonatomic, null_resettable, copy) UIFont* textFont;
27 23
28 // The color of the main text. Default is the 900 tint color of the grey 24 // The color of the main text. Default is the 900 tint color of the grey
(...skipping 10 matching lines...) Expand all
39 // The color of the secondary text. Default is the 500 tint color of the grey 35 // The color of the secondary text. Default is the 500 tint color of the grey
40 // palette. 36 // palette.
41 @property(nonatomic, null_resettable, copy) UIColor* detailTextColor; 37 @property(nonatomic, null_resettable, copy) UIColor* detailTextColor;
42 38
43 // The maximum number of lines of the secondary text. Default is 1. 39 // The maximum number of lines of the secondary text. Default is 1.
44 @property(nonatomic, assign) NSInteger numberOfDetailTextLines; 40 @property(nonatomic, assign) NSInteger numberOfDetailTextLines;
45 41
46 @end 42 @end
47 43
48 #endif // IOS_CHROME_BROWSER_UI_COLLECTION_VIEW_CELLS_COLLECTION_VIEW_TEXT_ITEM _H_ 44 #endif // IOS_CHROME_BROWSER_UI_COLLECTION_VIEW_CELLS_COLLECTION_VIEW_TEXT_ITEM _H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698