OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_SECTION_CONTAINER_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_SECTION_CONTAINER_H_ |
6 #define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_SECTION_CONTAINER_H_ | 6 #define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_SECTION_CONTAINER_H_ |
7 | 7 |
8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
9 | 9 |
10 #include "base/memory/scoped_nsobject.h" | 10 #include "base/memory/scoped_nsobject.h" |
11 #include "chrome/browser/ui/autofill/autofill_dialog_types.h" | 11 #include "chrome/browser/ui/autofill/autofill_dialog_types.h" |
| 12 #import "chrome/browser/ui/cocoa/autofill/autofill_layout.h" |
12 | 13 |
13 namespace autofill { | 14 namespace autofill { |
14 class AutofillDialogController; | 15 class AutofillDialogController; |
15 } | 16 } |
16 | 17 |
17 @class LayoutView; | 18 @class LayoutView; |
18 @class MenuButton; | 19 @class MenuButton; |
19 @class MenuController; | 20 @class MenuController; |
20 | 21 |
21 // View controller for a section of the payment details. Contains a label | 22 // View controller for a section of the payment details. Contains a label |
22 // describing the section as well as associated inputs and controls. Built | 23 // describing the section as well as associated inputs and controls. Built |
23 // dynamically based on data retrieved from AutofillDialogController. | 24 // dynamically based on data retrieved from AutofillDialogController. |
24 @interface AutofillSectionContainer : NSViewController { | 25 @interface AutofillSectionContainer : NSViewController<AutofillLayout> { |
25 @private | 26 @private |
26 scoped_nsobject<LayoutView> inputs_; | 27 scoped_nsobject<LayoutView> inputs_; |
27 scoped_nsobject<MenuButton> suggestButton_; | 28 scoped_nsobject<MenuButton> suggestButton_; |
| 29 scoped_nsobject<NSTextField> label_; |
| 30 scoped_nsobject<NSView> view_; // The view for the container. |
| 31 |
28 scoped_nsobject<MenuController> menuController_; | 32 scoped_nsobject<MenuController> menuController_; |
29 autofill::DialogSection section_; | 33 autofill::DialogSection section_; |
30 autofill::AutofillDialogController* controller_; // Not owned. | 34 autofill::AutofillDialogController* controller_; // Not owned. |
31 } | 35 } |
32 | 36 |
33 @property(readonly, nonatomic) autofill::DialogSection section; | 37 @property(readonly, nonatomic) autofill::DialogSection section; |
34 | 38 |
35 // Designated initializer. Queries |controller| for the list of desired input | 39 // Designated initializer. Queries |controller| for the list of desired input |
36 // fields for |section|. | 40 // fields for |section|. |
37 - (id)initWithController:(autofill::AutofillDialogController*)controller | 41 - (id)initWithController:(autofill::AutofillDialogController*)controller |
38 forSection:(autofill::DialogSection)section; | 42 forSection:(autofill::DialogSection)section; |
39 | 43 |
40 // Populates |output| with mappings from field identification to input value. | 44 // Populates |output| with mappings from field identification to input value. |
41 - (void)getInputs:(autofill::DetailOutputMap*)output; | 45 - (void)getInputs:(autofill::DetailOutputMap*)output; |
42 | 46 |
43 // Called when the controller-maintained suggestions model has changed. | 47 // Called when the controller-maintained suggestions model has changed. |
44 - (void)modelChanged; | 48 - (void)modelChanged; |
45 | 49 |
46 @end | 50 @end |
47 | 51 |
48 @interface AutofillSectionContainer (ForTesting) | 52 @interface AutofillSectionContainer (ForTesting) |
49 - (NSControl*)getField:(autofill::AutofillFieldType)type; | 53 - (NSControl*)getField:(autofill::AutofillFieldType)type; |
50 @end | 54 @end |
51 | 55 |
52 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_SECTION_CONTAINER_H_ | 56 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_SECTION_CONTAINER_H_ |
OLD | NEW |