LibGUI: Make SortingProxyModel forward is_editable() and set_data()

This will allow us to edit models through a SortingProxyModel. :^)
This commit is contained in:
Andreas Kling 2020-09-24 11:29:21 +02:00
commit 7f8e18b86a
Notes: sideshowbarker 2024-07-19 02:15:33 +09:00
2 changed files with 12 additions and 0 deletions

View file

@ -45,6 +45,8 @@ public:
virtual StringView drag_data_type() const override;
virtual ModelIndex parent_index(const ModelIndex&) const override;
virtual ModelIndex index(int row, int column, const ModelIndex& parent) const override;
virtual bool is_editable(const ModelIndex&) const override;
virtual void set_data(const ModelIndex&, const Variant&) override;
virtual bool is_column_sortable(int column_index) const override;