blob: 6e3d6232702d11531186f9e724678a9e4492ce8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
@GUI::Widget {
name: "main"
fill_with_background_color: true
layout: @GUI::VerticalBoxLayout {
spacing: 4
}
@Spreadsheet::ConditionsView {
name: "conditions_view"
}
@GUI::Widget {
fixed_height: 20
layout: @GUI::HorizontalBoxLayout {
spacing: 10
}
@GUI::Button {
name: "add_button"
text: "Add"
fixed_width: 100
fixed_height: 20
}
@GUI::Button {
name: "remove_button"
text: "Remove"
fixed_width: 100
fixed_height: 20
}
}
}
|