2013-05-03 13:03:26 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2013-08-13 08:51:47 +00:00
|
|
|
#include "browser/ui/message_box.h"
|
2013-05-03 13:03:26 +00:00
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
2013-09-22 09:11:09 +00:00
|
|
|
#include "base/callback.h"
|
2013-05-03 13:03:26 +00:00
|
|
|
#include "base/strings/sys_string_conversions.h"
|
2013-06-07 07:59:12 +00:00
|
|
|
#include "browser/native_window.h"
|
2013-08-13 09:00:30 +00:00
|
|
|
#include "browser/ui/nsalert_synchronous_sheet_mac.h"
|
2013-05-03 13:03:26 +00:00
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
2013-06-07 07:59:12 +00:00
|
|
|
int ShowMessageBox(NativeWindow* parent_window,
|
|
|
|
MessageBoxType type,
|
2013-05-03 13:03:26 +00:00
|
|
|
const std::vector<std::string>& buttons,
|
|
|
|
const std::string& title,
|
|
|
|
const std::string& message,
|
|
|
|
const std::string& detail) {
|
|
|
|
// Ignore the title; it's the window title on other platforms and ignorable.
|
|
|
|
NSAlert* alert = [[[NSAlert alloc] init] autorelease];
|
|
|
|
[alert setMessageText:base::SysUTF8ToNSString(message)];
|
|
|
|
[alert setInformativeText:base::SysUTF8ToNSString(detail)];
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case MESSAGE_BOX_TYPE_INFORMATION:
|
|
|
|
[alert setAlertStyle:NSInformationalAlertStyle];
|
|
|
|
break;
|
|
|
|
case MESSAGE_BOX_TYPE_WARNING:
|
|
|
|
[alert setAlertStyle:NSWarningAlertStyle];
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (size_t i = 0; i < buttons.size(); ++i) {
|
|
|
|
NSString* title = base::SysUTF8ToNSString(buttons[i]);
|
|
|
|
NSButton* button = [alert addButtonWithTitle:title];
|
|
|
|
[button setTag:i];
|
|
|
|
}
|
|
|
|
|
2013-06-07 07:59:12 +00:00
|
|
|
if (parent_window)
|
|
|
|
return [alert runModalSheetForWindow:parent_window->GetNativeWindow()];
|
|
|
|
else
|
|
|
|
return [alert runModal];
|
2013-05-03 13:03:26 +00:00
|
|
|
}
|
|
|
|
|
2013-09-22 09:11:09 +00:00
|
|
|
void ShowMessageBox(NativeWindow* parent_window,
|
|
|
|
MessageBoxType type,
|
|
|
|
const std::vector<std::string>& buttons,
|
|
|
|
const std::string& title,
|
|
|
|
const std::string& message,
|
|
|
|
const std::string& detail,
|
|
|
|
const MessageBoxCallback& callback) {
|
|
|
|
callback.Run(ShowMessageBox(
|
|
|
|
parent_window, type, buttons, title, message, detail));
|
|
|
|
}
|
|
|
|
|
2013-05-03 13:03:26 +00:00
|
|
|
} // namespace atom
|