1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 07:04:57 +00:00
serenity/Userland/Libraries/LibWeb/Page/EditEventHandler.h
2023-09-26 21:25:54 +02:00

31 lines
684 B
C++

/*
* Copyright (c) 2020-2021, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Types.h>
#include <LibWeb/Forward.h>
namespace Web {
class EditEventHandler {
public:
explicit EditEventHandler(HTML::BrowsingContext& browsing_context)
: m_browsing_context(browsing_context)
{
}
virtual ~EditEventHandler() = default;
virtual void handle_delete_character_after(JS::NonnullGCPtr<DOM::Position>);
virtual void handle_delete(DOM::Range&);
virtual void handle_insert(JS::NonnullGCPtr<DOM::Position>, u32 code_point);
private:
JS::NonnullGCPtr<HTML::BrowsingContext> m_browsing_context;
};
}