electron/atom/browser/api/atom_api_dialog.cc

144 lines
5.2 KiB
C++
Raw Normal View History

// 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
// found in the LICENSE file.
#include <string>
#include <utility>
#include <vector>
#include "atom/browser/api/atom_api_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"
#include "atom/common/native_mate_converters/callback.h"
#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"
#include "native_mate/dictionary.h"
#include "atom/common/node_includes.h"
namespace mate {
template<>
struct Converter<file_dialog::Filter> {
static bool FromV8(v8::Isolate* isolate,
2015-05-22 11:11:22 +00:00
v8::Local<v8::Value> val,
file_dialog::Filter* out) {
mate::Dictionary dict;
if (!ConvertFromV8(isolate, val, &dict))
return false;
if (!dict.Get("name", &(out->first)))
return false;
if (!dict.Get("extensions", &(out->second)))
return false;
return true;
}
};
2017-02-08 01:32:58 +00:00
template<>
struct Converter<file_dialog::DialogSettings> {
static bool FromV8(v8::Isolate* isolate,
v8::Local<v8::Value> val,
file_dialog::DialogSettings* out) {
mate::Dictionary dict;
if (!ConvertFromV8(isolate, val, &dict))
return false;
dict.Get("window", &(out->parent_window));
dict.Get("title", &(out->title));
dict.Get("message", &(out->message));
2017-02-08 01:32:58 +00:00
dict.Get("buttonLabel", &(out->button_label));
dict.Get("nameFieldLabel", &(out->name_field_label));
2017-02-08 01:32:58 +00:00
dict.Get("defaultPath", &(out->default_path));
dict.Get("filters", &(out->filters));
dict.Get("properties", &(out->properties));
dict.Get("showsTagField", &(out->shows_tag_field));
#if defined(MAS_BUILD)
dict.Get("securityScopedBookmarks", &(out->security_scoped_bookmarks));
#endif
2017-02-08 01:32:58 +00:00
return true;
}
};
} // namespace mate
namespace {
void ShowMessageBox(int type,
const std::vector<std::string>& buttons,
int default_id,
2015-07-07 10:26:50 +00:00
int cancel_id,
2015-07-23 06:16:43 +00:00
int options,
const std::string& title,
const std::string& message,
const std::string& detail,
const std::string& checkbox_label,
bool checkbox_checked,
2015-01-05 23:08:42 +00:00
const gfx::ImageSkia& icon,
2014-04-24 05:10:04 +00:00
atom::NativeWindow* window,
mate::Arguments* args) {
2015-05-22 11:11:22 +00:00
v8::Local<v8::Value> peek = args->PeekNext();
atom::MessageBoxCallback callback;
2014-06-28 11:49:55 +00:00
if (mate::Converter<atom::MessageBoxCallback>::FromV8(args->isolate(),
peek,
&callback)) {
2017-03-31 18:09:13 +00:00
atom::ShowMessageBox(window, static_cast<atom::MessageBoxType>(type),
buttons, default_id, cancel_id, options, title,
message, detail, checkbox_label, checkbox_checked,
icon, callback);
} else {
2017-03-31 18:09:13 +00:00
int chosen = atom::ShowMessageBox(
window, static_cast<atom::MessageBoxType>(type), buttons, default_id,
cancel_id, options, title, message, detail, icon);
args->Return(chosen);
}
}
2017-02-08 01:32:58 +00:00
void ShowOpenDialog(const file_dialog::DialogSettings& settings,
mate::Arguments* args) {
2015-05-22 11:11:22 +00:00
v8::Local<v8::Value> peek = args->PeekNext();
file_dialog::OpenDialogCallback callback;
2014-06-28 11:49:55 +00:00
if (mate::Converter<file_dialog::OpenDialogCallback>::FromV8(args->isolate(),
peek,
&callback)) {
2017-02-08 01:32:58 +00:00
file_dialog::ShowOpenDialog(settings, callback);
} else {
std::vector<base::FilePath> paths;
2017-02-08 01:32:58 +00:00
if (file_dialog::ShowOpenDialog(settings, &paths))
args->Return(paths);
}
}
2017-02-08 01:32:58 +00:00
void ShowSaveDialog(const file_dialog::DialogSettings& settings,
mate::Arguments* args) {
2015-05-22 11:11:22 +00:00
v8::Local<v8::Value> peek = args->PeekNext();
file_dialog::SaveDialogCallback callback;
2014-06-28 11:49:55 +00:00
if (mate::Converter<file_dialog::SaveDialogCallback>::FromV8(args->isolate(),
peek,
&callback)) {
2017-02-08 01:32:58 +00:00
file_dialog::ShowSaveDialog(settings, callback);
} else {
base::FilePath path;
2017-02-08 01:32:58 +00:00
if (file_dialog::ShowSaveDialog(settings, &path))
args->Return(path);
}
}
2015-05-22 11:11:22 +00:00
void Initialize(v8::Local<v8::Object> exports, v8::Local<v8::Value> unused,
v8::Local<v8::Context> context, void* priv) {
mate::Dictionary dict(context->GetIsolate(), exports);
dict.SetMethod("showMessageBox", &ShowMessageBox);
2014-11-05 08:04:39 +00:00
dict.SetMethod("showErrorBox", &atom::ShowErrorBox);
dict.SetMethod("showOpenDialog", &ShowOpenDialog);
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
}
} // namespace
NODE_MODULE_CONTEXT_AWARE_BUILTIN(atom_browser_dialog, Initialize)