2020-12-20 13:47:44 +03:00
|
|
|
@GUI::Widget {
|
2021-03-21 22:42:30 +03:00
|
|
|
layout: @GUI::VerticalBoxLayout
|
2020-12-20 13:47:44 +03:00
|
|
|
|
|
|
|
@GUI::Widget {
|
2021-01-04 20:32:05 +03:00
|
|
|
shrink_to_fit: true
|
|
|
|
|
2021-03-21 22:42:30 +03:00
|
|
|
layout: @GUI::HorizontalBoxLayout
|
2020-12-20 13:47:44 +03:00
|
|
|
|
|
|
|
@GUI::Label {
|
|
|
|
text: "if..."
|
2020-12-30 03:23:32 +03:00
|
|
|
fixed_width: 40
|
2020-12-20 13:47:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::TextEditor {
|
|
|
|
name: "formula_editor"
|
2020-12-30 03:23:32 +03:00
|
|
|
fixed_height: 25
|
2020-12-20 13:47:44 +03:00
|
|
|
tooltip: "Use 'value' to refer to the current cell's value"
|
2021-03-23 19:59:18 +03:00
|
|
|
font_type: "FixedWidth"
|
2020-12-20 13:47:44 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::Widget {
|
2021-01-04 20:32:05 +03:00
|
|
|
shrink_to_fit: true
|
|
|
|
|
2021-03-21 22:42:30 +03:00
|
|
|
layout: @GUI::HorizontalBoxLayout
|
2020-12-20 13:47:44 +03:00
|
|
|
|
|
|
|
@GUI::Label {
|
|
|
|
text: "Foreground..."
|
2020-12-30 03:23:32 +03:00
|
|
|
fixed_width: 150
|
2020-12-20 13:47:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::ColorInput {
|
|
|
|
name: "foreground_input"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::Widget {
|
2021-01-04 20:32:05 +03:00
|
|
|
shrink_to_fit: true
|
|
|
|
|
2021-03-21 22:42:30 +03:00
|
|
|
layout: @GUI::HorizontalBoxLayout
|
2020-12-20 13:47:44 +03:00
|
|
|
|
|
|
|
@GUI::Label {
|
|
|
|
text: "Background..."
|
2020-12-30 03:23:32 +03:00
|
|
|
fixed_width: 150
|
2020-12-20 13:47:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::ColorInput {
|
|
|
|
name: "background_input"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|