1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:47: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

@ -22,6 +22,11 @@ struct ConditionalFormat : public Format {
String condition;
};
enum class FormatType {
Background = 0,
Foreground = 1
};
class ConditionView : public GUI::Widget {
C_OBJECT(ConditionView)
public: