1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 09:04:59 +00:00

LibWebView+WebContent: Add an IPC hook to insert data into the clipboard

This commit is contained in:
Timothy Flynn 2023-11-10 13:35:41 -05:00 committed by Andreas Kling
parent 4b94b0b561
commit 306850652f
6 changed files with 15 additions and 0 deletions

View file

@ -161,6 +161,7 @@ public:
Function<void(bool)> on_finish_handling_input_event;
Function<void()> on_text_test_finish;
Function<void(Gfx::Color)> on_theme_color_change;
Function<void(String const&, String const&, String const&)> on_insert_clipboard_entry;
virtual Gfx::IntRect viewport_rect() const = 0;
virtual Gfx::IntPoint to_content_position(Gfx::IntPoint widget_position) const = 0;