2020-12-30 17:43:35 +01:00
|
|
|
@GUI::Widget {
|
|
|
|
|
fill_with_background_color: true
|
|
|
|
|
layout: @GUI::VerticalBoxLayout {
|
|
|
|
|
margins: [4, 4, 4, 4]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@GUI::Widget {
|
2022-02-12 19:17:01 +02:00
|
|
|
layout: @GUI::HorizontalBoxLayout {}
|
2020-12-30 17:43:35 +01:00
|
|
|
|
|
|
|
|
@GUI::Widget {
|
2022-02-12 19:17:01 +02:00
|
|
|
layout: @GUI::VerticalBoxLayout {}
|
2020-12-30 17:43:35 +01:00
|
|
|
|
|
|
|
|
@GUI::Label {
|
|
|
|
|
text: "Family:"
|
|
|
|
|
text_alignment: "CenterLeft"
|
|
|
|
|
fixed_height: 16
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@GUI::ListView {
|
|
|
|
|
name: "family_list_view"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@GUI::Widget {
|
2020-12-30 21:01:09 +01:00
|
|
|
fixed_width: 100
|
2022-02-12 19:17:01 +02:00
|
|
|
layout: @GUI::VerticalBoxLayout {}
|
2020-12-30 17:43:35 +01:00
|
|
|
|
|
|
|
|
@GUI::Label {
|
2021-09-23 19:51:41 -04:00
|
|
|
text: "Style:"
|
2020-12-30 17:43:35 +01:00
|
|
|
text_alignment: "CenterLeft"
|
|
|
|
|
fixed_height: 16
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@GUI::ListView {
|
2021-09-23 19:51:41 -04:00
|
|
|
name: "variant_list_view"
|
2020-12-30 17:43:35 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@GUI::Widget {
|
2020-12-30 21:01:09 +01:00
|
|
|
fixed_width: 80
|
2022-02-12 19:17:01 +02:00
|
|
|
layout: @GUI::VerticalBoxLayout {}
|
2020-12-30 17:43:35 +01:00
|
|
|
|
|
|
|
|
@GUI::Label {
|
|
|
|
|
text: "Size:"
|
|
|
|
|
text_alignment: "CenterLeft"
|
|
|
|
|
fixed_height: 16
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-14 09:44:55 -04:00
|
|
|
@GUI::SpinBox {
|
|
|
|
|
name: "size_spin_box"
|
2024-01-13 16:38:59 +00:00
|
|
|
min: 0
|
2021-04-14 09:44:55 -04:00
|
|
|
}
|
|
|
|
|
|
2020-12-30 17:43:35 +01:00
|
|
|
@GUI::ListView {
|
|
|
|
|
name: "size_list_view"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@GUI::GroupBox {
|
2022-02-12 19:17:01 +02:00
|
|
|
layout: @GUI::VerticalBoxLayout {}
|
2020-12-30 17:43:35 +01:00
|
|
|
title: "Sample text"
|
2020-12-30 21:01:09 +01:00
|
|
|
fixed_height: 80
|
2022-02-12 19:17:01 +02:00
|
|
|
|
2020-12-30 17:43:35 +01:00
|
|
|
@GUI::Label {
|
|
|
|
|
name: "sample_text_label"
|
|
|
|
|
text: "The quick brown fox jumps over the lazy dog."
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@GUI::Widget {
|
|
|
|
|
fixed_height: 22
|
2022-02-12 19:17:01 +02:00
|
|
|
layout: @GUI::HorizontalBoxLayout {}
|
2020-12-30 17:43:35 +01:00
|
|
|
|
2022-09-27 12:05:58 +01:00
|
|
|
@GUI::Layout::Spacer {}
|
2020-12-30 17:43:35 +01:00
|
|
|
|
2022-06-10 23:03:11 +02:00
|
|
|
@GUI::DialogButton {
|
2020-12-30 17:43:35 +01:00
|
|
|
name: "ok_button"
|
|
|
|
|
text: "OK"
|
|
|
|
|
}
|
|
|
|
|
|
2022-06-10 23:03:11 +02:00
|
|
|
@GUI::DialogButton {
|
2020-12-30 17:43:35 +01:00
|
|
|
name: "cancel_button"
|
|
|
|
|
text: "Cancel"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|