summaryrefslogtreecommitdiff
path: root/Libraries/LibGfx/WindowTheme.h
AgeCommit message (Collapse)Author
2020-10-24LibGfx+WindowServer: Handle taller window title fonts betterAndreas Kling
If the window title font is taller than the theme's specified title height, compute the title height based on the font instead. :^)
2020-08-26WindowServer+LibGfx: Move title bar button layout to WindowThemethankyouverycool
2020-08-23LibGfx+WindowServer: Simplify notification window frame themingAndreas Kling
Don't require theme clients to provide the frame rect, the theme can compute that internally based on the window rect.
2020-08-21LibGfx+WindowServer: Simplify WindowTheme::paint_normal_frame() APIAndreas Kling
Don't require passing in the outer frame rect since the theme can compute that itself, based on the window rect.
2020-08-10LibGfx: Correct copyright years for {Classic,}WindowTheme.{cpp,h}Andreas Kling
2020-08-10WindowServer+LibGfx: Move window frame rect calculation to WindowThemeAndreas Kling
2020-08-09WindowServer+LibGfx: Move notification window frame painting to LibGfxAndreas Kling
ClassicWindowTheme can now also paint notification window frames.
2020-08-09LibGfx: Add a basic abstract WindowTheme classAndreas Kling
This class will provide painting and metrics for window themes. :^)