2023-11-10 13:29:20 -05:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2023, Tim Flynn <trflynn89@serenityos.org>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <AK/String.h>
|
|
|
|
|
#include <LibJS/Forward.h>
|
|
|
|
|
#include <LibJS/Heap/GCPtr.h>
|
|
|
|
|
#include <LibWeb/DOM/EventTarget.h>
|
|
|
|
|
#include <LibWeb/Forward.h>
|
|
|
|
|
#include <LibWeb/WebIDL/ExceptionOr.h>
|
|
|
|
|
|
|
|
|
|
namespace Web::Clipboard {
|
|
|
|
|
|
|
|
|
|
class Clipboard final : public DOM::EventTarget {
|
|
|
|
|
WEB_PLATFORM_OBJECT(Clipboard, DOM::EventTarget);
|
2023-11-19 19:47:52 +01:00
|
|
|
JS_DECLARE_ALLOCATOR(Clipboard);
|
2023-11-10 13:29:20 -05:00
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
static WebIDL::ExceptionOr<JS::NonnullGCPtr<Clipboard>> construct_impl(JS::Realm&);
|
|
|
|
|
virtual ~Clipboard() override;
|
|
|
|
|
|
|
|
|
|
JS::NonnullGCPtr<JS::Promise> write_text(String);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
Clipboard(JS::Realm&);
|
|
|
|
|
|
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|