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
|
// 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/views/jsmessage_box_dialog.h"
#include "app/l10n_util.h"
#include "app/message_box_flags.h"
#include "base/keyboard_codes.h"
#include "chrome/browser/app_modal_dialog.h"
#include "chrome/browser/tab_contents/tab_contents.h"
#include "grit/generated_resources.h"
#include "views/controls/message_box_view.h"
#include "views/window/window.h"
JavaScriptMessageBoxDialog::JavaScriptMessageBoxDialog(
JavaScriptAppModalDialog* parent,
const std::wstring& message_text,
const std::wstring& default_prompt_text,
bool display_suppress_checkbox)
: parent_(parent),
message_box_view_(new MessageBoxView(
parent->dialog_flags() | MessageBoxFlags::kAutoDetectAlignment,
message_text, default_prompt_text)) {
DCHECK(message_box_view_);
message_box_view_->AddAccelerator(
views::Accelerator(base::VKEY_C, false, true, false));
if (display_suppress_checkbox) {
message_box_view_->SetCheckBoxLabel(
l10n_util::GetString(IDS_JAVASCRIPT_MESSAGEBOX_SUPPRESS_OPTION));
}
}
JavaScriptMessageBoxDialog::~JavaScriptMessageBoxDialog() {
}
gfx::NativeWindow JavaScriptMessageBoxDialog::GetDialogRootWindow() {
return client()->GetMessageBoxRootWindow();
}
//////////////////////////////////////////////////////////////////////////////
// JavaScriptMessageBoxDialog, views::DialogDelegate implementation:
int JavaScriptMessageBoxDialog::GetDialogButtons() const {
int dialog_buttons = 0;
if (parent_->dialog_flags() & MessageBoxFlags::kFlagHasOKButton)
dialog_buttons = MessageBoxFlags::DIALOGBUTTON_OK;
if (parent_->dialog_flags() & MessageBoxFlags::kFlagHasCancelButton)
dialog_buttons |= MessageBoxFlags::DIALOGBUTTON_CANCEL;
return dialog_buttons;
}
std::wstring JavaScriptMessageBoxDialog::GetWindowTitle() const {
return parent_->title();
}
void JavaScriptMessageBoxDialog::WindowClosing() {
}
void JavaScriptMessageBoxDialog::DeleteDelegate() {
delete parent_;
delete this;
}
bool JavaScriptMessageBoxDialog::Cancel() {
parent_->OnCancel();
return true;
}
bool JavaScriptMessageBoxDialog::Accept() {
parent_->OnAccept(message_box_view_->GetInputText(),
message_box_view_->IsCheckBoxSelected());
return true;
}
void JavaScriptMessageBoxDialog::OnClose() {
parent_->OnClose();
}
std::wstring JavaScriptMessageBoxDialog::GetDialogButtonLabel(
MessageBoxFlags::DialogButton button) const {
if (parent_->is_before_unload_dialog()) {
if (button == MessageBoxFlags::DIALOGBUTTON_OK) {
return l10n_util::GetString(IDS_BEFOREUNLOAD_MESSAGEBOX_OK_BUTTON_LABEL);
} else if (button == MessageBoxFlags::DIALOGBUTTON_CANCEL) {
return l10n_util::GetString(
IDS_BEFOREUNLOAD_MESSAGEBOX_CANCEL_BUTTON_LABEL);
}
}
return DialogDelegate::GetDialogButtonLabel(button);
}
///////////////////////////////////////////////////////////////////////////////
// JavaScriptMessageBoxDialog, views::WindowDelegate implementation:
views::View* JavaScriptMessageBoxDialog::GetContentsView() {
return message_box_view_;
}
views::View* JavaScriptMessageBoxDialog::GetInitiallyFocusedView() {
if (message_box_view_->text_box())
return message_box_view_->text_box();
return views::DialogDelegate::GetInitiallyFocusedView();
}
|