mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-01 07:35:02 +03:00
55 lines
991 B
Plaintext
55 lines
991 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"
|
|
}
|
|
}
|
|
|
|
@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"
|
|
}
|
|
}
|
|
}
|