summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/cocoa/autofill/autofill_header.h
diff options
context:
space:
mode:
authorisherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-11-24 19:09:12 +0000
committerisherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-11-24 19:09:12 +0000
commit540f2134a090f9bf8ce008b9ee0f85aae94cbe9c (patch)
treebb9495131c619fc990208bb1336ac40568a7bc88 /chrome/browser/ui/cocoa/autofill/autofill_header.h
parentc3156488adc87e7f2de0634d6ec17569acbd6e05 (diff)
downloadchromium_src-540f2134a090f9bf8ce008b9ee0f85aae94cbe9c.zip
chromium_src-540f2134a090f9bf8ce008b9ee0f85aae94cbe9c.tar.gz
chromium_src-540f2134a090f9bf8ce008b9ee0f85aae94cbe9c.tar.bz2
[rAc OSX] Factor out AutofillHeader class to contain dialog header elements.
Currently contains the title and the account chooser. In the next CL, I'm planning to move notifications into the header as well. BUG=315977 TEST=none R=groby@chromium.org Review URL: https://codereview.chromium.org/77283002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@236997 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/cocoa/autofill/autofill_header.h')
-rw-r--r--chrome/browser/ui/cocoa/autofill/autofill_header.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/chrome/browser/ui/cocoa/autofill/autofill_header.h b/chrome/browser/ui/cocoa/autofill/autofill_header.h
new file mode 100644
index 0000000..e9e6f6b
--- /dev/null
+++ b/chrome/browser/ui/cocoa/autofill/autofill_header.h
@@ -0,0 +1,43 @@
+// Copyright 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.
+
+#ifndef CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_HEADER_H_
+#define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_HEADER_H_
+
+#import <Cocoa/Cocoa.h>
+
+#include "base/mac/scoped_nsobject.h"
+#import "chrome/browser/ui/cocoa/autofill/autofill_layout.h"
+
+namespace autofill {
+class AutofillDialogViewDelegate;
+} // autofill
+
+@class AutofillAccountChooser;
+
+@interface AutofillHeader : NSViewController<AutofillLayout> {
+ @private
+ base::scoped_nsobject<AutofillAccountChooser> accountChooser_;
+ base::scoped_nsobject<NSTextField> title_;
+ // TODO(isherman): Include notifications in the header.
+
+ autofill::AutofillDialogViewDelegate* delegate_; // not owned, owns dialog.
+}
+
+// Designated initializer.
+- (id)initWithDelegate:(autofill::AutofillDialogViewDelegate*)delegate;
+
+// Returns the anchor view for notifications, which is the middle of the account
+// chooser view.
+- (NSView*)anchorView;
+
+// Updates the header's state from the dialog controller.
+- (void)update;
+
+// Get the preferred view height for a given width.
+- (CGFloat)heightForWidth:(int)width;
+
+@end
+
+#endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_DIALOG_HEADER_H_