LibWeb+UI+WebContent: Pipe pinch events from AppKit UI to WebContent

This commit is contained in:
Aliaksandr Kalenik 2025-10-08 23:59:50 +02:00 committed by Alexander Kalenik
parent e6831003c6
commit c630de17ab
Notes: github-actions[bot] 2025-10-10 13:39:44 +00:00
10 changed files with 86 additions and 1 deletions

View file

@ -79,6 +79,11 @@ void WebViewBridge::enqueue_input_event(Web::KeyEvent event)
ViewImplementation::enqueue_input_event(move(event));
}
void WebViewBridge::enqueue_input_event(Web::PinchEvent event)
{
ViewImplementation::enqueue_input_event(move(event));
}
Optional<WebViewBridge::Paintable> WebViewBridge::paintable()
{
Gfx::Bitmap const* bitmap = nullptr;