summaryrefslogtreecommitdiff
path: root/LibGUI/GModel.cpp
AgeCommit message (Collapse)Author
2019-05-09LibGUI: Remove GModel activations to GAbstractView.Andreas Kling
Now you can hook activation via GAbstractView::on_activation. The design still isn't quite right, we should eventually move the selection away from the model somehow.
2019-03-30FileManager: Make the tree view follow the directory view navigations.Andreas Kling
2019-03-29LibGUI: Draw a 1px line tree alongside the GTreeView icons.Andreas Kling
2019-03-29LibGUI: Expand GModelIndex a bit, adding internal data and model pointers.Andreas Kling
This will be useful for implementing more complicated models.
2019-03-23LibGUI: Add GAbstractView base class for GTableView.Andreas Kling
This is in preparation for adding a new view class.
2019-03-23LibGUI: Rename GTableModel => GModel.Andreas Kling