1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 20:57:44 +00:00

Spreadsheet: Make it possible to rename sheets

This commit is contained in:
AnotherTest 2020-12-20 15:09:57 +03:30 committed by Andreas Kling
parent f1f9fd1c60
commit b3a9a25416
2 changed files with 31 additions and 0 deletions

View file

@ -69,6 +69,8 @@ private:
RefPtr<GUI::Label> m_current_cell_label;
RefPtr<GUI::TextEditor> m_cell_value_editor;
RefPtr<GUI::TabWidget> m_tab_widget;
RefPtr<GUI::Menu> m_tab_context_menu;
RefPtr<SpreadsheetView> m_tab_context_menu_sheet_view;
bool m_should_change_selected_cells { false };
OwnPtr<Workbook> m_workbook;