mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 04:47:35 +00:00
LibWeb: Support setting the cursor in OutOfProcessWebView
This commit is contained in:
parent
fc9225db33
commit
bedcd9cd88
7 changed files with 23 additions and 0 deletions
|
@ -113,6 +113,11 @@ void PageHost::page_did_change_selection()
|
|||
m_client.post_message(Messages::WebContentClient::DidChangeSelection());
|
||||
}
|
||||
|
||||
void PageHost::page_did_request_cursor_change(Gfx::StandardCursor cursor)
|
||||
{
|
||||
m_client.post_message(Messages::WebContentClient::DidRequestCursorChange((u32)cursor));
|
||||
}
|
||||
|
||||
void PageHost::page_did_layout()
|
||||
{
|
||||
auto* layout_root = this->layout_root();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue