diff --git a/src/api/wayland/context.rs b/src/api/wayland/context.rs index 9b6fce04..ad0977c6 100644 --- a/src/api/wayland/context.rs +++ b/src/api/wayland/context.rs @@ -218,4 +218,11 @@ impl WaylandContext { p.lock().unwrap().remove_handled_surface(sid); } } -} \ No newline at end of file + + pub fn push_event_for(&self, sid: SurfaceId, evt: Event) { + let mut guard = self.windows_event_queues.lock().unwrap(); + if let Some(queue) = guard.get(&sid) { + queue.lock().unwrap().push_back(evt); + } + } +} diff --git a/src/api/wayland/mod.rs b/src/api/wayland/mod.rs index ba1931b1..0381f31a 100644 --- a/src/api/wayland/mod.rs +++ b/src/api/wayland/mod.rs @@ -134,6 +134,13 @@ impl Window { if let Some(f) = self.resize_callback { f(w as u32, h as u32); } + if let Some(ref ctxt) = *WAYLAND_CONTEXT { + let mut window_guard = self.shell_window.lock().unwrap(); + ctxt.push_event_for( + window_guard.get_shell().get_wsurface().get_id(), + Event::Resized(w as u32, h as u32) + ); + } } b }