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_SETTINGS_CELLS_AUTOFILL_DATA_ITEM_H_ |
| 6 #define IOS_CHROME_BROWSER_UI_SETTINGS_CELLS_AUTOFILL_DATA_ITEM_H_ |
| 7 |
| 8 #import <UIKit/UIKit.h> |
| 9 |
| 10 #include <string> |
| 11 |
| 12 #import "ios/chrome/browser/ui/collection_view/cells/collection_view_item.h" |
| 13 #import "ios/third_party/material_components_ios/src/components/CollectionCells/
src/MaterialCollectionCells.h" |
| 14 |
| 15 // Item for autofill profile (address) or credit card. |
| 16 @interface AutofillDataItem : CollectionViewItem |
| 17 |
| 18 // Only deletable items will enter edit mode. |
| 19 @property(nonatomic, assign, getter=isDeletable) BOOL deletable; |
| 20 |
| 21 // The GUID used by the PersonalDataManager to identify data elements (e.g. |
| 22 // profiles and credit cards). |
| 23 @property(nonatomic, assign) std::string GUID; |
| 24 |
| 25 @property(nonatomic, copy) NSString* text; |
| 26 @property(nonatomic, copy) NSString* leadingDetailText; |
| 27 @property(nonatomic, copy) NSString* trailingDetailText; |
| 28 |
| 29 // The accessory type for the represented cell. |
| 30 @property(nonatomic) MDCCollectionViewCellAccessoryType accessoryType; |
| 31 |
| 32 @end |
| 33 |
| 34 // Cell for autofill data with two leading text labels and one trailing text |
| 35 // label. |
| 36 @interface AutofillDataCell : MDCCollectionViewCell |
| 37 |
| 38 @property(nonatomic, readonly, strong) UILabel* textLabel; |
| 39 @property(nonatomic, readonly, strong) UILabel* leadingDetailTextLabel; |
| 40 @property(nonatomic, readonly, strong) UILabel* trailingDetailTextLabel; |
| 41 |
| 42 @end |
| 43 |
| 44 #endif // IOS_CHROME_BROWSER_UI_SETTINGS_CELLS_AUTOFILL_DATA_ITEM_H_ |
OLD | NEW |