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

SpiceAgent: Support copying and pasting images

This commit is contained in:
x-yl 2021-07-12 18:16:19 +04:00 committed by Andreas Kling
parent d4bb6a1a1e
commit c8b13bd053
4 changed files with 143 additions and 8 deletions

View file

@ -18,6 +18,8 @@ class ClipboardServerConnection final
C_OBJECT(ClipboardServerConnection);
Function<void()> on_data_changed;
RefPtr<Gfx::Bitmap> get_bitmap();
void set_bitmap(Gfx::Bitmap const& bitmap);
private:
ClipboardServerConnection()