1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:37:46 +00:00

Ladybird/AppKit: Implement pasting Web data to the clipboard

This commit is contained in:
Timothy Flynn 2023-11-10 14:15:46 -05:00 committed by Andreas Kling
parent 6732a38cf8
commit 9e637de58a
3 changed files with 34 additions and 13 deletions

View file

@ -20,6 +20,8 @@ namespace Ladybird {
String ns_string_to_string(NSString*);
NSString* string_to_ns_string(StringView);
NSData* string_to_ns_data(StringView);
NSDictionary* deserialize_json_to_dictionary(StringView);
Gfx::IntRect ns_rect_to_gfx_rect(NSRect);