mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
49 lines
1 KiB
Text
49 lines
1 KiB
Text
@GUI::Widget {
|
|
layout: @GUI::VerticalBoxLayout {}
|
|
preferred_height: "fit"
|
|
|
|
@GUI::Widget {
|
|
preferred_height: "fit"
|
|
layout: @GUI::HorizontalBoxLayout {}
|
|
|
|
@GUI::Label {
|
|
text: "if..."
|
|
fixed_width: 40
|
|
}
|
|
|
|
@GUI::TextEditor {
|
|
name: "formula_editor"
|
|
fixed_height: 32
|
|
tooltip: "Use 'value' to refer to the current cell's value"
|
|
font_type: "FixedWidth"
|
|
}
|
|
}
|
|
|
|
@GUI::Widget {
|
|
preferred_height: "fit"
|
|
layout: @GUI::HorizontalBoxLayout {}
|
|
|
|
@GUI::Label {
|
|
text: "Foreground..."
|
|
fixed_width: 150
|
|
}
|
|
|
|
@GUI::ColorInput {
|
|
name: "foreground_input"
|
|
}
|
|
}
|
|
|
|
@GUI::Widget {
|
|
preferred_height: "fit"
|
|
layout: @GUI::HorizontalBoxLayout {}
|
|
|
|
@GUI::Label {
|
|
text: "Background..."
|
|
fixed_width: 150
|
|
}
|
|
|
|
@GUI::ColorInput {
|
|
name: "background_input"
|
|
}
|
|
}
|
|
}
|