summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGfx/ClassicStylePainter.h
AgeCommit message (Collapse)Author
2022-08-09LibGUI+LibGfx: Let Desktop::the() set widget effectsthankyouverycool
Scrolling can now be set Coarse or Smooth system-wide, Splitter knurls and Tab accents toggled on and off, and Menu flashing disabled.
2022-05-21LibGUI: TabWidget add vertical tabsCameron Youell
Add vertical tabs to TabWidget, this can be set using the ```TabWidget::set_tab_position``` function or in the GML
2022-01-26LibGUI: Allow Buttons to set themselves as defaultthankyouverycool
Several apps were implementing this behavior ad hoc. This provides a standard API as well as a comfy visual cue for default return key behavior.
2021-11-11Everywhere: Pass AK::StringView by valueAndreas Kling
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