mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-11 10:18:15 +09:00
43 lines
1.1 KiB
C++
43 lines
1.1 KiB
C++
/*
|
|
* Copyright (c) 2023-2025, Tim Flynn <trflynn89@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/String.h>
|
|
#include <LibGC/Ptr.h>
|
|
#include <LibJS/Forward.h>
|
|
#include <LibWeb/DOM/EventTarget.h>
|
|
#include <LibWeb/Forward.h>
|
|
#include <LibWeb/WebIDL/ExceptionOr.h>
|
|
|
|
namespace Web::Clipboard {
|
|
|
|
struct ClipboardUnsanitizedFormats {
|
|
// FIXME: This should not actually be an Optional, but the IDL generator creates it as such.
|
|
Optional<Vector<String>> unsanitized;
|
|
};
|
|
|
|
class Clipboard final : public DOM::EventTarget {
|
|
WEB_PLATFORM_OBJECT(Clipboard, DOM::EventTarget);
|
|
GC_DECLARE_ALLOCATOR(Clipboard);
|
|
|
|
public:
|
|
static WebIDL::ExceptionOr<GC::Ref<Clipboard>> construct_impl(JS::Realm&);
|
|
virtual ~Clipboard() override;
|
|
|
|
GC::Ref<WebIDL::Promise> read(ClipboardUnsanitizedFormats formats = {});
|
|
GC::Ref<WebIDL::Promise> read_text();
|
|
|
|
GC::Ref<WebIDL::Promise> write(GC::RootVector<GC::Root<ClipboardItem>>&);
|
|
GC::Ref<WebIDL::Promise> write_text(String);
|
|
|
|
private:
|
|
Clipboard(JS::Realm&);
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
};
|
|
|
|
}
|