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

Side by Side Diff: ios/chrome/browser/ui/collection_view/cells/collection_view_account_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_ACCOUNT_ITEM _H_ 5 #ifndef IOS_CHROME_BROWSER_UI_COLLECTION_VIEW_CELLS_COLLECTION_VIEW_ACCOUNT_ITEM _H_
6 #define IOS_CHROME_BROWSER_UI_COLLECTION_VIEW_CELLS_COLLECTION_VIEW_ACCOUNT_ITEM _H_ 6 #define IOS_CHROME_BROWSER_UI_COLLECTION_VIEW_CELLS_COLLECTION_VIEW_ACCOUNT_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 @class ChromeIdentity; 13 @class ChromeIdentity;
14 14
15 // Item for account avatar, used everywhere an account cell is shown. 15 // Item for account avatar, used everywhere an account cell is shown.
16 @interface CollectionViewAccountItem : CollectionViewItem 16 @interface CollectionViewAccountItem : CollectionViewItem
17 17
18 @property(nonatomic, strong) UIImage* image; 18 @property(nonatomic, strong) UIImage* image;
19 @property(nonatomic, copy) NSString* text; 19 @property(nonatomic, copy) NSString* text;
20 @property(nonatomic, copy) NSString* detailText; 20 @property(nonatomic, copy) NSString* detailText;
21 @property(nonatomic, assign) BOOL shouldDisplayError; 21 @property(nonatomic, assign) BOOL shouldDisplayError;
22 @property(nonatomic, strong) ChromeIdentity* chromeIdentity; 22 @property(nonatomic, strong) ChromeIdentity* chromeIdentity;
23 @property(nonatomic, assign, getter=isEnabled) BOOL enabled; 23 @property(nonatomic, assign, getter=isEnabled) BOOL enabled;
24 24
25 // The accessory type for the represented cell.
26 @property(nonatomic) MDCCollectionViewCellAccessoryType accessoryType;
27
28 @end 25 @end
29 26
30 // Cell for account avatar with a leading avatar imageView, title text label, 27 // Cell for account avatar with a leading avatar imageView, title text label,
31 // and detail text label. This looks very similar to the 28 // and detail text label. This looks very similar to the
32 // MDCCollectionViewDetailCell, except that it applies a circular mask to the 29 // MDCCollectionViewDetailCell, except that it applies a circular mask to the
33 // imageView. The imageView is vertical-centered and leading aligned. 30 // imageView. The imageView is vertical-centered and leading aligned.
34 // If item/cell is disabled the image and text alpha will be set to 0.5 and 31 // If item/cell is disabled the image and text alpha will be set to 0.5 and
35 // user interaction will be disabled. 32 // user interaction will be disabled.
36 @interface CollectionViewAccountCell : MDCCollectionViewCell 33 @interface CollectionViewAccountCell : MDCCollectionViewCell
37 34
38 // Rounded image used for the account user picture. 35 // Rounded image used for the account user picture.
39 @property(nonatomic, readonly, strong) UIImageView* imageView; 36 @property(nonatomic, readonly, strong) UIImageView* imageView;
40 // Cell title. 37 // Cell title.
41 @property(nonatomic, readonly, strong) UILabel* textLabel; 38 @property(nonatomic, readonly, strong) UILabel* textLabel;
42 // Cell subtitle. 39 // Cell subtitle.
43 @property(nonatomic, readonly, strong) UILabel* detailTextLabel; 40 @property(nonatomic, readonly, strong) UILabel* detailTextLabel;
44 // Error icon that will be displayed on the left side of the cell. 41 // Error icon that will be displayed on the left side of the cell.
45 @property(nonatomic, readonly, strong) UIImageView* errorIcon; 42 @property(nonatomic, readonly, strong) UIImageView* errorIcon;
46 43
47 @end 44 @end
48 45
49 #endif // IOS_CHROME_BROWSER_UI_COLLECTION_VIEW_CELLS_COLLECTION_VIEW_ACCOUNT_I TEM_H_ 46 #endif // IOS_CHROME_BROWSER_UI_COLLECTION_VIEW_CELLS_COLLECTION_VIEW_ACCOUNT_I TEM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698