summaryrefslogtreecommitdiff
path: root/Userland/Services/WindowServer/WindowFrame.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Services/WindowServer/WindowFrame.h')
-rw-r--r--Userland/Services/WindowServer/WindowFrame.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/Userland/Services/WindowServer/WindowFrame.h b/Userland/Services/WindowServer/WindowFrame.h
index 9e37b8b34f..30483af6cd 100644
--- a/Userland/Services/WindowServer/WindowFrame.h
+++ b/Userland/Services/WindowServer/WindowFrame.h
@@ -29,7 +29,7 @@ public:
friend class WindowFrame;
public:
- void paint(WindowFrame&, Gfx::Painter&, const Gfx::IntRect&);
+ void paint(WindowFrame&, Gfx::Painter&, Gfx::IntRect const&);
void render(WindowFrame&, Screen&);
Optional<HitTestResult> hit_test(WindowFrame&, Gfx::IntPoint const&, Gfx::IntPoint const&);
@@ -51,7 +51,7 @@ public:
void window_was_constructed(Badge<Window>);
Window& window() { return m_window; }
- const Window& window() const { return m_window; }
+ Window const& window() const { return m_window; }
Gfx::IntRect rect() const;
Gfx::IntRect render_rect() const;
@@ -59,7 +59,7 @@ public:
Gfx::DisjointRectSet opaque_render_rects() const;
Gfx::DisjointRectSet transparent_render_rects() const;
- void paint(Screen&, Gfx::Painter&, const Gfx::IntRect&);
+ void paint(Screen&, Gfx::Painter&, Gfx::IntRect const&);
void render(Screen&, Gfx::Painter&);
PerScaleRenderedCache* render_to_cache(Screen&);
@@ -68,7 +68,7 @@ public:
bool handle_titlebar_icon_mouse_event(MouseEvent const&);
void handle_border_mouse_event(MouseEvent const&);
- void window_rect_changed(const Gfx::IntRect& old_rect, const Gfx::IntRect& new_rect);
+ void window_rect_changed(Gfx::IntRect const& old_rect, Gfx::IntRect const& new_rect);
void invalidate_titlebar();
void invalidate_menubar();
void invalidate(Gfx::IntRect relative_rect);
@@ -125,15 +125,15 @@ private:
void paint_tool_window_frame(Gfx::Painter&);
void paint_menubar(Gfx::Painter&);
MultiScaleBitmaps const* shadow_bitmap() const;
- Gfx::IntRect inflated_for_shadow(const Gfx::IntRect&) const;
+ Gfx::IntRect inflated_for_shadow(Gfx::IntRect const&) const;
- void handle_menubar_mouse_event(const MouseEvent&);
- void handle_menu_mouse_event(Menu&, const MouseEvent&);
+ void handle_menubar_mouse_event(MouseEvent const&);
+ void handle_menu_mouse_event(Menu&, MouseEvent const&);
Gfx::WindowTheme::WindowState window_state_for_theme() const;
String computed_title() const;
- Gfx::IntRect constrained_render_rect_to_screen(const Gfx::IntRect&) const;
+ Gfx::IntRect constrained_render_rect_to_screen(Gfx::IntRect const&) const;
Gfx::IntRect leftmost_titlebar_button_rect() const;
Window& m_window;