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_EDIT_ITEM_H_ |
| 6 #define IOS_CHROME_BROWSER_UI_SETTINGS_CELLS_AUTOFILL_EDIT_ITEM_H_ |
| 7 |
| 8 #import <UIKit/UIKit.h> |
| 9 |
| 10 #include "components/autofill/core/browser/autofill_profile.h" |
| 11 #import "ios/chrome/browser/ui/collection_view/cells/collection_view_item.h" |
| 12 #import "ios/third_party/material_components_ios/src/components/CollectionCells/
src/MaterialCollectionCells.h" |
| 13 |
| 14 // Item to represent and configure an AutofillEditItem. It features a label and |
| 15 // a text field. |
| 16 @interface AutofillEditItem : CollectionViewItem |
| 17 |
| 18 // The name of the text field. |
| 19 @property(nonatomic, copy) NSString* textFieldName; |
| 20 |
| 21 // The value of the text field. |
| 22 @property(nonatomic, copy) NSString* textFieldValue; |
| 23 |
| 24 // The field type this item is describing. |
| 25 @property(nonatomic, assign) autofill::ServerFieldType autofillType; |
| 26 |
| 27 // Whether the text field is enabled for editing. |
| 28 @property(nonatomic, getter=isTextFieldEnabled) BOOL textFieldEnabled; |
| 29 |
| 30 @end |
| 31 |
| 32 // AutofillEditCell implements an MDCCollectionViewCell subclass containing a |
| 33 // label and a text field. |
| 34 @interface AutofillEditCell : MDCCollectionViewCell |
| 35 |
| 36 // Label at the leading edge of the cell. It displays the item's textFieldName. |
| 37 @property(nonatomic, strong) UILabel* textLabel; |
| 38 |
| 39 // Text field at the trailing edge of the cell. It displays the item's |
| 40 // |textFieldValue|. |
| 41 @property(nonatomic, readonly, strong) UITextField* textField; |
| 42 |
| 43 @end |
| 44 |
| 45 #endif // IOS_CHROME_BROWSER_UI_SETTINGS_CELLS_AUTOFILL_EDIT_ITEM_H_ |
OLD | NEW |