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 #import "chrome/browser/ui/cocoa/global_error_bubble_controller.h"
7 #include "base/logging.h"
8 #include "base/mac/scoped_nsobject.h"
9 #include "base/strings/string_util.h"
10 #include "base/strings/sys_string_conversions.h"
11 #include "base/strings/utf_string_conversions.h"
12 #import "chrome/browser/ui/browser.h"
13 #import "chrome/browser/ui/browser_window.h"
14 #import "chrome/browser/ui/cocoa/browser_window_controller.h"
15 #import "chrome/browser/ui/cocoa/info_bubble_view.h"
16 #import "chrome/browser/ui/cocoa/l10n_util.h"
17 #import "chrome/browser/ui/cocoa/toolbar/toolbar_controller.h"
18 #import "chrome/browser/ui/cocoa/wrench_menu/wrench_menu_controller.h"
19 #include "chrome/browser/ui/global_error/global_error.h"
20 #include "chrome/browser/ui/global_error/global_error_bubble_view_base.h"
21 #include "chrome/browser/ui/global_error/global_error_service.h"
22 #include "chrome/browser/ui/global_error/global_error_service_factory.h"
23 #include "components/search_engines/util.h"
24 #import "third_party/google_toolbox_for_mac/src/AppKit/GTMUILocalizerAndLayoutTweaker.h"
25 #include "ui/base/l10n/l10n_util.h"
26 #include "ui/gfx/image/image.h"
29 const CGFloat kParagraphSpacing = 6;
32 namespace GlobalErrorBubbleControllerInternal {
34 // This is the bridge to the C++ GlobalErrorBubbleViewBase object.
35 class Bridge : public GlobalErrorBubbleViewBase {
37 Bridge(GlobalErrorBubbleController* controller) : controller_(controller) {
41 virtual void CloseBubbleView() OVERRIDE {
45 GlobalErrorBubbleController* controller_; // Weak, owns this.
48 } // namespace GlobalErrorBubbleControllerInternal
50 @implementation GlobalErrorBubbleController
52 + (GlobalErrorBubbleViewBase*)showForBrowser:(Browser*)browser
53 error:(const base::WeakPtr<GlobalErrorWithStandardBubble>&)error {
54 NSWindow* parentWindow = browser->window()->GetNativeWindow();
55 BrowserWindowController* bwc = [BrowserWindowController
56 browserWindowControllerForWindow:parentWindow];
57 NSView* wrenchButton = [[bwc toolbarController] wrenchButton];
58 NSPoint offset = NSMakePoint(
59 NSMidX([wrenchButton bounds]),
60 wrench_menu_controller::kWrenchBubblePointOffsetY);
62 // The bubble will be automatically deleted when the window is closed.
63 GlobalErrorBubbleController* bubble = [[GlobalErrorBubbleController alloc]
64 initWithWindowNibPath:@"GlobalErrorBubble"
65 relativeToView:wrenchButton
67 bubble->error_ = error;
68 bubble->bridge_.reset(new GlobalErrorBubbleControllerInternal::Bridge(
70 bubble->browser_ = browser;
71 [bubble showWindow:nil];
73 return bubble->bridge_.get();
76 - (void)awakeFromNib {
81 gfx::Image image = error_->GetBubbleViewIcon();
82 DCHECK(!image.IsEmpty());
83 [iconView_ setImage:image.ToNSImage()];
85 [title_ setStringValue:SysUTF16ToNSString(error_->GetBubbleViewTitle())];
86 std::vector<base::string16> messages = error_->GetBubbleViewMessages();
87 base::string16 message = JoinString(messages, '\n');
89 base::scoped_nsobject<NSMutableAttributedString> messageValue(
90 [[NSMutableAttributedString alloc]
91 initWithString:SysUTF16ToNSString(message)]);
92 base::scoped_nsobject<NSMutableParagraphStyle> style(
93 [[NSMutableParagraphStyle alloc] init]);
94 [style setParagraphSpacing:kParagraphSpacing];
95 [messageValue addAttribute:NSParagraphStyleAttributeName
97 range:NSMakeRange(0, [messageValue length])];
99 [message_ setAttributedStringValue:messageValue];
101 [acceptButton_ setTitle:
102 SysUTF16ToNSString(error_->GetBubbleViewAcceptButtonLabel())];
103 base::string16 cancelLabel = error_->GetBubbleViewCancelButtonLabel();
104 if (cancelLabel.empty())
105 [cancelButton_ setHidden:YES];
107 [cancelButton_ setTitle:SysUTF16ToNSString(cancelLabel)];
109 // First make sure that the window is wide enough to accommodate the buttons.
110 NSRect frame = [[self window] frame];
111 [layoutTweaker_ tweakUI:buttonContainer_];
112 CGFloat delta = NSWidth([buttonContainer_ frame]) - NSWidth(frame);
114 frame.size.width += delta;
115 [[self window] setFrame:frame display:NO];
118 // Adapt window height to bottom buttons. Do this before all other layouting.
119 NSArray* views = [NSArray arrayWithObjects:
120 title_, message_, buttonContainer_, nil];
121 NSSize ds = NSMakeSize(0, cocoa_l10n_util::VerticallyReflowGroup(views));
122 ds = [[self bubble] convertSize:ds toView:nil];
124 frame.origin.y -= ds.height;
125 frame.size.height += ds.height;
126 [[self window] setFrame:frame display:YES];
129 - (void)showWindow:(id)sender {
130 BrowserWindowController* bwc = [BrowserWindowController
131 browserWindowControllerForWindow:[self parentWindow]];
132 [bwc lockBarVisibilityForOwner:self withAnimation:NO delay:NO];
133 [super showWindow:sender];
138 error_->BubbleViewDidClose(browser_);
140 BrowserWindowController* bwc = [BrowserWindowController
141 browserWindowControllerForWindow:[self parentWindow]];
142 [bwc releaseBarVisibilityForOwner:self withAnimation:YES delay:NO];
146 - (IBAction)onAccept:(id)sender {
148 error_->BubbleViewAcceptButtonPressed(browser_);
152 - (IBAction)onCancel:(id)sender {
154 error_->BubbleViewCancelButtonPressed(browser_);
160 GlobalErrorBubbleViewBase* GlobalErrorBubbleViewBase::ShowStandardBubbleView(
162 const base::WeakPtr<GlobalErrorWithStandardBubble>& error) {
163 return [GlobalErrorBubbleController showForBrowser:browser error:error];