Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(540)

Unified Diff: chrome/browser/views/jsmessage_box_dialog.cc

Issue 63033: Refactor AppModalDialogQueue and move JS Alert boxes into a MVC. (Closed)
Patch Set: whitespace Created 11 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/views/jsmessage_box_dialog.h ('k') | chrome/chrome.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/views/jsmessage_box_dialog.cc
diff --git a/chrome/browser/views/jsmessage_box_dialog.cc b/chrome/browser/views/jsmessage_box_dialog.cc
new file mode 100644
index 0000000000000000000000000000000000000000..bd0c7f2bb547edccaf456ee2b34444db2a42ce10
--- /dev/null
+++ b/chrome/browser/views/jsmessage_box_dialog.cc
@@ -0,0 +1,122 @@
+// 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 "chrome/browser/app_modal_dialog.h"
+#include "chrome/browser/tab_contents/web_contents.h"
+#include "chrome/common/l10n_util.h"
+#include "chrome/common/message_box_flags.h"
+#include "chrome/views/controls/message_box_view.h"
+#include "chrome/views/window/window.h"
+#include "grit/generated_resources.h"
+
+JavascriptMessageBoxDialog::JavascriptMessageBoxDialog(
+ AppModalDialog* parent,
+ const std::wstring& message_text,
+ const std::wstring& default_prompt_text,
+ bool display_suppress_checkbox)
+ : parent_(parent),
+ dialog_(NULL),
+ message_box_view_(new MessageBoxView(
+ parent->dialog_flags() | MessageBox::kAutoDetectAlignment,
+ message_text, default_prompt_text)) {
+ DCHECK(message_box_view_);
+
+ if (display_suppress_checkbox) {
+ message_box_view_->SetCheckBoxLabel(
+ l10n_util::GetString(IDS_JAVASCRIPT_MESSAGEBOX_SUPPRESS_OPTION));
+ }
+}
+
+JavascriptMessageBoxDialog::~JavascriptMessageBoxDialog() {
+}
+
+void JavascriptMessageBoxDialog::ShowModalDialog() {
+ HWND root_hwnd = GetAncestor(web_contents()->GetNativeView(),
+ GA_ROOT);
+ dialog_ = views::Window::CreateChromeWindow(root_hwnd, gfx::Rect(), this);
+ dialog_->Show();
+}
+
+void JavascriptMessageBoxDialog::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();
+}
+
+void JavascriptMessageBoxDialog::CloseModalDialog() {
+ // If the dialog is visible close it.
+ if (dialog_)
+ dialog_->Close();
+}
+
+//////////////////////////////////////////////////////////////////////////////
+// JavascriptMessageBoxDialog, views::DialogDelegate implementation:
+
+int JavascriptMessageBoxDialog::GetDialogButtons() const {
+ int dialog_buttons = 0;
+ if (parent_->dialog_flags() & MessageBox::kFlagHasOKButton)
+ dialog_buttons = DIALOGBUTTON_OK;
+
+ if (parent_->dialog_flags() & MessageBox::kFlagHasCancelButton)
+ dialog_buttons |= DIALOGBUTTON_CANCEL;
+
+ return dialog_buttons;
+}
+
+std::wstring JavascriptMessageBoxDialog::GetWindowTitle() const {
+ return parent_->title();;
+}
+
+
+void JavascriptMessageBoxDialog::WindowClosing() {
+ dialog_ = NULL;
+
+}
+
+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;
+}
+
+std::wstring JavascriptMessageBoxDialog::GetDialogButtonLabel(
+ DialogButton button) const {
+ if (parent_->is_before_unload_dialog()) {
+ if (button == DialogDelegate::DIALOGBUTTON_OK) {
+ return l10n_util::GetString(IDS_BEFOREUNLOAD_MESSAGEBOX_OK_BUTTON_LABEL);
+ } else if (button == DialogDelegate::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();
+}
« no previous file with comments | « chrome/browser/views/jsmessage_box_dialog.h ('k') | chrome/chrome.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698