ladybird/Userland/Applications/Spreadsheet/CondView.gml

50 lines
1.0 KiB
Plaintext
Raw Normal View History

@GUI::Widget {
layout: @GUI::VerticalBoxLayout {}
2022-02-22 21:59:44 +03:00
preferred_height: "fit"
@GUI::Widget {
2022-02-22 21:59:44 +03:00
preferred_height: "fit"
layout: @GUI::HorizontalBoxLayout {}
@GUI::Label {
text: "if..."
fixed_width: 40
}
@GUI::TextEditor {
name: "formula_editor"
2022-02-22 21:59:44 +03:00
fixed_height: 32
tooltip: "Use 'value' to refer to the current cell's value"
font_type: "FixedWidth"
}
}
@GUI::Widget {
2022-02-22 21:59:44 +03:00
preferred_height: "fit"
layout: @GUI::HorizontalBoxLayout {}
@GUI::Label {
text: "Foreground..."
fixed_width: 150
}
@GUI::ColorInput {
name: "foreground_input"
}
}
@GUI::Widget {
2022-02-22 21:59:44 +03:00
preferred_height: "fit"
layout: @GUI::HorizontalBoxLayout {}
@GUI::Label {
text: "Background..."
fixed_width: 150
}
@GUI::ColorInput {
name: "background_input"
}
}
}