mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 21:37:35 +00:00
Spreadsheet: Allow importing sheets into an existing workbook
This commit is contained in:
parent
135683795b
commit
64ef808aeb
4 changed files with 50 additions and 0 deletions
|
@ -25,6 +25,7 @@ public:
|
|||
|
||||
void save(Core::File&);
|
||||
void load_file(Core::File&);
|
||||
void import_sheets(Core::File&);
|
||||
bool request_close();
|
||||
void add_sheet();
|
||||
void add_sheet(NonnullRefPtr<Sheet>&&);
|
||||
|
@ -83,6 +84,8 @@ private:
|
|||
RefPtr<GUI::Action> m_save_as_action;
|
||||
RefPtr<GUI::Action> m_quit_action;
|
||||
|
||||
RefPtr<GUI::Action> m_import_action;
|
||||
|
||||
RefPtr<GUI::Action> m_cut_action;
|
||||
RefPtr<GUI::Action> m_copy_action;
|
||||
RefPtr<GUI::Action> m_paste_action;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue