mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 11:07:45 +00:00
Spreadsheet: Document runtime functions and add a help window
...that can automatically generate documentation pages from the objects.
This commit is contained in:
parent
12cf3e13c0
commit
3a07f6e345
8 changed files with 352 additions and 2 deletions
|
@ -135,6 +135,8 @@ public:
|
|||
const String& name() const { return m_name; }
|
||||
void set_name(const StringView& name) { m_name = name; }
|
||||
|
||||
JsonObject gather_documentation() const;
|
||||
|
||||
Optional<Position> selected_cell() const { return m_selected_cell; }
|
||||
const HashMap<Position, NonnullOwnPtr<Cell>>& cells() const { return m_cells; }
|
||||
HashMap<Position, NonnullOwnPtr<Cell>>& cells() { return m_cells; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue