summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGUI/TreeView.h
AgeCommit message (Collapse)Author
2021-08-08LibGUI: Do not allow tree column to shrink beyond indent and iconsin-ack
We always display the tree indent and the icon, so we shouldn't allow the tree column to shrink beyond that size.
2021-07-10LibGUI: Tighten paint invalidation rects in item views :^)Andreas Kling
AbstractView now has a paint_invalidation_rect(index) function that subclasses can override to provide a tighter invalidation rect for an index.
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-19LibGUI: Support double-click resizing multi-column TreeViewsthankyouverycool
2021-03-12LibGUI: Add variable padding and center bitmaps in TableViewsthankyouverycool
This lets us make nicer looking bitmap tables and fixes a content rect issue in TreeView. Also makes key column highlighting optional
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling