2014-10-31 12:17:05 -06:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 03:49:37 -06:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-04-30 02:10:25 -06:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2020-02-04 13:19:40 -07:00
|
|
|
#include "shell/common/api/electron_api_clipboard.h"
|
2013-04-30 02:10:25 -06:00
|
|
|
|
2021-08-23 18:52:17 -06:00
|
|
|
#include <map>
|
|
|
|
|
2023-05-30 02:28:43 -06:00
|
|
|
#include "base/containers/contains.h"
|
2023-07-13 14:59:14 -06:00
|
|
|
#include "base/run_loop.h"
|
2015-07-06 23:17:33 -06:00
|
|
|
#include "base/strings/utf_string_conversions.h"
|
2023-08-14 02:35:37 -06:00
|
|
|
#include "shell/browser/browser.h"
|
2019-10-31 01:56:00 -06:00
|
|
|
#include "shell/common/gin_converters/image_converter.h"
|
|
|
|
#include "shell/common/gin_helper/dictionary.h"
|
2019-06-19 14:46:59 -06:00
|
|
|
#include "shell/common/node_includes.h"
|
2017-06-29 07:11:57 -06:00
|
|
|
#include "third_party/skia/include/core/SkBitmap.h"
|
2017-09-14 16:53:32 -06:00
|
|
|
#include "third_party/skia/include/core/SkImageInfo.h"
|
|
|
|
#include "third_party/skia/include/core/SkPixmap.h"
|
2019-02-04 02:08:36 -07:00
|
|
|
#include "ui/base/clipboard/clipboard_format_type.h"
|
2014-06-28 08:33:00 -06:00
|
|
|
#include "ui/base/clipboard/scoped_clipboard_writer.h"
|
2021-10-21 12:51:36 -06:00
|
|
|
#include "ui/gfx/codec/png_codec.h"
|
2013-12-11 00:48:19 -07:00
|
|
|
|
2022-06-29 13:55:47 -06:00
|
|
|
namespace electron::api {
|
2013-04-30 02:10:25 -06:00
|
|
|
|
2019-10-31 01:56:00 -06:00
|
|
|
ui::ClipboardBuffer Clipboard::GetClipboardBuffer(gin_helper::Arguments* args) {
|
2015-06-09 22:12:37 -06:00
|
|
|
std::string type;
|
|
|
|
if (args->GetNext(&type) && type == "selection")
|
2019-08-23 19:14:23 -06:00
|
|
|
return ui::ClipboardBuffer::kSelection;
|
2015-06-09 22:12:37 -06:00
|
|
|
else
|
2019-08-23 19:14:23 -06:00
|
|
|
return ui::ClipboardBuffer::kCopyPaste;
|
2015-06-09 22:12:37 -06:00
|
|
|
}
|
|
|
|
|
2021-03-16 10:18:45 -06:00
|
|
|
std::vector<std::u16string> Clipboard::AvailableFormats(
|
2019-10-31 01:56:00 -06:00
|
|
|
gin_helper::Arguments* args) {
|
2021-03-16 10:18:45 -06:00
|
|
|
std::vector<std::u16string> format_types;
|
2013-04-30 02:10:25 -06:00
|
|
|
ui::Clipboard* clipboard = ui::Clipboard::GetForCurrentThread();
|
2020-07-21 23:34:34 -06:00
|
|
|
clipboard->ReadAvailableTypes(GetClipboardBuffer(args),
|
|
|
|
/* data_dst = */ nullptr, &format_types);
|
2015-05-22 03:29:11 -06:00
|
|
|
return format_types;
|
2013-04-30 02:10:25 -06:00
|
|
|
}
|
|
|
|
|
2019-10-31 01:56:00 -06:00
|
|
|
bool Clipboard::Has(const std::string& format_string,
|
|
|
|
gin_helper::Arguments* args) {
|
2015-05-27 02:05:51 -06:00
|
|
|
ui::Clipboard* clipboard = ui::Clipboard::GetForCurrentThread();
|
2019-02-04 02:08:36 -07:00
|
|
|
ui::ClipboardFormatType format(
|
|
|
|
ui::ClipboardFormatType::GetType(format_string));
|
2021-07-06 06:17:13 -06:00
|
|
|
if (format.GetName().empty())
|
2021-08-23 18:52:17 -06:00
|
|
|
format = ui::ClipboardFormatType::CustomPlatformType(format_string);
|
2020-07-21 23:34:34 -06:00
|
|
|
return clipboard->IsFormatAvailable(format, GetClipboardBuffer(args),
|
|
|
|
/* data_dst = */ nullptr);
|
2015-05-27 02:05:51 -06:00
|
|
|
}
|
|
|
|
|
2017-03-17 10:58:35 -06:00
|
|
|
std::string Clipboard::Read(const std::string& format_string) {
|
2013-04-30 02:10:25 -06:00
|
|
|
ui::Clipboard* clipboard = ui::Clipboard::GetForCurrentThread();
|
2021-11-04 12:19:30 -06:00
|
|
|
// Prefer raw platform format names
|
|
|
|
ui::ClipboardFormatType rawFormat(
|
|
|
|
ui::ClipboardFormatType::CustomPlatformType(format_string));
|
|
|
|
bool rawFormatAvailable = clipboard->IsFormatAvailable(
|
|
|
|
rawFormat, ui::ClipboardBuffer::kCopyPaste, /* data_dst = */ nullptr);
|
2022-02-09 19:58:52 -07:00
|
|
|
#if BUILDFLAG(IS_LINUX)
|
2021-11-04 12:19:30 -06:00
|
|
|
if (!rawFormatAvailable) {
|
|
|
|
rawFormatAvailable = clipboard->IsFormatAvailable(
|
|
|
|
rawFormat, ui::ClipboardBuffer::kSelection, /* data_dst = */ nullptr);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if (rawFormatAvailable) {
|
|
|
|
std::string data;
|
|
|
|
clipboard->ReadData(rawFormat, /* data_dst = */ nullptr, &data);
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
// Otherwise, resolve custom format names
|
2021-08-23 18:52:17 -06:00
|
|
|
std::map<std::string, std::string> custom_format_names;
|
|
|
|
custom_format_names =
|
|
|
|
clipboard->ExtractCustomPlatformNames(ui::ClipboardBuffer::kCopyPaste,
|
|
|
|
/* data_dst = */ nullptr);
|
2022-02-09 19:58:52 -07:00
|
|
|
#if BUILDFLAG(IS_LINUX)
|
2023-05-30 02:28:43 -06:00
|
|
|
if (!base::Contains(custom_format_names, format_string)) {
|
2021-08-23 18:52:17 -06:00
|
|
|
custom_format_names =
|
|
|
|
clipboard->ExtractCustomPlatformNames(ui::ClipboardBuffer::kSelection,
|
|
|
|
/* data_dst = */ nullptr);
|
|
|
|
}
|
|
|
|
#endif
|
2013-04-30 02:10:25 -06:00
|
|
|
|
2021-11-01 08:00:36 -06:00
|
|
|
ui::ClipboardFormatType format;
|
2023-05-30 02:28:43 -06:00
|
|
|
if (base::Contains(custom_format_names, format_string)) {
|
2021-11-01 08:00:36 -06:00
|
|
|
format =
|
|
|
|
ui::ClipboardFormatType(ui::ClipboardFormatType::CustomPlatformType(
|
|
|
|
custom_format_names[format_string]));
|
|
|
|
} else {
|
|
|
|
format = ui::ClipboardFormatType(
|
|
|
|
ui::ClipboardFormatType::CustomPlatformType(format_string));
|
|
|
|
}
|
2013-04-30 02:10:25 -06:00
|
|
|
std::string data;
|
2020-07-21 23:34:34 -06:00
|
|
|
clipboard->ReadData(format, /* data_dst = */ nullptr, &data);
|
2021-11-01 08:00:36 -06:00
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
v8::Local<v8::Value> Clipboard::ReadBuffer(const std::string& format_string,
|
|
|
|
gin_helper::Arguments* args) {
|
|
|
|
std::string data = Read(format_string);
|
2018-04-16 13:08:17 -06:00
|
|
|
return node::Buffer::Copy(args->isolate(), data.data(), data.length())
|
|
|
|
.ToLocalChecked();
|
2017-03-16 16:42:23 -06:00
|
|
|
}
|
|
|
|
|
2017-05-22 14:53:58 -06:00
|
|
|
void Clipboard::WriteBuffer(const std::string& format,
|
2017-04-20 23:47:04 -06:00
|
|
|
const v8::Local<v8::Value> buffer,
|
2019-10-31 01:56:00 -06:00
|
|
|
gin_helper::Arguments* args) {
|
2017-05-22 14:53:58 -06:00
|
|
|
if (!node::Buffer::HasInstance(buffer)) {
|
|
|
|
args->ThrowError("buffer must be a node Buffer");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-08-23 19:14:23 -06:00
|
|
|
ui::ScopedClipboardWriter writer(GetClipboardBuffer(args));
|
2019-10-28 16:12:35 -06:00
|
|
|
base::span<const uint8_t> payload_span(
|
|
|
|
reinterpret_cast<const uint8_t*>(node::Buffer::Data(buffer)),
|
|
|
|
node::Buffer::Length(buffer));
|
2021-11-04 12:19:30 -06:00
|
|
|
writer.WriteUnsafeRawData(base::UTF8ToUTF16(format),
|
|
|
|
mojo_base::BigBuffer(payload_span));
|
2017-04-20 23:47:04 -06:00
|
|
|
}
|
|
|
|
|
2019-10-31 01:56:00 -06:00
|
|
|
void Clipboard::Write(const gin_helper::Dictionary& data,
|
|
|
|
gin_helper::Arguments* args) {
|
2019-08-23 19:14:23 -06:00
|
|
|
ui::ScopedClipboardWriter writer(GetClipboardBuffer(args));
|
2021-03-16 10:18:45 -06:00
|
|
|
std::u16string text, html, bookmark;
|
2015-07-06 23:17:33 -06:00
|
|
|
gfx::Image image;
|
|
|
|
|
2016-06-24 16:14:28 -06:00
|
|
|
if (data.Get("text", &text)) {
|
2015-07-06 23:17:33 -06:00
|
|
|
writer.WriteText(text);
|
|
|
|
|
2016-06-24 16:14:28 -06:00
|
|
|
if (data.Get("bookmark", &bookmark))
|
|
|
|
writer.WriteBookmark(bookmark, base::UTF16ToUTF8(text));
|
|
|
|
}
|
|
|
|
|
2016-02-04 11:38:47 -07:00
|
|
|
if (data.Get("rtf", &text)) {
|
|
|
|
std::string rtf = base::UTF16ToUTF8(text);
|
|
|
|
writer.WriteRTF(rtf);
|
|
|
|
}
|
|
|
|
|
2015-07-06 23:17:33 -06:00
|
|
|
if (data.Get("html", &html))
|
2023-03-10 09:07:42 -07:00
|
|
|
writer.WriteHTML(html, std::string(), ui::ClipboardContentType::kSanitized);
|
2015-07-06 23:17:33 -06:00
|
|
|
|
|
|
|
if (data.Get("image", &image))
|
|
|
|
writer.WriteImage(image.AsBitmap());
|
|
|
|
}
|
|
|
|
|
2021-03-16 10:18:45 -06:00
|
|
|
std::u16string Clipboard::ReadText(gin_helper::Arguments* args) {
|
|
|
|
std::u16string data;
|
2015-07-06 23:17:33 -06:00
|
|
|
ui::Clipboard* clipboard = ui::Clipboard::GetForCurrentThread();
|
2019-08-23 19:14:23 -06:00
|
|
|
auto type = GetClipboardBuffer(args);
|
2021-07-26 10:02:16 -06:00
|
|
|
if (clipboard->IsFormatAvailable(ui::ClipboardFormatType::PlainTextType(),
|
2020-07-21 23:34:34 -06:00
|
|
|
type, /* data_dst = */ nullptr)) {
|
|
|
|
clipboard->ReadText(type, /* data_dst = */ nullptr, &data);
|
2020-01-17 11:41:52 -07:00
|
|
|
} else {
|
2022-02-09 19:58:52 -07:00
|
|
|
#if BUILDFLAG(IS_WIN)
|
2021-07-26 10:02:16 -06:00
|
|
|
if (clipboard->IsFormatAvailable(ui::ClipboardFormatType::PlainTextAType(),
|
|
|
|
type,
|
|
|
|
/* data_dst = */ nullptr)) {
|
2020-01-17 11:41:52 -07:00
|
|
|
std::string result;
|
2020-07-21 23:34:34 -06:00
|
|
|
clipboard->ReadAsciiText(type, /* data_dst = */ nullptr, &result);
|
2020-01-17 11:41:52 -07:00
|
|
|
data = base::ASCIIToUTF16(result);
|
|
|
|
}
|
|
|
|
#endif
|
2015-07-06 23:17:33 -06:00
|
|
|
}
|
2014-04-15 01:50:00 -06:00
|
|
|
return data;
|
2013-04-30 02:10:25 -06:00
|
|
|
}
|
|
|
|
|
2021-03-16 10:18:45 -06:00
|
|
|
void Clipboard::WriteText(const std::u16string& text,
|
2019-10-31 01:56:00 -06:00
|
|
|
gin_helper::Arguments* args) {
|
2019-08-23 19:14:23 -06:00
|
|
|
ui::ScopedClipboardWriter writer(GetClipboardBuffer(args));
|
2014-06-28 08:33:00 -06:00
|
|
|
writer.WriteText(text);
|
2013-04-30 02:10:25 -06:00
|
|
|
}
|
|
|
|
|
2021-03-16 10:18:45 -06:00
|
|
|
std::u16string Clipboard::ReadRTF(gin_helper::Arguments* args) {
|
2016-02-05 01:06:21 -07:00
|
|
|
std::string data;
|
|
|
|
ui::Clipboard* clipboard = ui::Clipboard::GetForCurrentThread();
|
2020-07-21 23:34:34 -06:00
|
|
|
clipboard->ReadRTF(GetClipboardBuffer(args), /* data_dst = */ nullptr, &data);
|
2016-02-05 01:06:21 -07:00
|
|
|
return base::UTF8ToUTF16(data);
|
|
|
|
}
|
|
|
|
|
2019-10-31 01:56:00 -06:00
|
|
|
void Clipboard::WriteRTF(const std::string& text, gin_helper::Arguments* args) {
|
2019-08-23 19:14:23 -06:00
|
|
|
ui::ScopedClipboardWriter writer(GetClipboardBuffer(args));
|
2016-02-04 11:38:47 -07:00
|
|
|
writer.WriteRTF(text);
|
|
|
|
}
|
|
|
|
|
2021-03-16 10:18:45 -06:00
|
|
|
std::u16string Clipboard::ReadHTML(gin_helper::Arguments* args) {
|
|
|
|
std::u16string data;
|
|
|
|
std::u16string html;
|
2015-05-22 03:29:11 -06:00
|
|
|
std::string url;
|
2016-03-07 21:40:10 -07:00
|
|
|
uint32_t start;
|
|
|
|
uint32_t end;
|
2015-06-09 22:12:37 -06:00
|
|
|
ui::Clipboard* clipboard = ui::Clipboard::GetForCurrentThread();
|
2020-07-21 23:34:34 -06:00
|
|
|
clipboard->ReadHTML(GetClipboardBuffer(args), /* data_dst = */ nullptr, &html,
|
|
|
|
&url, &start, &end);
|
2015-05-22 03:29:11 -06:00
|
|
|
data = html.substr(start, end - start);
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2021-03-16 10:18:45 -06:00
|
|
|
void Clipboard::WriteHTML(const std::u16string& html,
|
2019-10-31 01:56:00 -06:00
|
|
|
gin_helper::Arguments* args) {
|
2019-08-23 19:14:23 -06:00
|
|
|
ui::ScopedClipboardWriter writer(GetClipboardBuffer(args));
|
2023-03-10 09:07:42 -07:00
|
|
|
writer.WriteHTML(html, std::string(), ui::ClipboardContentType::kSanitized);
|
2015-05-22 03:29:11 -06:00
|
|
|
}
|
|
|
|
|
2019-10-31 01:56:00 -06:00
|
|
|
v8::Local<v8::Value> Clipboard::ReadBookmark(gin_helper::Arguments* args) {
|
2021-03-16 10:18:45 -06:00
|
|
|
std::u16string title;
|
2016-06-24 16:08:12 -06:00
|
|
|
std::string url;
|
2019-10-31 01:56:00 -06:00
|
|
|
gin_helper::Dictionary dict =
|
|
|
|
gin_helper::Dictionary::CreateEmpty(args->isolate());
|
2016-06-24 16:08:12 -06:00
|
|
|
ui::Clipboard* clipboard = ui::Clipboard::GetForCurrentThread();
|
2020-07-21 23:34:34 -06:00
|
|
|
clipboard->ReadBookmark(/* data_dst = */ nullptr, &title, &url);
|
2016-06-24 16:08:12 -06:00
|
|
|
dict.Set("title", title);
|
|
|
|
dict.Set("url", url);
|
|
|
|
return dict.GetHandle();
|
|
|
|
}
|
|
|
|
|
2021-03-16 10:18:45 -06:00
|
|
|
void Clipboard::WriteBookmark(const std::u16string& title,
|
2016-10-24 02:13:34 -06:00
|
|
|
const std::string& url,
|
2019-10-31 01:56:00 -06:00
|
|
|
gin_helper::Arguments* args) {
|
2019-08-23 19:14:23 -06:00
|
|
|
ui::ScopedClipboardWriter writer(GetClipboardBuffer(args));
|
2016-06-24 16:08:12 -06:00
|
|
|
writer.WriteBookmark(title, url);
|
|
|
|
}
|
|
|
|
|
2019-10-31 01:56:00 -06:00
|
|
|
gfx::Image Clipboard::ReadImage(gin_helper::Arguments* args) {
|
2023-08-14 02:35:37 -06:00
|
|
|
// The ReadPng uses thread pool which requires app ready.
|
|
|
|
if (IsBrowserProcess() && !Browser::Get()->is_ready()) {
|
|
|
|
args->ThrowError(
|
|
|
|
"clipboard.readImage is available only after app ready in the main "
|
|
|
|
"process");
|
|
|
|
return gfx::Image();
|
|
|
|
}
|
|
|
|
|
2015-06-09 22:12:37 -06:00
|
|
|
ui::Clipboard* clipboard = ui::Clipboard::GetForCurrentThread();
|
2021-06-03 02:05:04 -06:00
|
|
|
absl::optional<gfx::Image> image;
|
2023-07-13 14:59:14 -06:00
|
|
|
|
2023-08-14 02:35:37 -06:00
|
|
|
base::RunLoop run_loop(base::RunLoop::Type::kNestableTasksAllowed);
|
2023-07-13 14:59:14 -06:00
|
|
|
base::RepeatingClosure callback = run_loop.QuitClosure();
|
2021-10-21 12:51:36 -06:00
|
|
|
clipboard->ReadPng(
|
2020-04-13 17:39:26 -06:00
|
|
|
GetClipboardBuffer(args),
|
2020-07-21 23:34:34 -06:00
|
|
|
/* data_dst = */ nullptr,
|
2021-01-24 18:27:40 -07:00
|
|
|
base::BindOnce(
|
2023-07-13 14:59:14 -06:00
|
|
|
[](absl::optional<gfx::Image>* image, base::RepeatingClosure cb,
|
2021-10-21 12:51:36 -06:00
|
|
|
const std::vector<uint8_t>& result) {
|
|
|
|
SkBitmap bitmap;
|
|
|
|
gfx::PNGCodec::Decode(result.data(), result.size(), &bitmap);
|
|
|
|
image->emplace(gfx::Image::CreateFrom1xBitmap(bitmap));
|
2023-07-13 14:59:14 -06:00
|
|
|
std::move(cb).Run();
|
2020-04-13 17:39:26 -06:00
|
|
|
},
|
2023-07-13 14:59:14 -06:00
|
|
|
&image, std::move(callback)));
|
|
|
|
run_loop.Run();
|
|
|
|
|
2020-04-13 17:39:26 -06:00
|
|
|
DCHECK(image.has_value());
|
|
|
|
return image.value();
|
2015-02-10 23:55:44 -07:00
|
|
|
}
|
|
|
|
|
2019-10-31 01:56:00 -06:00
|
|
|
void Clipboard::WriteImage(const gfx::Image& image,
|
|
|
|
gin_helper::Arguments* args) {
|
2019-08-23 19:14:23 -06:00
|
|
|
ui::ScopedClipboardWriter writer(GetClipboardBuffer(args));
|
2017-09-14 16:53:32 -06:00
|
|
|
SkBitmap orig = image.AsBitmap();
|
2017-08-08 04:02:20 -06:00
|
|
|
SkBitmap bmp;
|
2017-09-14 16:53:32 -06:00
|
|
|
|
2018-04-16 10:14:35 -06:00
|
|
|
if (bmp.tryAllocPixels(orig.info()) &&
|
2018-04-16 13:08:17 -06:00
|
|
|
orig.readPixels(bmp.info(), bmp.getPixels(), bmp.rowBytes(), 0, 0)) {
|
2018-04-16 10:14:35 -06:00
|
|
|
writer.WriteImage(bmp);
|
2017-06-29 07:11:57 -06:00
|
|
|
}
|
2015-03-25 22:54:15 -06:00
|
|
|
}
|
|
|
|
|
2022-02-09 19:58:52 -07:00
|
|
|
#if !BUILDFLAG(IS_MAC)
|
2021-03-16 10:18:45 -06:00
|
|
|
void Clipboard::WriteFindText(const std::u16string& text) {}
|
|
|
|
std::u16string Clipboard::ReadFindText() {
|
|
|
|
return std::u16string();
|
2018-04-16 13:08:17 -06:00
|
|
|
}
|
2016-10-24 02:13:34 -06:00
|
|
|
#endif
|
|
|
|
|
2019-10-31 01:56:00 -06:00
|
|
|
void Clipboard::Clear(gin_helper::Arguments* args) {
|
2019-08-23 19:14:23 -06:00
|
|
|
ui::Clipboard::GetForCurrentThread()->Clear(GetClipboardBuffer(args));
|
2013-04-30 02:10:25 -06:00
|
|
|
}
|
|
|
|
|
2022-06-29 13:55:47 -06:00
|
|
|
} // namespace electron::api
|
2016-10-24 02:13:34 -06:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2018-04-16 13:08:17 -06:00
|
|
|
void Initialize(v8::Local<v8::Object> exports,
|
|
|
|
v8::Local<v8::Value> unused,
|
|
|
|
v8::Local<v8::Context> context,
|
|
|
|
void* priv) {
|
2019-10-31 01:56:00 -06:00
|
|
|
gin_helper::Dictionary dict(context->GetIsolate(), exports);
|
2019-06-19 15:23:04 -06:00
|
|
|
dict.SetMethod("availableFormats",
|
|
|
|
&electron::api::Clipboard::AvailableFormats);
|
|
|
|
dict.SetMethod("has", &electron::api::Clipboard::Has);
|
|
|
|
dict.SetMethod("read", &electron::api::Clipboard::Read);
|
|
|
|
dict.SetMethod("write", &electron::api::Clipboard::Write);
|
|
|
|
dict.SetMethod("readText", &electron::api::Clipboard::ReadText);
|
|
|
|
dict.SetMethod("writeText", &electron::api::Clipboard::WriteText);
|
|
|
|
dict.SetMethod("readRTF", &electron::api::Clipboard::ReadRTF);
|
|
|
|
dict.SetMethod("writeRTF", &electron::api::Clipboard::WriteRTF);
|
|
|
|
dict.SetMethod("readHTML", &electron::api::Clipboard::ReadHTML);
|
|
|
|
dict.SetMethod("writeHTML", &electron::api::Clipboard::WriteHTML);
|
|
|
|
dict.SetMethod("readBookmark", &electron::api::Clipboard::ReadBookmark);
|
|
|
|
dict.SetMethod("writeBookmark", &electron::api::Clipboard::WriteBookmark);
|
|
|
|
dict.SetMethod("readImage", &electron::api::Clipboard::ReadImage);
|
|
|
|
dict.SetMethod("writeImage", &electron::api::Clipboard::WriteImage);
|
|
|
|
dict.SetMethod("readFindText", &electron::api::Clipboard::ReadFindText);
|
|
|
|
dict.SetMethod("writeFindText", &electron::api::Clipboard::WriteFindText);
|
|
|
|
dict.SetMethod("readBuffer", &electron::api::Clipboard::ReadBuffer);
|
|
|
|
dict.SetMethod("writeBuffer", &electron::api::Clipboard::WriteBuffer);
|
|
|
|
dict.SetMethod("clear", &electron::api::Clipboard::Clear);
|
2013-04-30 02:10:25 -06:00
|
|
|
}
|
|
|
|
|
2014-04-15 01:50:00 -06:00
|
|
|
} // namespace
|
2013-04-30 02:10:25 -06:00
|
|
|
|
2023-02-08 18:31:38 -07:00
|
|
|
NODE_LINKED_BINDING_CONTEXT_AWARE(electron_common_clipboard, Initialize)
|