OLD | NEW |
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_AUTOFILL_CELLS_AUTOFILL_EDIT_ITEM_H_ | 5 #ifndef IOS_CHROME_BROWSER_UI_AUTOFILL_CELLS_AUTOFILL_EDIT_ITEM_H_ |
6 #define IOS_CHROME_BROWSER_UI_AUTOFILL_CELLS_AUTOFILL_EDIT_ITEM_H_ | 6 #define IOS_CHROME_BROWSER_UI_AUTOFILL_CELLS_AUTOFILL_EDIT_ITEM_H_ |
7 | 7 |
8 #import <UIKit/UIKit.h> | 8 #import <UIKit/UIKit.h> |
9 | 9 |
10 #import "ios/chrome/browser/ui/autofill/autofill_ui_type.h" | 10 #import "ios/chrome/browser/ui/autofill/autofill_ui_type.h" |
11 #import "ios/chrome/browser/ui/collection_view/cells/collection_view_item.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" | 12 #import "ios/third_party/material_components_ios/src/components/CollectionCells/
src/MaterialCollectionCells.h" |
13 | 13 |
14 // Item to represent and configure an AutofillEditItem. It features a label and | 14 // Item to represent and configure an AutofillEditItem. It features a label and |
15 // a text field. | 15 // a text field. |
16 @interface AutofillEditItem : CollectionViewItem | 16 @interface AutofillEditItem : CollectionViewItem |
17 | 17 |
18 // The name of the text field. | 18 // The name of the text field. |
19 @property(nonatomic, copy) NSString* textFieldName; | 19 @property(nonatomic, copy) NSString* textFieldName; |
20 | 20 |
21 // The value of the text field. | 21 // The value of the text field. |
22 @property(nonatomic, copy) NSString* textFieldValue; | 22 @property(nonatomic, copy) NSString* textFieldValue; |
23 | 23 |
24 // An image corresponding to the type of the credit card, if any. | 24 // An image corresponding to the type of the credit card, if any. |
25 @property(nonatomic, copy) UIImage* cardTypeIcon; | 25 @property(nonatomic, copy) UIImage* cardTypeIcon; |
26 | 26 |
| 27 // The inputView for the text field, if any. |
| 28 @property(nonatomic, strong) UIPickerView* inputView; |
| 29 |
27 // The field type this item is describing. | 30 // The field type this item is describing. |
28 @property(nonatomic, assign) AutofillUIType autofillUIType; | 31 @property(nonatomic, assign) AutofillUIType autofillUIType; |
29 | 32 |
30 // Whether this field is required. If YES, an "*" is appended to the name of the | 33 // Whether this field is required. If YES, an "*" is appended to the name of the |
31 // text field to indicate that the field is required. It is also used for | 34 // text field to indicate that the field is required. It is also used for |
32 // validation purposes. | 35 // validation purposes. |
33 @property(nonatomic, getter=isRequired) BOOL required; | 36 @property(nonatomic, getter=isRequired) BOOL required; |
34 | 37 |
35 // Whether the text field is enabled for editing. | 38 // Whether the text field is enabled for editing. |
36 @property(nonatomic, getter=isTextFieldEnabled) BOOL textFieldEnabled; | 39 @property(nonatomic, getter=isTextFieldEnabled) BOOL textFieldEnabled; |
(...skipping 10 matching lines...) Expand all Loading... |
47 // Text field at the trailing edge of the cell. It displays the item's | 50 // Text field at the trailing edge of the cell. It displays the item's |
48 // |textFieldValue|. | 51 // |textFieldValue|. |
49 @property(nonatomic, readonly, strong) UITextField* textField; | 52 @property(nonatomic, readonly, strong) UITextField* textField; |
50 | 53 |
51 // UIImageView containing the credit card type icon. | 54 // UIImageView containing the credit card type icon. |
52 @property(nonatomic, readonly, strong) UIImageView* cardTypeIconView; | 55 @property(nonatomic, readonly, strong) UIImageView* cardTypeIconView; |
53 | 56 |
54 @end | 57 @end |
55 | 58 |
56 #endif // IOS_CHROME_BROWSER_UI_AUTOFILL_CELLS_AUTOFILL_EDIT_ITEM_H_ | 59 #endif // IOS_CHROME_BROWSER_UI_AUTOFILL_CELLS_AUTOFILL_EDIT_ITEM_H_ |
OLD | NEW |