1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "content/shell/shell_login_dialog.h"
7 #import <Cocoa/Cocoa.h>
9 #include "base/logging.h"
10 #include "base/mac/bundle_locations.h"
11 #import "base/memory/scoped_nsobject.h"
12 #include "base/sys_string_conversions.h"
13 #include "content/public/browser/browser_thread.h"
14 #import "ui/base/cocoa/nib_loading.h"
18 const int kUsernameFieldTag = 1;
19 const int kPasswordFieldTag = 2;
23 // Helper object that receives the notification that the dialog/sheet is
25 @interface ShellLoginDialogHelper : NSObject<NSAlertDelegate> {
27 scoped_nsobject<NSAlert> alert_;
28 NSTextField* usernameField_; // WEAK; owned by alert_
29 NSSecureTextField* passwordField_; // WEAK; owned by alert_
33 - (NSView*)accessoryView;
35 - (void)alertDidEnd:(NSAlert*)alert
36 returnCode:(int)returnCode
37 contextInfo:(void*)contextInfo;
42 @implementation ShellLoginDialogHelper
45 alert_.reset([[NSAlert alloc] init]);
46 [alert_ setAccessoryView:[self accessoryView]];
50 - (NSView*)accessoryView {
51 NSView* accessory_view = ui::GetViewFromNib(@"HttpAuth");
55 usernameField_ = [accessory_view viewWithTag:kUsernameFieldTag];
56 passwordField_ = [accessory_view viewWithTag:kPasswordFieldTag];
57 return accessory_view;
61 [[alert_ window] makeFirstResponder:usernameField_];
64 - (void)alertDidEnd:(NSAlert*)alert
65 returnCode:(int)returnCode
66 contextInfo:(void*)contextInfo {
67 if (returnCode == NSRunStoppedResponse)
70 content::ShellLoginDialog* this_dialog =
71 reinterpret_cast<content::ShellLoginDialog*>(contextInfo);
72 if (returnCode == NSAlertFirstButtonReturn) {
73 this_dialog->UserAcceptedAuth(
74 base::SysNSStringToUTF16([usernameField_ stringValue]),
75 base::SysNSStringToUTF16([passwordField_ stringValue]));
77 this_dialog->UserCancelledAuth();
82 [NSApp endSheet:[alert_ window]];
90 void ShellLoginDialog::PlatformCreateDialog(const string16& message) {
91 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
92 helper_ = [[ShellLoginDialogHelper alloc] init];
94 // Show the modal dialog.
95 NSAlert* alert = [helper_ alert];
96 [alert setDelegate:helper_];
97 [alert setInformativeText:base::SysUTF16ToNSString(message)];
98 [alert setMessageText:@"Please log in."];
99 [alert addButtonWithTitle:@"OK"];
100 NSButton* other = [alert addButtonWithTitle:@"Cancel"];
101 [other setKeyEquivalent:@"\e"];
103 beginSheetModalForWindow:nil // nil here makes it app-modal
104 modalDelegate:helper_
105 didEndSelector:@selector(alertDidEnd:returnCode:contextInfo:)
111 void ShellLoginDialog::PlatformCleanUp() {
112 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
117 void ShellLoginDialog::PlatformRequestCancelled() {
118 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
122 } // namespace content