summaryrefslogtreecommitdiff
path: root/Libraries/LibGUI/BoxLayout.cpp
AgeCommit message (Collapse)Author
2020-03-05LibGUI: Make Layout a Core::Object and add basic serializationAndreas Kling
This allows you to view layouts (as data) in Inspector.
2020-02-25AK: Make Vector use size_t for its size and capacityAndreas Kling
2020-02-16LibGUI: Add forwarding headerAndreas Kling
This patch adds <LibGUI/Forward.h> and uses it a bunch. It also dragged various header dependency reduction changes into it.
2020-02-12LibGUI: Make last auto-sized widget in a BoxLayout fill remaining spaceAndreas Kling
Since space is divided evenly between widgets with SizePolicy::Fill, we were sometimes ending up with a couple of unused pixels after the last widget (due to rounding.) Fix this by always giving the slack pixels at the end to the very last auto-sized widget in the layout. This fixes an issue where it was sometimes possible to click on an "unreachable" part of a Splitter widget. :^)
2020-02-06LibGUI: Remove leading G from filenamesAndreas Kling