blob: 891fc18baae385c5e2e8118d874338d655c855e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
// Copyright (c) 2011 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.
#include "chrome/browser/ui/cocoa/tab_modal_confirm_dialog_mac.h"
#include "base/memory/scoped_nsobject.h"
#include "chrome/browser/ui/browser_dialogs.h"
#include "chrome/browser/ui/tab_modal_confirm_dialog_delegate.h"
#include "chrome/browser/ui/tab_contents/tab_contents.h"
#include "ui/base/l10n/l10n_util_mac.h"
#include "ui/gfx/image/image.h"
// The delegate of the NSAlert used to display the dialog. Forwards the alert's
// completion event to the C++ class |TabModalConfirmDialogDelegate|.
@interface TabModalConfirmDialogMacBridge : NSObject {
TabModalConfirmDialogDelegate* delegate_; // weak
}
- (id)initWithDelegate:(TabModalConfirmDialogDelegate*)delegate;
- (void)alertDidEnd:(NSAlert*)alert
returnCode:(int)returnCode
contextInfo:(void*)contextInfo;
@end
@implementation TabModalConfirmDialogMacBridge
- (id)initWithDelegate:(TabModalConfirmDialogDelegate*)delegate {
if ((self = [super init])) {
delegate_ = delegate;
}
return self;
}
- (void)alertDidEnd:(NSAlert*)alert
returnCode:(int)returnCode
contextInfo:(void*)contextInfo {
if (returnCode == NSAlertFirstButtonReturn) {
delegate_->Accept();
} else {
delegate_->Cancel();
}
}
@end
namespace browser {
// Declared in browser_dialogs.h so others don't have to depend on our header.
void ShowTabModalConfirmDialog(TabModalConfirmDialogDelegate* delegate,
TabContents* tab_contents) {
// Deletes itself when closed.
new TabModalConfirmDialogMac(delegate, tab_contents);
}
}
TabModalConfirmDialogMac::TabModalConfirmDialogMac(
TabModalConfirmDialogDelegate* delegate,
TabContents* tab_contents)
: ConstrainedWindowMacDelegateSystemSheet(
[[[TabModalConfirmDialogMacBridge alloc] initWithDelegate:delegate]
autorelease],
@selector(alertDidEnd:returnCode:contextInfo:)),
delegate_(delegate) {
scoped_nsobject<NSAlert> alert([[NSAlert alloc] init]);
[alert setMessageText:
l10n_util::FixUpWindowsStyleLabel(delegate->GetTitle())];
[alert setInformativeText:
l10n_util::FixUpWindowsStyleLabel(delegate->GetMessage())];
[alert addButtonWithTitle:
l10n_util::FixUpWindowsStyleLabel(delegate->GetAcceptButtonTitle())];
[alert addButtonWithTitle:
l10n_util::FixUpWindowsStyleLabel(delegate->GetCancelButtonTitle())];
gfx::Image* icon = delegate->GetIcon();
if (icon)
[alert setIcon:icon->ToNSImage()];
set_sheet(alert);
delegate->set_window(new ConstrainedWindowMac(tab_contents, this));
}
TabModalConfirmDialogMac::~TabModalConfirmDialogMac() {
NSWindow* window = [(NSAlert*)sheet() window];
if (window && is_sheet_open()) {
[NSApp endSheet:window
returnCode:NSAlertSecondButtonReturn];
}
}
// "DeleteDelegate" refers to this class being a ConstrainedWindow delegate
// and deleting itself, not to deleting the member variable |delegate_|.
void TabModalConfirmDialogMac::DeleteDelegate() {
delete this;
}
|