electron/shell/common/api/electron_api_clipboard.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

74 lines
2.6 KiB
C
Raw Normal View History

2016-10-24 08:13:34 +00:00
// Copyright (c) 2016 GitHub, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#ifndef ELECTRON_SHELL_COMMON_API_ELECTRON_API_CLIPBOARD_H_
#define ELECTRON_SHELL_COMMON_API_ELECTRON_API_CLIPBOARD_H_
2016-10-24 08:13:34 +00:00
#include <string>
#include <vector>
feat: implement File System API support (#41827) * feat: implement File System API support Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * test: add a test for writable permission checking Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * fix: gn check include issues Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * chore: feedback from review Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * chore: cleanup feedback from review Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * refactor: namespace to electron Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * fixup! chore: cleanup feedback from review Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * chore: address more feedback from review Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * 5301485: Add content analysis to File System Access Javascript API. https://chromium-review.googlesource.com/c/chromium/src/+/5301485 Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * docs: improve typing of details object Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * chore: address outstanding todo Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * refactor: use Chrome's file system access blocklist Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * lint Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * fix: Windows build Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * test: clarify test verbiage Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> --------- Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
2024-04-15 19:22:17 +00:00
#include "shell/common/gin_converters/file_path_converter.h"
2016-10-24 08:13:34 +00:00
#include "ui/base/clipboard/clipboard.h"
#include "ui/gfx/image/image.h"
#include "v8/include/v8.h"
namespace gin_helper {
class Arguments;
class Dictionary;
} // namespace gin_helper
2016-10-24 08:13:34 +00:00
2022-06-29 19:55:47 +00:00
namespace electron::api {
2016-10-24 08:13:34 +00:00
class Clipboard {
public:
// disable copy
Clipboard(const Clipboard&) = delete;
Clipboard& operator=(const Clipboard&) = delete;
static ui::ClipboardBuffer GetClipboardBuffer(gin_helper::Arguments* args);
static std::vector<std::u16string> AvailableFormats(
gin_helper::Arguments* args);
static bool Has(const std::string& format_string,
gin_helper::Arguments* args);
static void Clear(gin_helper::Arguments* args);
2016-10-24 08:13:34 +00:00
2017-03-17 16:58:35 +00:00
static std::string Read(const std::string& format_string);
static void Write(const gin_helper::Dictionary& data,
gin_helper::Arguments* args);
2016-10-24 08:13:34 +00:00
static std::u16string ReadText(gin_helper::Arguments* args);
static void WriteText(const std::u16string& text,
gin_helper::Arguments* args);
2016-10-24 08:13:34 +00:00
static std::u16string ReadRTF(gin_helper::Arguments* args);
static void WriteRTF(const std::string& text, gin_helper::Arguments* args);
2016-10-24 08:13:34 +00:00
static std::u16string ReadHTML(gin_helper::Arguments* args);
static void WriteHTML(const std::u16string& html,
gin_helper::Arguments* args);
2016-10-24 08:13:34 +00:00
static v8::Local<v8::Value> ReadBookmark(gin_helper::Arguments* args);
static void WriteBookmark(const std::u16string& title,
2016-10-24 08:13:34 +00:00
const std::string& url,
gin_helper::Arguments* args);
2016-10-24 08:13:34 +00:00
static gfx::Image ReadImage(gin_helper::Arguments* args);
static void WriteImage(const gfx::Image& image, gin_helper::Arguments* args);
2016-10-24 08:13:34 +00:00
static std::u16string ReadFindText();
static void WriteFindText(const std::u16string& text);
2016-10-24 08:13:34 +00:00
2017-03-16 22:42:23 +00:00
static v8::Local<v8::Value> ReadBuffer(const std::string& format_string,
gin_helper::Arguments* args);
2017-04-21 05:47:04 +00:00
static void WriteBuffer(const std::string& format_string,
const v8::Local<v8::Value> buffer,
gin_helper::Arguments* args);
feat: implement File System API support (#41827) * feat: implement File System API support Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * test: add a test for writable permission checking Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * fix: gn check include issues Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * chore: feedback from review Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * chore: cleanup feedback from review Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * refactor: namespace to electron Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * fixup! chore: cleanup feedback from review Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * chore: address more feedback from review Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * 5301485: Add content analysis to File System Access Javascript API. https://chromium-review.googlesource.com/c/chromium/src/+/5301485 Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * docs: improve typing of details object Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * chore: address outstanding todo Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * refactor: use Chrome's file system access blocklist Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * lint Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * fix: Windows build Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * test: clarify test verbiage Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> --------- Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
2024-04-15 19:22:17 +00:00
static void WriteFilesForTesting(const std::vector<base::FilePath>& files);
2016-10-24 08:13:34 +00:00
};
2022-06-29 19:55:47 +00:00
} // namespace electron::api
2016-10-24 08:13:34 +00:00
#endif // ELECTRON_SHELL_COMMON_API_ELECTRON_API_CLIPBOARD_H_