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 "chrome/browser/ui/webui/constrained_web_dialog_delegate_base.h"
7 #import <Cocoa/Cocoa.h>
9 #include "base/mac/scoped_nsobject.h"
10 #import "chrome/browser/ui/cocoa/constrained_window/constrained_window_custom_sheet.h"
11 #import "chrome/browser/ui/cocoa/constrained_window/constrained_window_custom_window.h"
12 #import "chrome/browser/ui/cocoa/constrained_window/constrained_window_mac.h"
13 #include "content/public/browser/web_contents.h"
14 #include "ui/gfx/size.h"
15 #include "ui/web_dialogs/web_dialog_delegate.h"
16 #include "ui/web_dialogs/web_dialog_ui.h"
17 #include "ui/web_dialogs/web_dialog_web_contents_delegate.h"
19 using content::WebContents;
20 using ui::WebDialogDelegate;
21 using ui::WebDialogWebContentsDelegate;
22 using web_modal::NativeWebContentsModalDialog;
26 class ConstrainedWebDialogDelegateMac
27 : public ConstrainedWebDialogDelegateBase {
29 ConstrainedWebDialogDelegateMac(
30 content::BrowserContext* browser_context,
31 WebDialogDelegate* delegate,
32 WebDialogWebContentsDelegate* tab_delegate)
33 : ConstrainedWebDialogDelegateBase(
34 browser_context, delegate, tab_delegate) {}
36 // WebDialogWebContentsDelegate interface.
37 virtual void CloseContents(WebContents* source) OVERRIDE {
38 window_->CloseWebContentsModalDialog();
41 void set_window(ConstrainedWindowMac* window) { window_ = window; }
42 ConstrainedWindowMac* window() const { return window_; }
45 // Weak, owned by ConstrainedWebDialogDelegateViewMac.
46 ConstrainedWindowMac* window_;
48 DISALLOW_COPY_AND_ASSIGN(ConstrainedWebDialogDelegateMac);
53 class ConstrainedWebDialogDelegateViewMac :
54 public ConstrainedWindowMacDelegate,
55 public ConstrainedWebDialogDelegate {
58 ConstrainedWebDialogDelegateViewMac(
59 content::BrowserContext* browser_context,
60 WebDialogDelegate* delegate,
61 WebDialogWebContentsDelegate* tab_delegate,
62 content::WebContents* web_contents);
63 virtual ~ConstrainedWebDialogDelegateViewMac() {}
65 // ConstrainedWebDialogDelegate interface
66 virtual const WebDialogDelegate*
67 GetWebDialogDelegate() const OVERRIDE {
68 return impl_->GetWebDialogDelegate();
70 virtual WebDialogDelegate* GetWebDialogDelegate() OVERRIDE {
71 return impl_->GetWebDialogDelegate();
73 virtual void OnDialogCloseFromWebUI() OVERRIDE {
74 return impl_->OnDialogCloseFromWebUI();
76 virtual void ReleaseWebContentsOnDialogClose() OVERRIDE {
77 return impl_->ReleaseWebContentsOnDialogClose();
79 virtual NativeWebContentsModalDialog GetNativeDialog() OVERRIDE {
80 return constrained_window_->GetNativeDialog();
82 virtual WebContents* GetWebContents() OVERRIDE {
83 return impl_->GetWebContents();
86 // ConstrainedWindowMacDelegate interface
87 virtual void OnConstrainedWindowClosed(
88 ConstrainedWindowMac* window) OVERRIDE {
89 if (!impl_->closed_via_webui())
90 GetWebDialogDelegate()->OnDialogClosed("");
95 scoped_ptr<ConstrainedWebDialogDelegateMac> impl_;
96 scoped_ptr<ConstrainedWindowMac> constrained_window_;
97 base::scoped_nsobject<NSWindow> window_;
99 DISALLOW_COPY_AND_ASSIGN(ConstrainedWebDialogDelegateViewMac);
102 ConstrainedWebDialogDelegateViewMac::ConstrainedWebDialogDelegateViewMac(
103 content::BrowserContext* browser_context,
104 WebDialogDelegate* delegate,
105 WebDialogWebContentsDelegate* tab_delegate,
106 content::WebContents* web_contents)
107 : impl_(new ConstrainedWebDialogDelegateMac(browser_context,
110 // Create a window to hold web_contents in the constrained sheet:
112 delegate->GetDialogSize(&size);
113 NSRect frame = NSMakeRect(0, 0, size.width(), size.height());
116 [[ConstrainedWindowCustomWindow alloc] initWithContentRect:frame]);
117 [GetWebContents()->GetNativeView() setFrame:frame];
118 [[window_ contentView] addSubview:GetWebContents()->GetNativeView()];
120 base::scoped_nsobject<CustomConstrainedWindowSheet> sheet(
121 [[CustomConstrainedWindowSheet alloc] initWithCustomWindow:window_]);
122 constrained_window_.reset(new ConstrainedWindowMac(
123 this, web_contents, sheet));
125 impl_->set_window(constrained_window_.get());
128 ConstrainedWebDialogDelegate* CreateConstrainedWebDialog(
129 content::BrowserContext* browser_context,
130 WebDialogDelegate* delegate,
131 WebDialogWebContentsDelegate* tab_delegate,
132 content::WebContents* web_contents) {
133 // Deleted when the dialog closes.
134 ConstrainedWebDialogDelegateViewMac* constrained_delegate =
135 new ConstrainedWebDialogDelegateViewMac(
136 browser_context, delegate, tab_delegate, web_contents);
137 return constrained_delegate;