summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGfx/ClassicStylePainter.h
AgeCommit message (Collapse)Author
2021-10-28LibGfx+WindowServer: Move shadow-painting code to StylePainterSam Atkins
Specifically, this is to make it accessible to ThemeEditor, but there's nothing about it that is especially window-specific.
2021-10-28LibGfx: Make style painters use east const and virtual specifiersSam Atkins
2021-07-28LibGUI+LibGfx: Highlight currently active tab button with accent colorAndreas Kling
Use the new "Accent" color role to emphasize the currently active tab within a GUI::TabWidget. :^)
2021-07-28LibGfx: Remove unused StylePainter::paint_surface()Andreas Kling
2021-04-29Everywhere: Add missing comma between copyright year and nameLinus Groh
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
2021-04-13Everywhere: It's now "Foobar", not "FooBar", and not "foo bar"Andreas Kling
I hereby declare these to be full nouns that we don't split, neither by space, nor by underscore: - Breadcrumbbar - Coolbar - Menubar - Progressbar - Scrollbar - Statusbar - Taskbar - Toolbar This patch makes everything consistent by replacing every other variant of these with the proper one. :^)
2021-03-12LibGfx+LibGUI: Add support for vertical ProgressBarsthankyouverycool
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling