| 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" |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 @property(nonatomic, assign) AutofillUIType autofillUIType; | 31 @property(nonatomic, assign) AutofillUIType autofillUIType; |
| 32 | 32 |
| 33 // 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 |
| 34 // 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 |
| 35 // validation purposes. | 35 // validation purposes. |
| 36 @property(nonatomic, getter=isRequired) BOOL required; | 36 @property(nonatomic, getter=isRequired) BOOL required; |
| 37 | 37 |
| 38 // Whether the text field is enabled for editing. | 38 // Whether the text field is enabled for editing. |
| 39 @property(nonatomic, getter=isTextFieldEnabled) BOOL textFieldEnabled; | 39 @property(nonatomic, getter=isTextFieldEnabled) BOOL textFieldEnabled; |
| 40 | 40 |
| 41 // Controls the display of the return key when the keyboard is displaying. |
| 42 @property(nonatomic, assign) UIReturnKeyType returnKeyType; |
| 43 |
| 44 // Keyboard type to be displayed when the text field becomes first responder. |
| 45 @property(nonatomic, assign) UIKeyboardType keyboardType; |
| 46 |
| 47 // Controls autocapitalization behavior of the text field. |
| 48 @property(nonatomic, assign) |
| 49 UITextAutocapitalizationType autoCapitalizationType; |
| 50 |
| 41 @end | 51 @end |
| 42 | 52 |
| 43 // AutofillEditCell implements an MDCCollectionViewCell subclass containing a | 53 // AutofillEditCell implements an MDCCollectionViewCell subclass containing a |
| 44 // label and a text field. | 54 // label and a text field. |
| 45 @interface AutofillEditCell : MDCCollectionViewCell | 55 @interface AutofillEditCell : MDCCollectionViewCell |
| 46 | 56 |
| 47 // Label at the leading edge of the cell. It displays the item's textFieldName. | 57 // Label at the leading edge of the cell. It displays the item's textFieldName. |
| 48 @property(nonatomic, strong) UILabel* textLabel; | 58 @property(nonatomic, strong) UILabel* textLabel; |
| 49 | 59 |
| 50 // Text field at the trailing edge of the cell. It displays the item's | 60 // Text field at the trailing edge of the cell. It displays the item's |
| 51 // |textFieldValue|. | 61 // |textFieldValue|. |
| 52 @property(nonatomic, readonly, strong) UITextField* textField; | 62 @property(nonatomic, readonly, strong) UITextField* textField; |
| 53 | 63 |
| 54 // UIImageView containing the icon identifying |textField| or its current value. | 64 // UIImageView containing the icon identifying |textField| or its current value. |
| 55 @property(nonatomic, readonly, strong) UIImageView* identifyingIconView; | 65 @property(nonatomic, readonly, strong) UIImageView* identifyingIconView; |
| 56 | 66 |
| 57 @end | 67 @end |
| 58 | 68 |
| 59 #endif // IOS_CHROME_BROWSER_UI_AUTOFILL_CELLS_AUTOFILL_EDIT_ITEM_H_ | 69 #endif // IOS_CHROME_BROWSER_UI_AUTOFILL_CELLS_AUTOFILL_EDIT_ITEM_H_ |
| OLD | NEW |