OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 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_ |
| 7 |
| 8 #import <UIKit/UIKit.h> |
| 9 |
| 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 |
| 13 @class ChromeIdentity; |
| 14 |
| 15 // Item for account avatar, used everywhere an account cell is shown. |
| 16 @interface CollectionViewAccountItem : CollectionViewItem |
| 17 |
| 18 @property(nonatomic, strong) UIImage* image; |
| 19 @property(nonatomic, copy) NSString* text; |
| 20 @property(nonatomic, copy) NSString* detailText; |
| 21 @property(nonatomic, assign) BOOL shouldDisplayError; |
| 22 @property(nonatomic, strong) ChromeIdentity* chromeIdentity; |
| 23 @property(nonatomic, assign, getter=isEnabled) BOOL enabled; |
| 24 |
| 25 // The accessory type for the represented cell. |
| 26 @property(nonatomic) MDCCollectionViewCellAccessoryType accessoryType; |
| 27 |
| 28 @end |
| 29 |
| 30 // Cell for account avatar with a leading avatar imageView, title text label, |
| 31 // and detail text label. This looks very similar to the |
| 32 // MDCCollectionViewDetailCell, except that it applies a circular mask to the |
| 33 // 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 |
| 35 // user interaction will be disabled. |
| 36 @interface CollectionViewAccountCell : MDCCollectionViewCell |
| 37 |
| 38 // Rounded image used for the account user picture. |
| 39 @property(nonatomic, readonly, strong) UIImageView* imageView; |
| 40 // Cell title. |
| 41 @property(nonatomic, readonly, strong) UILabel* textLabel; |
| 42 // Cell subtitle. |
| 43 @property(nonatomic, readonly, strong) UILabel* detailTextLabel; |
| 44 // Error icon that will be displayed on the left side of the cell. |
| 45 @property(nonatomic, readonly, strong) UIImageView* errorIcon; |
| 46 |
| 47 @end |
| 48 |
| 49 #endif // IOS_CHROME_BROWSER_UI_COLLECTION_VIEW_CELLS_COLLECTION_VIEW_ACCOUNT_I
TEM_H_ |
OLD | NEW |