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

LibGUI: Add callback for screen rect change to Desktop.h

callbacks for screen rect changes can be added with
on_receive_screen_rects()
This commit is contained in:
Peter Elliott 2021-07-18 12:41:12 -06:00 committed by Andreas Kling
parent 222b97488a
commit b8f3441300
2 changed files with 10 additions and 0 deletions

View file

@ -39,6 +39,9 @@ void Desktop::did_receive_screen_rects(Badge<WindowServerConnection>, const Vect
m_virtual_desktop_rows = virtual_desktop_rows;
m_virtual_desktop_columns = virtual_desktop_columns;
for (auto& callback : m_receive_rects_callbacks)
callback(*this);
}
void Desktop::set_background_color(const StringView& background_color)