2020-06-17 17:31:42 +02:00
|
|
|
endpoint WebContentServer = 89
|
|
|
|
{
|
2020-06-21 21:22:10 +02:00
|
|
|
Greet(i32 client_pid) => (i32 client_id, i32 server_pid)
|
2020-06-17 17:31:42 +02:00
|
|
|
|
2021-01-16 17:22:35 +01:00
|
|
|
UpdateSystemTheme(Core::AnonymousBuffer theme_buffer) =|
|
2020-06-17 17:31:42 +02:00
|
|
|
|
|
|
|
LoadURL(URL url) =|
|
2020-10-08 21:11:01 +01:00
|
|
|
LoadHTML(String html, URL url) =|
|
2020-06-17 17:31:42 +02:00
|
|
|
|
2021-01-16 23:15:32 +01:00
|
|
|
AddBackingStore(i32 backing_store_id, Gfx::ShareableBitmap bitmap) =|
|
|
|
|
RemoveBackingStore(i32 backing_store_id) =|
|
|
|
|
|
|
|
|
Paint(Gfx::IntRect content_rect, i32 backing_store_id) =|
|
2020-06-17 17:31:42 +02:00
|
|
|
SetViewportRect(Gfx::IntRect rect) =|
|
|
|
|
|
|
|
|
MouseDown(Gfx::IntPoint position, unsigned button, unsigned buttons, unsigned modifiers) =|
|
|
|
|
MouseMove(Gfx::IntPoint position, unsigned button, unsigned buttons, unsigned modifiers) =|
|
|
|
|
MouseUp(Gfx::IntPoint position, unsigned button, unsigned buttons, unsigned modifiers) =|
|
2020-08-03 19:58:59 +02:00
|
|
|
|
|
|
|
KeyDown(i32 key, unsigned modifiers, u32 code_point) =|
|
2020-06-17 17:31:42 +02:00
|
|
|
}
|