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
|
// Copyright (c) 2012 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/simple_message_box.h"
#import <Cocoa/Cocoa.h>
#include "base/mac/scoped_nsobject.h"
#include "base/strings/sys_string_conversions.h"
#include "chrome/browser/ui/simple_message_box_internal.h"
#include "chrome/grit/generated_resources.h"
#include "components/startup_metric_utils/browser/startup_metric_utils.h"
#include "components/strings/grit/components_strings.h"
#include "ui/base/l10n/l10n_util_mac.h"
namespace chrome {
namespace {
MessageBoxResult ShowMessageBox(gfx::NativeWindow parent,
const base::string16& title,
const base::string16& message,
const base::string16& checkbox_text,
MessageBoxType type) {
startup_metric_utils::SetNonBrowserUIDisplayed();
if (internal::g_should_skip_message_box_for_test)
return MESSAGE_BOX_RESULT_YES;
// Ignore the title; it's the window title on other platforms and ignorable.
NSAlert* alert = [[[NSAlert alloc] init] autorelease];
[alert setMessageText:base::SysUTF16ToNSString(message)];
[alert setAlertStyle:NSWarningAlertStyle];
if (type == MESSAGE_BOX_TYPE_QUESTION) {
[alert addButtonWithTitle:
l10n_util::GetNSString(IDS_CONFIRM_MESSAGEBOX_YES_BUTTON_LABEL)];
[alert addButtonWithTitle:
l10n_util::GetNSString(IDS_CONFIRM_MESSAGEBOX_NO_BUTTON_LABEL)];
} else {
[alert addButtonWithTitle:l10n_util::GetNSString(IDS_OK)];
}
base::scoped_nsobject<NSButton> checkbox;
if (!checkbox_text.empty()) {
checkbox.reset([[NSButton alloc] initWithFrame:NSZeroRect]);
[checkbox setButtonType:NSSwitchButton];
[checkbox setTitle:base::SysUTF16ToNSString(checkbox_text)];
[checkbox sizeToFit];
[alert setAccessoryView:checkbox];
}
NSInteger result = [alert runModal];
if (result == NSAlertSecondButtonReturn)
return MESSAGE_BOX_RESULT_NO;
if (!checkbox || ([checkbox state] == NSOnState))
return MESSAGE_BOX_RESULT_YES;
return MESSAGE_BOX_RESULT_NO;
}
} // namespace
void ShowWarningMessageBox(gfx::NativeWindow parent,
const base::string16& title,
const base::string16& message) {
ShowMessageBox(parent, title, message, base::string16(),
MESSAGE_BOX_TYPE_WARNING);
}
bool ShowWarningMessageBoxWithCheckbox(gfx::NativeWindow parent,
const base::string16& title,
const base::string16& message,
const base::string16& checkbox_text) {
ShowMessageBox(parent, title, message, checkbox_text,
MESSAGE_BOX_TYPE_WARNING);
return false;
}
MessageBoxResult ShowQuestionMessageBox(gfx::NativeWindow parent,
const base::string16& title,
const base::string16& message) {
return ShowMessageBox(parent, title, message, base::string16(),
MESSAGE_BOX_TYPE_QUESTION);
}
bool CloseMessageBoxForTest(bool accept) {
NOTIMPLEMENTED();
return false;
}
} // namespace chrome
|