diff options
author | Andreas Kling <kling@serenityos.org> | 2021-01-12 12:05:23 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-01-12 12:05:23 +0100 |
commit | dc28c07fa526841e05e16161c74a6c23984f1dd5 (patch) | |
tree | d68796bc7708eba33fbf7247e1a92188ac5acf6f /Userland/Applications/Spreadsheet/CondFormatting.gml | |
parent | aa939c4b4b8a7eb1d22b166ebb5fb737d6e66714 (diff) | |
download | serenity-dc28c07fa526841e05e16161c74a6c23984f1dd5.zip |
Applications: Move to Userland/Applications/
Diffstat (limited to 'Userland/Applications/Spreadsheet/CondFormatting.gml')
-rw-r--r-- | Userland/Applications/Spreadsheet/CondFormatting.gml | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/Userland/Applications/Spreadsheet/CondFormatting.gml b/Userland/Applications/Spreadsheet/CondFormatting.gml new file mode 100644 index 0000000000..437b5a1c3d --- /dev/null +++ b/Userland/Applications/Spreadsheet/CondFormatting.gml @@ -0,0 +1,40 @@ +@GUI::Widget { + name: "main" + fill_with_background_color: true + + layout: @GUI::VerticalBoxLayout { + margins: [4, 4, 4, 4] + spacing: 4 + } + + @Spreadsheet::ConditionsView { + name: "conditions_view" + } + + @GUI::Widget { + shrink_to_fit: true + + layout: @GUI::HorizontalBoxLayout { + spacing: 10 + } + + @GUI::Widget { + } + + @GUI::Button { + name: "add_button" + text: "Add" + fixed_width: 70 + } + + @GUI::Button { + name: "remove_button" + text: "Remove" + fixed_width: 70 + } + + @GUI::Widget { + } + + } +} |