/chrome/browser/ui/cocoa/simple_message_box_cocoa.mm

https://github.com/chromium/chromium · Objective C++ · 60 lines · 45 code · 12 blank · 3 comment · 10 complexity · 8f933e748d39389975133b0c74a8175c MD5 · raw file

  1. // Copyright (c) 2012 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "chrome/browser/ui/simple_message_box.h"
  5. #import <Cocoa/Cocoa.h>
  6. #include <utility>
  7. #include "base/callback.h"
  8. #include "base/mac/scoped_nsobject.h"
  9. #include "base/strings/sys_string_conversions.h"
  10. #include "chrome/browser/ui/simple_message_box_internal.h"
  11. #include "chrome/grit/generated_resources.h"
  12. #include "components/startup_metric_utils/browser/startup_metric_utils.h"
  13. #include "components/strings/grit/components_strings.h"
  14. #include "ui/base/l10n/l10n_util_mac.h"
  15. namespace chrome {
  16. MessageBoxResult ShowMessageBoxCocoa(const std::u16string& message,
  17. MessageBoxType type,
  18. const std::u16string& checkbox_text) {
  19. startup_metric_utils::SetNonBrowserUIDisplayed();
  20. if (internal::g_should_skip_message_box_for_test)
  21. return MESSAGE_BOX_RESULT_YES;
  22. NSAlert* alert = [[[NSAlert alloc] init] autorelease];
  23. [alert setMessageText:base::SysUTF16ToNSString(message)];
  24. [alert setAlertStyle:NSWarningAlertStyle];
  25. if (type == MESSAGE_BOX_TYPE_QUESTION) {
  26. [alert addButtonWithTitle:l10n_util::GetNSString(
  27. IDS_CONFIRM_MESSAGEBOX_YES_BUTTON_LABEL)];
  28. [alert addButtonWithTitle:l10n_util::GetNSString(
  29. IDS_CONFIRM_MESSAGEBOX_NO_BUTTON_LABEL)];
  30. } else {
  31. [alert addButtonWithTitle:l10n_util::GetNSString(IDS_OK)];
  32. }
  33. base::scoped_nsobject<NSButton> checkbox;
  34. if (!checkbox_text.empty()) {
  35. checkbox.reset([[NSButton alloc] initWithFrame:NSZeroRect]);
  36. [checkbox setButtonType:NSSwitchButton];
  37. [checkbox setTitle:base::SysUTF16ToNSString(checkbox_text)];
  38. [checkbox sizeToFit];
  39. [alert setAccessoryView:checkbox];
  40. }
  41. NSInteger result = [alert runModal];
  42. if (result == NSAlertSecondButtonReturn)
  43. return MESSAGE_BOX_RESULT_NO;
  44. if (!checkbox || ([checkbox state] == NSOnState))
  45. return MESSAGE_BOX_RESULT_YES;
  46. return MESSAGE_BOX_RESULT_NO;
  47. }
  48. } // namespace chrome