diff --git a/Libraries/LibGUI/Desktop.h b/Libraries/LibGUI/Desktop.h index 5b90accafa..fcd2f7d943 100644 --- a/Libraries/LibGUI/Desktop.h +++ b/Libraries/LibGUI/Desktop.h @@ -46,6 +46,10 @@ public: bool set_wallpaper(const StringView& path); Gfx::IntRect rect() const { return m_rect; } + + int taskbar_height() const { return 28; } + int menubar_height() const { return 19; } + void did_receive_screen_rect(Badge, const Gfx::IntRect&); Function on_rect_change;