blob: 650fb1cc7ca1ca5836cd1911a414e0696e426333 (
plain)
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
|
// Copyright (c) 2010 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.
#ifndef CHROME_BROWSER_AUTOFILL_AUTOFILL_CREDIT_CARD_SHEET_CONTROLLER_MAC_
#define CHROME_BROWSER_AUTOFILL_AUTOFILL_CREDIT_CARD_SHEET_CONTROLLER_MAC_
#pragma once
#import <Cocoa/Cocoa.h>
#include <vector>
@class AutoFillCreditCardModel;
@class AutoFillDialogController;
class CreditCard;
// The sheet can be invoked in "Add" or "Edit" mode. This dictates the caption
// seen at the top of the sheet.
enum {
kAutoFillCreditCardAddMode = 0,
kAutoFillCreditCardEditMode = 1
};
typedef NSInteger AutoFillCreditCardMode;
// A class that coordinates the |creditCardModel| and the associated view
// held in AutoFillCreditCardSheet.xib.
// |initWithCreditCard:| is the designated initializer. It takes |creditCard|
// and transcribes it to |creditCardModel| to which the view is bound.
@interface AutoFillCreditCardSheetController : NSWindowController {
@private
IBOutlet NSPopUpButton* expirationMonthPopup_;
IBOutlet NSPopUpButton* expirationYearPopup_;
// The caption at top of dialog. Text changes according to usage. Either
// "New credit card" or "Edit credit card" depending on context.
IBOutlet NSTextField* caption_;
// The credit card number field. This is here for unit testing purposes.
// The text of this field is obfuscated until edited.
IBOutlet NSTextField* creditCardNumberField_;
// The primary model for this controller. The model is instantiated
// from within |initWithCreditCard:|. We do not hold it as a scoped_nsobject
// because it is exposed as a KVO compliant property.
AutoFillCreditCardModel* creditCardModel_;
// Contents of the expiration month and year popups. Strongly owned. We do
// not hold them as scoped_nsobjects because they are exposed as KVO compliant
// properties.
NSArray* expirationMonthContents_;
NSArray* expirationYearContents_;
// Either "Add" or "Edit" mode of sheet.
AutoFillCreditCardMode mode_;
}
@property (nonatomic, retain) AutoFillCreditCardModel* creditCardModel;
@property (nonatomic, retain) NSArray* expirationMonthContents;
@property (nonatomic, retain) NSArray* expirationYearContents;
// Designated initializer. Takes a copy of the data in |creditCard|,
// it is not held as a reference.
- (id)initWithCreditCard:(const CreditCard&)creditCard
mode:(AutoFillCreditCardMode)mode;
// IBActions for save and cancel buttons. Both invoke |endSheet:|.
- (IBAction)save:(id)sender;
- (IBAction)cancel:(id)sender;
// Copy data from internal model to |creditCard|.
- (void)copyModelToCreditCard:(CreditCard*)creditCard;
@end
// Interface exposed for unit testing.
@interface AutoFillCreditCardSheetController (ExposedForUnitTests)
- (NSTextField*)creditCardNumberField;
@end
#endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_CREDIT_CARD_SHEET_CONTROLLER_MAC_
|