Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Side by Side Diff: ios/chrome/browser/ui/settings/cells/autofill_edit_item.h

Issue 2744823003: [Payment Request] Generic edit form (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_SETTINGS_CELLS_AUTOFILL_EDIT_ITEM_H_ 5 #ifndef IOS_CHROME_BROWSER_UI_SETTINGS_CELLS_AUTOFILL_EDIT_ITEM_H_
6 #define IOS_CHROME_BROWSER_UI_SETTINGS_CELLS_AUTOFILL_EDIT_ITEM_H_ 6 #define IOS_CHROME_BROWSER_UI_SETTINGS_CELLS_AUTOFILL_EDIT_ITEM_H_
lpromero 2017/03/13 16:54:09 This file should probably be repurposed for more g
Moe 2017/03/16 01:35:32 I agree. This and autofill_edit_accessory_view.h.
7 7
8 #import <UIKit/UIKit.h> 8 #import <UIKit/UIKit.h>
9 9
10 #include "components/autofill/core/browser/autofill_profile.h" 10 #include "components/autofill/core/browser/autofill_profile.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 field type this item is describing. 27 // The field type this item is describing.
28 @property(nonatomic, assign) autofill::ServerFieldType autofillType; 28 @property(nonatomic, assign) autofill::ServerFieldType autofillType;
29 29
30 // Whether this field is required. Used for validation.
31 @property(nonatomic, getter=isRequired) BOOL required;
32
30 // Whether the text field is enabled for editing. 33 // Whether the text field is enabled for editing.
31 @property(nonatomic, getter=isTextFieldEnabled) BOOL textFieldEnabled; 34 @property(nonatomic, getter=isTextFieldEnabled) BOOL textFieldEnabled;
32 35
33 @end 36 @end
34 37
35 // AutofillEditCell implements an MDCCollectionViewCell subclass containing a 38 // AutofillEditCell implements an MDCCollectionViewCell subclass containing a
36 // label and a text field. 39 // label and a text field.
37 @interface AutofillEditCell : MDCCollectionViewCell 40 @interface AutofillEditCell : MDCCollectionViewCell
38 41
39 // Label at the leading edge of the cell. It displays the item's textFieldName. 42 // Label at the leading edge of the cell. It displays the item's textFieldName.
40 @property(nonatomic, strong) UILabel* textLabel; 43 @property(nonatomic, strong) UILabel* textLabel;
41 44
42 // Text field at the trailing edge of the cell. It displays the item's 45 // Text field at the trailing edge of the cell. It displays the item's
43 // |textFieldValue|. 46 // |textFieldValue|.
44 @property(nonatomic, readonly, strong) UITextField* textField; 47 @property(nonatomic, readonly, strong) UITextField* textField;
45 48
46 // UIImageView containing the credit card type icon. 49 // UIImageView containing the credit card type icon.
47 @property(nonatomic, readonly, strong) UIImageView* cardTypeIconView; 50 @property(nonatomic, readonly, strong) UIImageView* cardTypeIconView;
48 51
49 @end 52 @end
50 53
51 #endif // IOS_CHROME_BROWSER_UI_SETTINGS_CELLS_AUTOFILL_EDIT_ITEM_H_ 54 #endif // IOS_CHROME_BROWSER_UI_SETTINGS_CELLS_AUTOFILL_EDIT_ITEM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698