1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:37:46 +00:00

Spreadsheet: Track selections across sheet switches

This commit is contained in:
AnotherTest 2020-08-27 01:30:24 +04:30 committed by Andreas Kling
parent 8db5057dc4
commit dd4bd0943a
3 changed files with 28 additions and 2 deletions

View file

@ -47,6 +47,9 @@ public:
Function<void()> on_selection_dropped;
private:
virtual void hide_event(GUI::HideEvent&) override;
virtual void show_event(GUI::ShowEvent&) override;
SpreadsheetView(Sheet&);
class EditingDelegate : public GUI::StringModelEditingDelegate {