1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:47:36 +00:00

WindowServer: Move occlusion things from WindowManager to Compositor

This commit is contained in:
Andreas Kling 2020-05-19 19:02:15 +02:00
parent db30a2549e
commit 10699b347f
5 changed files with 81 additions and 78 deletions

View file

@ -152,9 +152,6 @@ public:
void clear_resize_candidate();
ResizeDirection resize_direction_of_window(const Window&);
bool any_opaque_window_contains_rect(const Gfx::Rect&);
bool any_opaque_window_above_this_one_contains_rect(const Window&, const Gfx::Rect&);
void tell_wm_listeners_window_state_changed(Window&);
void tell_wm_listeners_window_icon_changed(Window&);
void tell_wm_listeners_window_rect_changed(Window&);
@ -204,8 +201,6 @@ private:
void tell_wm_listener_about_window_rect(Window& listener, Window&);
void pick_new_active_window();
void recompute_occlusions();
RefPtr<Cursor> m_arrow_cursor;
RefPtr<Cursor> m_hand_cursor;
RefPtr<Cursor> m_resize_horizontally_cursor;