mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 06:17:34 +00:00
WindowServer+LibGUI: Add a way to force a window to have a drop shadow
This commit is contained in:
parent
3368e54224
commit
c2dfa9d54c
7 changed files with 41 additions and 6 deletions
|
@ -99,7 +99,7 @@ private:
|
|||
virtual void add_menu_item(i32, i32, i32, String const&, bool, bool, bool, bool, String const&, Gfx::ShareableBitmap const&, bool) override;
|
||||
virtual void add_menu_separator(i32) override;
|
||||
virtual void update_menu_item(i32, i32, i32, String const&, bool, bool, bool, bool, String const&) override;
|
||||
virtual void create_window(i32, Gfx::IntRect const&, bool, bool, bool,
|
||||
virtual void create_window(i32, Gfx::IntRect const&, bool, bool, bool, bool,
|
||||
bool, bool, bool, bool, bool, float, float, Gfx::IntSize const&, Gfx::IntSize const&, Gfx::IntSize const&,
|
||||
Optional<Gfx::IntSize> const&, i32, String const&, i32, Gfx::IntRect const&) override;
|
||||
virtual Messages::WindowServer::DestroyWindowResponse destroy_window(i32) override;
|
||||
|
@ -123,6 +123,7 @@ private:
|
|||
virtual void move_window_to_front(i32) override;
|
||||
virtual void set_fullscreen(i32, bool) override;
|
||||
virtual void set_frameless(i32, bool) override;
|
||||
virtual void set_forced_shadow(i32, bool) override;
|
||||
virtual void set_wallpaper(String const&) override;
|
||||
virtual void set_background_color(String const&) override;
|
||||
virtual void set_wallpaper_mode(String const&) override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue