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

Spreadsheet: Add toolbar actions to change the cell style

This commit is contained in:
Marco Santos 2022-09-21 00:03:49 +01:00 committed by Ali Mohammad Pur
parent a0598aaef7
commit 5f76ab9836
3 changed files with 44 additions and 0 deletions

View file

@ -50,6 +50,7 @@ public:
void undo();
void redo();
void change_cell_static_color_format(Spreadsheet::FormatType);
auto& undo_stack() { return m_undo_stack; }
private:
@ -92,6 +93,8 @@ private:
RefPtr<GUI::Action> m_insert_emoji_action;
RefPtr<GUI::Action> m_undo_action;
RefPtr<GUI::Action> m_redo_action;
RefPtr<GUI::Action> m_change_background_color_action;
RefPtr<GUI::Action> m_change_foreground_color_action;
RefPtr<GUI::Action> m_functions_help_action;
RefPtr<GUI::Action> m_about_action;