ladybird/Userland/Applications/Spreadsheet/CondView.gml
Idan Horowitz c8ab45e79f Userland: Run gml-format
This brings the existing GML files up to spec with the new requirements
2022-02-13 02:36:35 +02:00

49 lines
992 B
Plaintext

@GUI::Widget {
layout: @GUI::VerticalBoxLayout {}
@GUI::Widget {
shrink_to_fit: true
layout: @GUI::HorizontalBoxLayout {}
@GUI::Label {
text: "if..."
fixed_width: 40
}
@GUI::TextEditor {
name: "formula_editor"
fixed_height: 25
tooltip: "Use 'value' to refer to the current cell's value"
font_type: "FixedWidth"
}
}
@GUI::Widget {
shrink_to_fit: true
layout: @GUI::HorizontalBoxLayout {}
@GUI::Label {
text: "Foreground..."
fixed_width: 150
}
@GUI::ColorInput {
name: "foreground_input"
}
}
@GUI::Widget {
shrink_to_fit: true
layout: @GUI::HorizontalBoxLayout {}
@GUI::Label {
text: "Background..."
fixed_width: 150
}
@GUI::ColorInput {
name: "background_input"
}
}
}