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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
|
// Copyright (c) 2006-2008 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/jsmessage_box_handler_win.h"
#include "base/string_util.h"
#include "chrome/browser/app_modal_dialog_queue.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/profile.h"
#include "chrome/browser/tab_contents/web_contents.h"
#include "chrome/common/gfx/text_elider.h"
#include "chrome/common/l10n_util.h"
#include "chrome/common/notification_service.h"
#include "chrome/common/notification_type.h"
#include "chrome/common/pref_names.h"
#include "chrome/common/pref_service.h"
#include "chrome/views/message_box_view.h"
#include "chrome/views/window.h"
#include "generated_resources.h"
void RunJavascriptMessageBox(WebContents* web_contents,
int dialog_flags,
const std::wstring& message_text,
const std::wstring& default_prompt_text,
bool display_suppress_checkbox,
IPC::Message* reply_msg) {
JavascriptMessageBoxHandler* handler =
new JavascriptMessageBoxHandler(web_contents, dialog_flags,
message_text, default_prompt_text,
display_suppress_checkbox, reply_msg);
AppModalDialogQueue::AddDialog(handler);
}
JavascriptMessageBoxHandler::JavascriptMessageBoxHandler(
WebContents* web_contents,
int dialog_flags,
const std::wstring& message_text,
const std::wstring& default_prompt_text,
bool display_suppress_checkbox,
IPC::Message* reply_msg)
: web_contents_(web_contents),
reply_msg_(reply_msg),
dialog_flags_(dialog_flags),
dialog_(NULL),
message_box_view_(new MessageBoxView(dialog_flags, message_text,
default_prompt_text)) {
DCHECK(message_box_view_);
DCHECK(reply_msg_);
if (display_suppress_checkbox) {
message_box_view_->SetCheckBoxLabel(
l10n_util::GetString(IDS_JAVASCRIPT_MESSAGEBOX_SUPPRESS_OPTION));
}
// Make sure we get navigation notifications so we know when our parent
// contents will disappear or navigate to a different page.
registrar_.Add(this, NotificationType::NAV_ENTRY_COMMITTED,
NotificationService::AllSources());
registrar_.Add(this, NotificationType::TAB_CONTENTS_DESTROYED,
NotificationService::AllSources());
}
JavascriptMessageBoxHandler::~JavascriptMessageBoxHandler() {
}
//////////////////////////////////////////////////////////////////////////////
// JavascriptMessageBoxHandler, views::DialogDelegate implementation:
int JavascriptMessageBoxHandler::GetDialogButtons() const {
int dialog_buttons = 0;
if (dialog_flags_ & MessageBoxView::kFlagHasOKButton)
dialog_buttons = DIALOGBUTTON_OK;
if (dialog_flags_ & MessageBoxView::kFlagHasCancelButton)
dialog_buttons |= DIALOGBUTTON_CANCEL;
return dialog_buttons;
}
std::wstring JavascriptMessageBoxHandler::GetWindowTitle() const {
if (!web_contents_)
return std::wstring();
GURL url = web_contents_->GetURL();
if (!url.has_host())
return l10n_util::GetString(IDS_JAVASCRIPT_MESSAGEBOX_DEFAULT_TITLE);
// We really only want the scheme, hostname, and port.
GURL::Replacements replacements;
replacements.ClearUsername();
replacements.ClearPassword();
replacements.ClearPath();
replacements.ClearQuery();
replacements.ClearRef();
GURL clean_url = url.ReplaceComponents(replacements);
// TODO(brettw) it should be easier than this to do the correct language
// handling without getting the accept language from the profile.
std::wstring base_address = gfx::ElideUrl(clean_url, ChromeFont(), 0,
web_contents_->profile()->GetPrefs()->GetString(prefs::kAcceptLanguages));
// Force URL to have LTR directionality.
if (l10n_util::GetTextDirection() == l10n_util::RIGHT_TO_LEFT)
l10n_util::WrapStringWithLTRFormatting(&base_address);
return l10n_util::GetStringF(IDS_JAVASCRIPT_MESSAGEBOX_TITLE, base_address);
}
void JavascriptMessageBoxHandler::WindowClosing() {
dialog_ = NULL;
if (message_box_view_->IsCheckBoxSelected() && web_contents_)
web_contents_->set_suppress_javascript_messages(true);
delete this;
}
bool JavascriptMessageBoxHandler::Cancel() {
// We need to do this before WM_DESTROY (WindowClosing()) as any parent frame
// will receive it's activation messages before this dialog receives
// WM_DESTROY. The parent frame would then try to activate any modal dialogs
// that were still open in the ModalDialogQueue, which would send activation
// back to this one. The framework should be improved to handle this, so this
// is a temporary workaround.
AppModalDialogQueue::ShowNextDialog();
if (web_contents_) {
web_contents_->OnJavaScriptMessageBoxClosed(reply_msg_, false,
EmptyWString());
}
return true;
}
bool JavascriptMessageBoxHandler::Accept() {
AppModalDialogQueue::ShowNextDialog();
if (web_contents_) {
web_contents_->OnJavaScriptMessageBoxClosed(
reply_msg_, true, message_box_view_->GetInputText());
}
return true;
}
//////////////////////////////////////////////////////////////////////////////
// JavascriptMessageBoxHandler, views::AppModalDialogDelegate
// implementation:
void JavascriptMessageBoxHandler::ShowModalDialog() {
// If the WebContents that created this dialog navigated away before this
// dialog became visible, simply show the next dialog if any.
if (!web_contents_) {
AppModalDialogQueue::ShowNextDialog();
delete this;
return;
}
web_contents_->Activate();
HWND root_hwnd = GetAncestor(web_contents_->GetNativeView(), GA_ROOT);
dialog_ = views::Window::CreateChromeWindow(root_hwnd, gfx::Rect(), this);
dialog_->Show();
}
void JavascriptMessageBoxHandler::ActivateModalDialog() {
// Ensure that the dialog is visible and at the top of the z-order. These
// conditions may not be true if the dialog was opened on a different virtual
// desktop to the one the browser window is on.
dialog_->Show();
dialog_->Activate();
}
///////////////////////////////////////////////////////////////////////////////
// JavascriptMessageBoxHandler, views::WindowDelegate implementation:
views::View* JavascriptMessageBoxHandler::GetContentsView() {
return message_box_view_;
}
views::View* JavascriptMessageBoxHandler::GetInitiallyFocusedView() {
if (message_box_view_->text_box())
return message_box_view_->text_box();
return views::AppModalDialogDelegate::GetInitiallyFocusedView();
}
///////////////////////////////////////////////////////////////////////////////
// JavascriptMessageBoxHandler, private:
void JavascriptMessageBoxHandler::Observe(NotificationType type,
const NotificationSource& source,
const NotificationDetails& details) {
bool web_contents_gone = false;
if (!web_contents_)
return;
if (type == NotificationType::NAV_ENTRY_COMMITTED &&
Source<NavigationController>(source).ptr() == web_contents_->controller())
web_contents_gone = true;
if (type == NotificationType::TAB_CONTENTS_DESTROYED &&
Source<TabContents>(source).ptr() ==
static_cast<TabContents*>(web_contents_))
web_contents_gone = true;
if (web_contents_gone) {
web_contents_ = NULL;
// If the dialog is visible close it.
if (dialog_)
dialog_->Close();
}
}
|