2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-05-03 11:31:24 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-03-16 01:13:06 +00:00
|
|
|
#include <string>
|
2014-08-06 04:44:02 +00:00
|
|
|
#include <utility>
|
2014-03-16 01:13:06 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2018-02-22 03:49:17 +00:00
|
|
|
#include "atom/browser/api/atom_api_browser_window.h"
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/browser/native_window.h"
|
2017-04-03 19:05:24 +00:00
|
|
|
#include "atom/browser/ui/certificate_trust.h"
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/browser/ui/file_dialog.h"
|
|
|
|
#include "atom/browser/ui/message_box.h"
|
2015-08-07 10:10:19 +00:00
|
|
|
#include "atom/common/native_mate_converters/callback.h"
|
2018-11-08 14:51:06 +00:00
|
|
|
#include "atom/common/native_mate_converters/file_dialog_converter.h"
|
2014-04-17 05:45:14 +00:00
|
|
|
#include "atom/common/native_mate_converters/file_path_converter.h"
|
2015-01-05 23:08:42 +00:00
|
|
|
#include "atom/common/native_mate_converters/image_converter.h"
|
2017-04-03 19:05:24 +00:00
|
|
|
#include "atom/common/native_mate_converters/net_converter.h"
|
2019-03-12 00:13:43 +00:00
|
|
|
#include "atom/common/node_includes.h"
|
2019-03-05 13:54:48 +00:00
|
|
|
#include "atom/common/promise_util.h"
|
2014-04-16 07:14:44 +00:00
|
|
|
#include "native_mate/dictionary.h"
|
|
|
|
|
2013-05-03 11:31:24 +00:00
|
|
|
namespace {
|
|
|
|
|
2019-03-12 18:06:59 +00:00
|
|
|
int ShowMessageBoxSync(int type,
|
|
|
|
const std::vector<std::string>& buttons,
|
|
|
|
int default_id,
|
|
|
|
int cancel_id,
|
|
|
|
int options,
|
|
|
|
const std::string& title,
|
|
|
|
const std::string& message,
|
|
|
|
const std::string& detail,
|
|
|
|
const std::string& checkbox_label,
|
|
|
|
bool checkbox_checked,
|
|
|
|
const gfx::ImageSkia& icon,
|
|
|
|
atom::NativeWindow* window) {
|
|
|
|
return atom::ShowMessageBoxSync(
|
|
|
|
window, static_cast<atom::MessageBoxType>(type), buttons, default_id,
|
|
|
|
cancel_id, options, title, message, detail, icon);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ResolvePromiseObject(atom::util::Promise promise,
|
|
|
|
int result,
|
|
|
|
bool checkbox_checked) {
|
|
|
|
mate::Dictionary dict = mate::Dictionary::CreateEmpty(promise.isolate());
|
|
|
|
|
|
|
|
dict.Set("response", result);
|
|
|
|
dict.Set("checkboxChecked", checkbox_checked);
|
|
|
|
|
|
|
|
promise.Resolve(dict.GetHandle());
|
|
|
|
}
|
|
|
|
|
|
|
|
v8::Local<v8::Promise> ShowMessageBox(int type,
|
|
|
|
const std::vector<std::string>& buttons,
|
|
|
|
int default_id,
|
|
|
|
int cancel_id,
|
|
|
|
int options,
|
|
|
|
const std::string& title,
|
|
|
|
const std::string& message,
|
|
|
|
const std::string& detail,
|
|
|
|
const std::string& checkbox_label,
|
|
|
|
bool checkbox_checked,
|
|
|
|
const gfx::ImageSkia& icon,
|
|
|
|
atom::NativeWindow* window,
|
|
|
|
mate::Arguments* args) {
|
|
|
|
v8::Isolate* isolate = args->isolate();
|
|
|
|
atom::util::Promise promise(isolate);
|
|
|
|
v8::Local<v8::Promise> handle = promise.GetHandle();
|
|
|
|
|
|
|
|
atom::ShowMessageBox(
|
|
|
|
window, static_cast<atom::MessageBoxType>(type), buttons, default_id,
|
|
|
|
cancel_id, options, title, message, detail, checkbox_label,
|
|
|
|
checkbox_checked, icon,
|
|
|
|
base::BindOnce(&ResolvePromiseObject, std::move(promise)));
|
|
|
|
|
|
|
|
return handle;
|
2013-05-03 13:03:26 +00:00
|
|
|
}
|
|
|
|
|
2019-03-05 13:54:48 +00:00
|
|
|
void ShowOpenDialogSync(const file_dialog::DialogSettings& settings,
|
|
|
|
mate::Arguments* args) {
|
|
|
|
std::vector<base::FilePath> paths;
|
|
|
|
if (file_dialog::ShowOpenDialogSync(settings, &paths))
|
|
|
|
args->Return(paths);
|
|
|
|
}
|
|
|
|
|
|
|
|
v8::Local<v8::Promise> ShowOpenDialog(
|
|
|
|
const file_dialog::DialogSettings& settings,
|
|
|
|
mate::Arguments* args) {
|
|
|
|
atom::util::Promise promise(args->isolate());
|
|
|
|
v8::Local<v8::Promise> handle = promise.GetHandle();
|
|
|
|
file_dialog::ShowOpenDialog(settings, std::move(promise));
|
|
|
|
return handle;
|
2013-05-03 11:31:24 +00:00
|
|
|
}
|
|
|
|
|
2019-03-05 21:48:20 +00:00
|
|
|
void ShowSaveDialogSync(const file_dialog::DialogSettings& settings,
|
|
|
|
mate::Arguments* args) {
|
|
|
|
base::FilePath path;
|
|
|
|
if (file_dialog::ShowSaveDialogSync(settings, &path))
|
|
|
|
args->Return(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
v8::Local<v8::Promise> ShowSaveDialog(
|
|
|
|
const file_dialog::DialogSettings& settings,
|
|
|
|
mate::Arguments* args) {
|
|
|
|
atom::util::Promise promise(args->isolate());
|
|
|
|
v8::Local<v8::Promise> handle = promise.GetHandle();
|
|
|
|
|
|
|
|
file_dialog::ShowSaveDialog(settings, std::move(promise));
|
|
|
|
return handle;
|
2013-05-03 11:31:24 +00:00
|
|
|
}
|
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
void Initialize(v8::Local<v8::Object> exports,
|
|
|
|
v8::Local<v8::Value> unused,
|
|
|
|
v8::Local<v8::Context> context,
|
|
|
|
void* priv) {
|
2014-06-29 12:48:44 +00:00
|
|
|
mate::Dictionary dict(context->GetIsolate(), exports);
|
2019-03-12 18:06:59 +00:00
|
|
|
dict.SetMethod("showMessageBoxSync", &ShowMessageBoxSync);
|
2014-04-16 07:14:44 +00:00
|
|
|
dict.SetMethod("showMessageBox", &ShowMessageBox);
|
2014-11-05 08:04:39 +00:00
|
|
|
dict.SetMethod("showErrorBox", &atom::ShowErrorBox);
|
2019-03-05 13:54:48 +00:00
|
|
|
dict.SetMethod("showOpenDialogSync", &ShowOpenDialogSync);
|
2014-04-16 07:14:44 +00:00
|
|
|
dict.SetMethod("showOpenDialog", &ShowOpenDialog);
|
2019-03-05 21:48:20 +00:00
|
|
|
dict.SetMethod("showSaveDialogSync", &ShowSaveDialogSync);
|
2014-04-16 07:14:44 +00:00
|
|
|
dict.SetMethod("showSaveDialog", &ShowSaveDialog);
|
2017-04-06 01:09:58 +00:00
|
|
|
#if defined(OS_MACOSX) || defined(OS_WIN)
|
2017-04-04 01:40:46 +00:00
|
|
|
dict.SetMethod("showCertificateTrustDialog",
|
|
|
|
&certificate_trust::ShowCertificateTrust);
|
2017-04-03 19:25:09 +00:00
|
|
|
#endif
|
2014-04-16 07:14:44 +00:00
|
|
|
}
|
2013-05-03 11:31:24 +00:00
|
|
|
|
2014-04-16 07:14:44 +00:00
|
|
|
} // namespace
|
2013-05-03 11:31:24 +00:00
|
|
|
|
2019-03-08 18:29:52 +00:00
|
|
|
NODE_LINKED_MODULE_CONTEXT_AWARE(atom_browser_dialog, Initialize)
|