1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:17:44 +00:00

WindowServer: Process window mouse events in the correct z-order.

This commit is contained in:
Andreas Kling 2019-02-12 23:56:19 +01:00
parent 1d7fc866ee
commit 4f33fb3a1a
2 changed files with 24 additions and 21 deletions

View file

@ -77,6 +77,7 @@ private:
void set_active_window(WSWindow*);
template<typename Callback> void for_each_visible_window_of_type(WSWindowType, Callback);
template<typename Callback> void for_each_visible_window(Callback);
template<typename Callback> void for_each_active_menubar_menu(Callback);
void close_current_menu();
WSMenu& create_menu(String&& name);