1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:37:35 +00:00

Spreadsheet: Add a topbar with a text editor

This commit is contained in:
AnotherTest 2020-08-24 19:51:25 +04:30 committed by Andreas Kling
parent a6ebd29aa5
commit 12cf3e13c0
5 changed files with 74 additions and 2 deletions

View file

@ -41,6 +41,10 @@ public:
~SpreadsheetView();
const Sheet& sheet() const { return *m_sheet; }
Sheet& sheet() { return *m_sheet; }
Function<void(const Position&, Cell&)> on_selection_changed;
Function<void()> on_selection_dropped;
private:
SpreadsheetView(Sheet&);