blob: 79617f2894b893b5b82e1e3d3228f03467e93973 (
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
35
36
37
|
@GUI::Widget {
name: "main"
fill_with_background_color: true
layout: @GUI::VerticalBoxLayout {
margins: [4, 4, 4, 4]
spacing: 4
}
@Spreadsheet::ConditionsView {
name: "conditions_view"
}
@GUI::Widget {
shrink_to_fit: true
layout: @GUI::HorizontalBoxLayout {
spacing: 10
}
@GUI::Widget
@GUI::Button {
name: "add_button"
text: "Add"
fixed_width: 70
}
@GUI::Button {
name: "remove_button"
text: "Remove"
fixed_width: 70
}
@GUI::Widget
}
}
|