summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGUI/Variant.h
AgeCommit message (Collapse)Author
2022-01-01Theming: Add alignment sectionFiliph Sandström
This commit removes the IsTitleCenter property and replaces it with the TitleAlignment property that supports "Left", "Right" & "Center".
2021-11-11Everywhere: Pass AK::StringView by valueAndreas Kling
2021-11-05LibGfx: Add FlagRole to GUI::VariantSam Atkins
2021-10-28LibGUI: Add MetricRole and PathRole to GUI::VariantSam Atkins
This is needed for making them editable in the ThemeEditor, like ColorRole is.
2021-09-06LibGUI: Add Gfx::ColorRole to VariantKarol Kosek
For Theme Editor. :^)
2021-07-27LibGUI: Add Variant::as_float_or(fallback)Andreas Kling
2021-05-28LibGUI: Add u64 type to LibGUI::VariantJesse Buhagiar
`uint` has also been more appropriately renamed to u32.
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-03-22LibGUI: Allow constructing a string Variant from StringViewAnotherTest
2021-02-26Everywhere: Remove a bunch of redundant 'AK::' namespace prefixesLinus Groh
This is basically just for consistency, it's quite strange to see multiple AK container types next to each other, some with and some without the namespace prefix - we're 'using AK::Foo;' a lot and should leverage that. :^)
2021-02-23Everywhere: Rename ASSERT => VERIFYAndreas Kling
(...and ASSERT_NOT_REACHED => VERIFY_NOT_REACHED) Since all of these checks are done in release builds as well, let's rename them to VERIFY to prevent confusion, as everyone is used to assertions being compiled out in release. We can introduce a new ASSERT macro that is specifically for debug checks, but I'm doing this wholesale conversion first since we've accumulated thousands of these already, and it's not immediately obvious which ones are suitable for ASSERT.
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling