1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
|
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "chrome/browser/ui/cocoa/autofill/autofill_section_container.h"
#include <algorithm>
#include "base/mac/foundation_util.h"
#include "base/strings/sys_string_conversions.h"
#include "base/strings/utf_string_conversions.h"
#include "chrome/browser/ui/autofill/autofill_dialog_view_delegate.h"
#import "chrome/browser/ui/cocoa/autofill/autofill_pop_up_button.h"
#import "chrome/browser/ui/cocoa/autofill/autofill_section_view.h"
#import "chrome/browser/ui/cocoa/autofill/autofill_suggestion_container.h"
#import "chrome/browser/ui/cocoa/autofill/autofill_textfield.h"
#import "chrome/browser/ui/cocoa/autofill/layout_view.h"
#include "chrome/browser/ui/cocoa/autofill/simple_grid_layout.h"
#import "chrome/browser/ui/cocoa/image_button_cell.h"
#import "chrome/browser/ui/cocoa/menu_button.h"
#include "components/autofill/core/browser/autofill_type.h"
#include "grit/theme_resources.h"
#import "ui/base/cocoa/menu_controller.h"
#include "ui/base/l10n/l10n_util_mac.h"
#include "ui/base/models/combobox_model.h"
#include "ui/base/resource/resource_bundle.h"
namespace {
// Constants used for layouting controls. These variables are copied from
// "ui/views/layout/layout_constants.h".
// Horizontal spacing between controls that are logically related.
const int kRelatedControlHorizontalSpacing = 8;
// Vertical spacing between controls that are logically related.
const int kRelatedControlVerticalSpacing = 8;
// TODO(estade): pull out these constants, and figure out better values
// for them. Note: These are duplicated from Views code.
// Fixed width for the section label.
const int kLabelWidth = 180;
// Padding between section label and section input.
const int kPadding = 30;
// Fixed width for the details section.
const int kDetailsWidth = 300;
// Top/bottom inset for contents of a detail section.
const size_t kDetailSectionInset = 10;
// Break suggestion text into two lines. TODO(groby): Should be on delegate.
void BreakSuggestionText(const string16& text,
string16* line1,
string16* line2) {
// TODO(estade): does this localize well?
string16 line_return(base::ASCIIToUTF16("\n"));
size_t position = text.find(line_return);
if (position == string16::npos) {
*line1 = text;
line2->clear();
} else {
*line1 = text.substr(0, position);
*line2 = text.substr(position + line_return.length());
}
}
// If the Autofill data comes from a credit card, make sure to overwrite the
// CC comboboxes (even if they already have something in them). If the
// Autofill data comes from an AutofillProfile, leave the comboboxes alone.
// TODO(groby): This kind of logic should _really_ live on the delegate.
bool ShouldOverwriteComboboxes(autofill::DialogSection section,
autofill::AutofillFieldType type) {
if (autofill::AutofillType(type).group() != autofill::CREDIT_CARD) {
return false;
}
if (section == autofill::SECTION_CC) {
return true;
}
return section == autofill::SECTION_CC_BILLING;
}
bool CompareInputRows(const autofill::DetailInput* input1,
const autofill::DetailInput* input2) {
// Row ID -1 is sorted to the end of rows.
if (input2->row_id == -1)
return false;
return input2->row_id < input1->row_id;
}
}
@interface AutofillSectionContainer ()
// A text field has been edited or activated - inform the delegate that it's
// time to show a suggestion popup & possibly reset the validity of the input.
- (void)textfieldEditedOrActivated:(NSControl<AutofillInputField>*)field
edited:(BOOL)edited;
// Convenience method to retrieve a field type via the control's tag.
- (autofill::AutofillFieldType)fieldTypeForControl:(NSControl*)control;
// Find the DetailInput* associated with a field type.
- (const autofill::DetailInput*)detailInputForType:
(autofill::AutofillFieldType)type;
// Takes an NSArray of controls and builds a DetailOutputMap from them.
// Translates between Cocoa code and delegate, essentially.
// All controls must inherit from NSControl and conform to AutofillInputView.
- (void)fillDetailOutputs:(autofill::DetailOutputMap*)outputs
fromControls:(NSArray*)controls;
// Updates input fields based on delegate status. If |shouldClobber| is YES,
// will clobber existing data and reset fields to the initial values.
- (void)updateAndClobber:(BOOL)shouldClobber;
// Create properly styled label for section. Autoreleased.
- (NSTextField*)makeDetailSectionLabel:(NSString*)labelText;
// Create a button offering input suggestions.
- (MenuButton*)makeSuggestionButton;
// Create a view with all inputs requested by |delegate_|. Autoreleased.
- (LayoutView*)makeInputControls;
@end
@implementation AutofillSectionContainer
@synthesize section = section_;
@synthesize validationDelegate = validationDelegate_;
- (id)initWithDelegate:(autofill::AutofillDialogViewDelegate*)delegate
forSection:(autofill::DialogSection)section {
if (self = [super init]) {
section_ = section;
delegate_ = delegate;
}
return self;
}
- (void)getInputs:(autofill::DetailOutputMap*)output {
[self fillDetailOutputs:output fromControls:[inputs_ subviews]];
}
// Note: This corresponds to Views' "UpdateDetailsGroupState".
- (void)modelChanged {
ui::MenuModel* suggestionModel = delegate_->MenuModelForSection(section_);
menuController_.reset([[MenuController alloc] initWithModel:suggestionModel
useWithPopUpButtonCell:YES]);
NSMenu* menu = [menuController_ menu];
const BOOL hasSuggestions = [menu numberOfItems] > 0;
[suggestButton_ setHidden:!hasSuggestions];
[suggestButton_ setAttachedMenu:menu];
[self updateSuggestionState];
// TODO(groby): "Save in Chrome" handling.
if (![[self view] isHidden])
[self validateFor:autofill::VALIDATE_EDIT];
// Always request re-layout on state change.
id delegate = [[view_ window] windowController];
if ([delegate respondsToSelector:@selector(requestRelayout)])
[delegate performSelector:@selector(requestRelayout)];
}
- (void)loadView {
// Keep a list of weak pointers to DetailInputs.
const autofill::DetailInputs& inputs =
delegate_->RequestedFieldsForSection(section_);
for (size_t i = 0; i < inputs.size(); ++i) {
detailInputs_.push_back(&(inputs[i]));
}
inputs_.reset([[self makeInputControls] retain]);
string16 labelText = delegate_->LabelForSection(section_);
label_.reset([[self makeDetailSectionLabel:
base::SysUTF16ToNSString(labelText)] retain]);
suggestButton_.reset([[self makeSuggestionButton] retain]);
suggestContainer_.reset([[AutofillSuggestionContainer alloc] init]);
view_.reset([[AutofillSectionView alloc] initWithFrame:NSZeroRect]);
[self setView:view_];
[[self view] setSubviews:
@[label_, inputs_, [suggestContainer_ view], suggestButton_]];
if (section_ == autofill::SECTION_CC) {
// SECTION_CC *MUST* have a CREDIT_CARD_VERIFICATION_CODE input.
DCHECK([self detailInputForType:autofill::CREDIT_CARD_VERIFICATION_CODE]);
[[suggestContainer_ inputField] setTag:
autofill::CREDIT_CARD_VERIFICATION_CODE];
[[suggestContainer_ inputField] setDelegate:self];
}
[self modelChanged];
}
- (NSSize)preferredSize {
if ([view_ isHidden])
return NSZeroSize;
NSSize labelSize = [label_ frame].size; // Assumes sizeToFit was called.
CGFloat controlHeight = [inputs_ preferredHeightForWidth:kDetailsWidth];
if ([inputs_ isHidden])
controlHeight = [suggestContainer_ preferredSize].height;
CGFloat contentHeight = std::max(controlHeight, labelSize.height);
contentHeight = std::max(contentHeight, labelSize.height);
contentHeight = std::max(contentHeight, NSHeight([suggestButton_ frame]));
return NSMakeSize(kLabelWidth + kPadding + kDetailsWidth,
contentHeight + 2 * kDetailSectionInset);
}
- (void)performLayout {
if ([view_ isHidden])
return;
NSSize buttonSize = [suggestButton_ frame].size; // Assume sizeToFit.
NSSize labelSize = [label_ frame].size; // Assumes sizeToFit was called.
CGFloat controlHeight = [inputs_ preferredHeightForWidth:kDetailsWidth];
if ([inputs_ isHidden])
controlHeight = [suggestContainer_ preferredSize].height;
NSRect viewFrame = NSZeroRect;
viewFrame.size = [self preferredSize];
NSRect contentFrame = NSInsetRect(viewFrame, 0, kDetailSectionInset);
NSRect dummy;
// Set up three content columns. kLabelWidth is first column width,
// then padding, then have suggestButton and inputs share kDetailsWidth.
NSRect column[3];
NSDivideRect(contentFrame, &column[0], &dummy, kLabelWidth, NSMinXEdge);
NSDivideRect(contentFrame, &column[1], &dummy, kDetailsWidth, NSMaxXEdge);
NSDivideRect(column[1],
&column[2], &column[1], buttonSize.width, NSMaxXEdge);
// Center inputs by height in column 1.
NSRect controlFrame = column[1];
int centerOffset = (NSHeight(controlFrame) - controlHeight) / 2;
controlFrame.origin.x += centerOffset;
controlFrame.size.height = controlHeight;
// Align label to right top in column 0.
NSRect labelFrame;
NSDivideRect(column[0], &labelFrame, &dummy, labelSize.height, NSMaxYEdge);
NSDivideRect(labelFrame, &labelFrame, &dummy, labelSize.width, NSMaxXEdge);
// suggest button is top left of column 2.
NSRect buttonFrame = column[2];
NSDivideRect(column[2], &buttonFrame, &dummy, buttonSize.height, NSMaxYEdge);
[[suggestContainer_ view] setFrame:controlFrame];
[suggestContainer_ performLayout];
[inputs_ setFrame:controlFrame];
[label_ setFrame:labelFrame];
[suggestButton_ setFrame:buttonFrame];
[view_ setFrameSize:viewFrame.size];
}
- (void)fieldBecameFirstResponder:(NSControl<AutofillInputField>*)field {
[self textfieldEditedOrActivated:field edited:NO];
[validationDelegate_ updateMessageForField:field];
}
- (void)didChange:(id)sender {
[self textfieldEditedOrActivated:sender edited:YES];
}
- (void)didEndEditing:(id)sender {
[self validateFor:autofill::VALIDATE_EDIT];
}
- (void)updateSuggestionState {
const autofill::SuggestionState& suggestionState =
delegate_->SuggestionStateForSection(section_);
bool showSuggestions = !suggestionState.text.empty();
[[suggestContainer_ view] setHidden:!showSuggestions];
[inputs_ setHidden:showSuggestions];
string16 line1;
string16 line2;
BreakSuggestionText(suggestionState.text, &line1, &line2);
ui::ResourceBundle& rb = ui::ResourceBundle::GetSharedInstance();
gfx::Font font = rb.GetFont(ui::ResourceBundle::BaseFont).DeriveFont(
0, suggestionState.text_style);
[suggestContainer_ setSuggestionText:base::SysUTF16ToNSString(line1)
line2:base::SysUTF16ToNSString(line2)
withFont:font.GetNativeFont()];
[suggestContainer_ setIcon:suggestionState.icon.AsNSImage()];
if (!suggestionState.extra_text.empty()) {
NSString* extraText =
base::SysUTF16ToNSString(suggestionState.extra_text);
NSImage* extraIcon = suggestionState.extra_icon.AsNSImage();
[suggestContainer_ showInputField:extraText withIcon:extraIcon];
}
[view_ setShouldHighlightOnHover:showSuggestions];
[view_ setHidden:!delegate_->SectionIsActive(section_)];
}
- (void)update {
[self updateAndClobber:YES];
}
- (void)fillForInput:(const autofill::DetailInput&)input {
// Make sure to overwrite the originating input if it is a text field.
AutofillTextField* field =
base::mac::ObjCCast<AutofillTextField>([inputs_ viewWithTag:input.type]);
[field setFieldValue:@""];
if (ShouldOverwriteComboboxes(section_, input.type)) {
for (NSControl* control in [inputs_ subviews]) {
AutofillPopUpButton* popup =
base::mac::ObjCCast<AutofillPopUpButton>(control);
if (popup) {
autofill::AutofillFieldType fieldType =
[self fieldTypeForControl:popup];
if (autofill::AutofillType(fieldType).group() ==
autofill::CREDIT_CARD) {
ui::ComboboxModel* model =
delegate_->ComboboxModelForAutofillType(fieldType);
DCHECK(model);
[popup selectItemAtIndex:model->GetDefaultIndex()];
}
}
}
}
[self updateAndClobber:NO];
}
- (void)editLinkClicked {
delegate_->EditClickedForSection(section_);
}
- (NSString*)editLinkTitle {
return base::SysUTF16ToNSString(delegate_->EditSuggestionText());
}
- (BOOL)validateFor:(autofill::ValidationType)validationType {
DCHECK(![[self view] isHidden]);
NSArray* fields = nil;
if (![inputs_ isHidden]) {
fields = [inputs_ subviews];
} else if (section_ == autofill::SECTION_CC) {
fields = @[[suggestContainer_ inputField]];
}
autofill::DetailOutputMap detailOutputs;
[self fillDetailOutputs:&detailOutputs fromControls:fields];
autofill::ValidityData invalidInputs = delegate_->InputsAreValid(
section_, detailOutputs, validationType);
for (NSControl<AutofillInputField>* input in fields) {
const autofill::AutofillFieldType type = [self fieldTypeForControl:input];
if (invalidInputs.count(type))
[input setValidityMessage:base::SysUTF16ToNSString(invalidInputs[type])];
else
[input setValidityMessage:@""];
[validationDelegate_ updateMessageForField:input];
}
return invalidInputs.empty();
}
#pragma mark Internal API for AutofillSectionContainer.
- (void)textfieldEditedOrActivated:(NSControl<AutofillInputField>*)field
edited:(BOOL)edited {
AutofillTextField* textfield =
base::mac::ObjCCastStrict<AutofillTextField>(field);
// This only applies to textfields.
if (!textfield)
return;
autofill::AutofillFieldType type = [self fieldTypeForControl:field];
string16 fieldValue = base::SysNSStringToUTF16([textfield fieldValue]);
// Get the frame rectangle for the designated field, in screen coordinates.
NSRect textFrameInScreen = [field convertRect:[field frame] toView:nil];
textFrameInScreen.origin =
[[field window] convertBaseToScreen:textFrameInScreen.origin];
// And adjust for gfx::Rect being flipped compared to OSX coordinates.
NSScreen* screen = [[NSScreen screens] objectAtIndex:0];
textFrameInScreen.origin.y =
NSMaxY([screen frame]) - NSMaxY(textFrameInScreen);
gfx::Rect textFrameRect(NSRectToCGRect(textFrameInScreen));
delegate_->UserEditedOrActivatedInput(section_,
[self detailInputForType:type],
[self view],
textFrameRect,
fieldValue,
edited);
// If the field is marked as invalid, check if the text is now valid.
// Many fields (i.e. CC#) are invalid for most of the duration of editing,
// so flagging them as invalid prematurely is not helpful. However,
// correcting a minor mistake (i.e. a wrong CC digit) should immediately
// result in validation - positive user feedback.
if ([textfield invalid]) {
string16 message = delegate_->InputValidityMessage(section_,
type,
fieldValue);
[textfield setValidityMessage:base::SysUTF16ToNSString(message)];
[validationDelegate_ updateMessageForField:textfield];
// If the field transitioned from invalid to valid, re-validate the group,
// since inter-field checks become meaningful with valid fields.
if (![textfield invalid])
[self validateFor:autofill::VALIDATE_EDIT];
}
// Update the icon for the textfield.
gfx::Image icon = delegate_->IconForField(type, fieldValue);
if (!icon.IsEmpty()) {
[[textfield cell] setIcon:icon.ToNSImage()];
}
}
- (autofill::AutofillFieldType)fieldTypeForControl:(NSControl*)control {
DCHECK([control tag]);
return static_cast<autofill::AutofillFieldType>([control tag]);
}
- (const autofill::DetailInput*)detailInputForType:
(autofill::AutofillFieldType)type {
for (size_t i = 0; i < detailInputs_.size(); ++i) {
if (detailInputs_[i]->type == type)
return detailInputs_[i];
}
// TODO(groby): Needs to be NOTREACHED. Can't, due to the fact that tests
// blindly call setFieldValue:forInput:, even for non-existing inputs.
return NULL;
}
- (void)fillDetailOutputs:(autofill::DetailOutputMap*)outputs
fromControls:(NSArray*)controls {
for (NSControl<AutofillInputField>* input in controls) {
DCHECK([input isKindOfClass:[NSControl class]]);
DCHECK([input conformsToProtocol:@protocol(AutofillInputField)]);
autofill::AutofillFieldType fieldType = [self fieldTypeForControl:input];
DCHECK([self detailInputForType:fieldType]);
NSString* value = [input fieldValue];
outputs->insert(std::make_pair([self detailInputForType:fieldType],
base::SysNSStringToUTF16(value)));
}
}
- (NSTextField*)makeDetailSectionLabel:(NSString*)labelText {
base::scoped_nsobject<NSTextField> label([[NSTextField alloc] init]);
[label setFont:
[[NSFontManager sharedFontManager] convertFont:[label font]
toHaveTrait:NSBoldFontMask]];
[label setStringValue:labelText];
[label setEditable:NO];
[label setBordered:NO];
[label sizeToFit];
return label.autorelease();
}
- (void)updateAndClobber:(BOOL)shouldClobber {
const autofill::DetailInputs& updatedInputs =
delegate_->RequestedFieldsForSection(section_);
for (autofill::DetailInputs::const_iterator iter = updatedInputs.begin();
iter != updatedInputs.end();
++iter) {
NSControl<AutofillInputField>* field = [inputs_ viewWithTag:iter->type];
DCHECK(field);
[field setEnabled:iter->editable];
// TODO(groby): For comboboxes, "empty" means "set to default index"
if (shouldClobber || [[field fieldValue] length] == 0) {
[field setFieldValue:base::SysUTF16ToNSString(iter->initial_value)];
AutofillTextField* textField =
base::mac::ObjCCast<AutofillTextField>(field);
if (textField) {
gfx::Image icon =
delegate_->IconForField(iter->type, iter->initial_value);
if (!icon.IsEmpty()) {
[[textField cell] setIcon:icon.ToNSImage()];
}
}
}
}
[self modelChanged];
}
- (MenuButton*)makeSuggestionButton {
base::scoped_nsobject<MenuButton> button([[MenuButton alloc] init]);
[button setOpenMenuOnClick:YES];
[button setBordered:NO];
[button setShowsBorderOnlyWhileMouseInside:YES];
ui::ResourceBundle& rb = ui::ResourceBundle::GetSharedInstance();
NSImage* image =
rb.GetNativeImageNamed(IDR_AUTOFILL_DIALOG_MENU_BUTTON).ToNSImage();
[[button cell] setImage:image
forButtonState:image_button_cell::kDefaultState];
image = rb.GetNativeImageNamed(IDR_AUTOFILL_DIALOG_MENU_BUTTON_H).
ToNSImage();
[[button cell] setImage:image
forButtonState:image_button_cell::kHoverState];
image = rb.GetNativeImageNamed(IDR_AUTOFILL_DIALOG_MENU_BUTTON_P).
ToNSImage();
[[button cell] setImage:image
forButtonState:image_button_cell::kPressedState];
image = rb.GetNativeImageNamed(IDR_AUTOFILL_DIALOG_MENU_BUTTON_D).
ToNSImage();
[[button cell] setImage:image
forButtonState:image_button_cell::kDisabledState];
[button sizeToFit];
return button.autorelease();
}
// TODO(estade): we should be using Chrome-style constrained window padding
// values.
- (LayoutView*)makeInputControls {
base::scoped_nsobject<LayoutView> view([[LayoutView alloc] init]);
[view setLayoutManager:
scoped_ptr<SimpleGridLayout>(new SimpleGridLayout(view))];
SimpleGridLayout* layout = [view layoutManager];
// Reverse order of rows, but keep order of fields stable. stable_sort
// guarantees that field order within a row is not affected.
// Necessary since OSX builds forms from the bottom left.
std::stable_sort(
detailInputs_.begin(), detailInputs_.end(), CompareInputRows);
for (size_t i = 0; i < detailInputs_.size(); ++i) {
const autofill::DetailInput& input = *detailInputs_[i];
int kColumnSetId = input.row_id;
ColumnSet* column_set = layout->GetColumnSet(kColumnSetId);
if (!column_set) {
// Create a new column set and row.
column_set = layout->AddColumnSet(kColumnSetId);
if (i != 0 && kColumnSetId != -1)
layout->AddPaddingRow(kRelatedControlVerticalSpacing);
layout->StartRow(0, kColumnSetId);
} else {
// Add a new column to existing row.
column_set->AddPaddingColumn(kRelatedControlHorizontalSpacing);
// Must explicitly skip the padding column since we've already started
// adding views.
layout->SkipColumns(1);
}
column_set->AddColumn(input.expand_weight ? input.expand_weight : 1.0f);
ui::ComboboxModel* input_model =
delegate_->ComboboxModelForAutofillType(input.type);
base::scoped_nsprotocol<NSControl<AutofillInputField>*> control;
if (input_model) {
base::scoped_nsobject<AutofillPopUpButton> popup(
[[AutofillPopUpButton alloc] initWithFrame:NSZeroRect pullsDown:NO]);
for (int i = 0; i < input_model->GetItemCount(); ++i) {
[popup addItemWithTitle:
base::SysUTF16ToNSString(input_model->GetItemAt(i))];
}
control.reset(popup.release());
} else {
base::scoped_nsobject<AutofillTextField> field(
[[AutofillTextField alloc] init]);
[[field cell] setPlaceholderString:
l10n_util::GetNSStringWithFixup(input.placeholder_text_rid)];
[[field cell] setIcon:
delegate_->IconForField(
input.type, input.initial_value).AsNSImage()];
control.reset(field.release());
}
[control setFieldValue:base::SysUTF16ToNSString(input.initial_value)];
[control sizeToFit];
[control setTag:input.type];
[control setDelegate:self];
// Hide away fields that cannot be edited.
if (kColumnSetId == -1) {
[control setFrame:NSZeroRect];
[control setHidden:YES];
}
layout->AddView(control);
}
return view.autorelease();
}
@end
@implementation AutofillSectionContainer (ForTesting)
- (NSControl*)getField:(autofill::AutofillFieldType)type {
return [inputs_ viewWithTag:type];
}
- (void)setFieldValue:(NSString*)text
forInput:(const autofill::DetailInput&)input {
if ([self detailInputForType:input.type] != &input)
return;
NSControl<AutofillInputField>* field = [inputs_ viewWithTag:input.type];
[field setFieldValue:text];
}
- (void)setSuggestionFieldValue:(NSString*)text {
[[suggestContainer_ inputField] setFieldValue:text];
}
- (void)activateFieldForInput:(const autofill::DetailInput&)input {
if ([self detailInputForType:input.type] != &input)
return;
NSControl<AutofillInputField>* field = [inputs_ viewWithTag:input.type];
[[field window] makeFirstResponder:field];
}
@end
|