summaryrefslogtreecommitdiff
path: root/Libraries/LibGUI/ItemView.h
AgeCommit message (Collapse)Author
2020-03-12LibGUI: Take scroll offset into account on ItemView rubberband selectionTibor Nagy
Same kind of issue as #1271.
2020-02-25LibGUI: Make descendants of AbstractView define their own select_all() (#1201)DAlperin
AbstractView does not know which column it's displaying which makes it impossible to implement the select_all functionality up there. Now descendants override the pure virtual select_all method and implement it themselves.
2020-02-23LibGUI: Remove parent parameter to GUI::Widget constructorAndreas Kling
2020-02-23LibGUI: Don't require passing a parent to widget constructorsAndreas Kling
This is a step towards using Core::Object::add<T> more, which takes care of parenting the newly created child automatically.
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-13LibGUI: Indicate ItemView drag acceptance with a little rectangleAndreas Kling
If an index accepts a drag, we now draw a little rectangle around it when the drag moves over it.
2020-02-06LibGUI: Remove leading G from filenamesAndreas Kling