summaryrefslogtreecommitdiff
path: root/Libraries/LibGUI/Model.cpp
AgeCommit message (Collapse)Author
2020-04-12LibGUI: Add a way for models to update without invalidating indexesAndreas Kling
This is really just a workaround to keep SystemMonitor's process table working right wrt selection retention during resorts (while also doing full index invalidation on things like ProfileViewer inversion.) It's starting to feel like the model abstraction is not super great and we'll need a better approach if we want to actually build some more dynamic functionality into our views.
2020-02-13LibGUI: Add GUI::Model::accepts_drag(index, data_type)Andreas Kling
This allows a model to indicate whether it would accept a drag with a given data type being dropped on a given index.
2020-02-06LibGUI: Remove leading G from filenamesAndreas Kling