OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #import "chrome/browser/autofill/autofill_text_field_mac.h" | 5 #import "chrome/browser/autofill/autofill_text_field_mac.h" |
6 | 6 |
| 7 #include "base/sys_string_conversions.h" |
| 8 #include "chrome/browser/autofill/credit_card.h" |
| 9 |
7 @implementation AutoFillTextField | 10 @implementation AutoFillTextField |
8 | 11 |
| 12 - (void)awakeFromNib { |
| 13 if ([self tag] == AUTOFILL_CC_TAG) |
| 14 isCreditCardField_ = YES; |
| 15 } |
| 16 |
9 // Override NSResponder method for when the text field may gain focus. We | 17 // Override NSResponder method for when the text field may gain focus. We |
10 // call |scrollRectToVisible| to ensure that this text field is visible within | 18 // call |scrollRectToVisible| to ensure that this text field is visible within |
11 // the scrolling area. | 19 // the scrolling area. |
12 - (BOOL)becomeFirstResponder { | 20 - (BOOL)becomeFirstResponder { |
13 // Vertical inset is negative to indicate "outset". Provides some visual | 21 // Vertical inset is negative to indicate "outset". Provides some visual |
14 // space above and below when tabbing between fields. | 22 // space above and below when tabbing between fields. |
15 const CGFloat kVerticalInset = -40.0; | 23 const CGFloat kVerticalInset = -40.0; |
16 BOOL becoming = [super becomeFirstResponder]; | 24 BOOL becoming = [super becomeFirstResponder]; |
17 if (becoming) { | 25 if (becoming) { |
18 [self scrollRectToVisible:NSInsetRect([self bounds], 0.0, kVerticalInset)]; | 26 [self scrollRectToVisible:NSInsetRect([self bounds], 0.0, kVerticalInset)]; |
19 } | 27 } |
20 return becoming; | 28 return becoming; |
21 } | 29 } |
22 | 30 |
| 31 - (void)setObjectValue:(id)object { |
| 32 if (isCreditCardField_ && [object isKindOfClass:[NSString class]]) { |
| 33 // Obfuscate the number. |
| 34 NSString* string = object; |
| 35 CreditCard card; |
| 36 card.SetInfo(AutoFillType(CREDIT_CARD_NUMBER), |
| 37 base::SysNSStringToUTF16(string)); |
| 38 NSString* starredString = base::SysUTF16ToNSString(card.ObfuscatedNumber()); |
| 39 |
| 40 [super setObjectValue:starredString]; |
| 41 isObfuscated_ = YES; |
| 42 obfuscatedValue_.reset([string copy]); |
| 43 } else { |
| 44 [super setObjectValue:object]; |
| 45 } |
| 46 } |
| 47 |
| 48 - (id)objectValue { |
| 49 if (isObfuscated_) { |
| 50 // This should not happen. This field is bound, and its value will only be |
| 51 // fetched if it is changed, and since we force selection, that should clear |
| 52 // the obfuscation. Nevertheless, we'll be paranoid here since we don't want |
| 53 // the obfuscating ***s to end up in the database. |
| 54 return obfuscatedValue_.get(); |
| 55 } else { |
| 56 return [super objectValue]; |
| 57 } |
| 58 } |
| 59 |
| 60 // |self| is automatically set to be the delegate of the field editor; this |
| 61 // method is called by the field editor. |
| 62 - (void)textViewDidChangeSelection:(NSNotification *)notification { |
| 63 if (isCreditCardField_ && !isBeingSelected_ && isObfuscated_) { |
| 64 // Can't edit obfuscated credit card info; force a select-all in that case. |
| 65 isBeingSelected_ = YES; |
| 66 NSText* editor = [notification object]; |
| 67 [editor selectAll:self]; |
| 68 isBeingSelected_ = NO; |
| 69 } |
| 70 } |
| 71 |
| 72 // Docs aren't clear, but this is called on the first keypress, not when the |
| 73 // field takes focus. |
| 74 - (BOOL)textShouldBeginEditing:(NSText*)textObject { |
| 75 BOOL should = [super textShouldBeginEditing:textObject]; |
| 76 // On editing, since everything is selected, the field is now clear. |
| 77 isObfuscated_ = !should; |
| 78 if (!isObfuscated_) |
| 79 obfuscatedValue_.reset(); |
| 80 return should; |
| 81 } |
| 82 |
23 @end | 83 @end |
OLD | NEW |