1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:38:12 +00:00

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
parent b99eaad693
commit 7f8e18b86a
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;