2021-08-02 13:14:52 +03:00
|
|
|
@GUI::Frame {
|
|
|
|
fill_with_background_color: true
|
|
|
|
layout: @GUI::VerticalBoxLayout {
|
2022-07-05 18:06:42 +03:00
|
|
|
margins: [8]
|
2021-08-02 13:14:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::GroupBox {
|
2023-05-22 20:07:09 +03:00
|
|
|
title: "Available cursor themes"
|
2021-08-02 13:14:52 +03:00
|
|
|
layout: @GUI::VerticalBoxLayout {
|
2021-09-15 18:56:01 +03:00
|
|
|
margins: [6]
|
2021-08-30 02:27:08 +03:00
|
|
|
spacing: 4
|
2021-08-02 13:14:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::Widget {
|
2022-02-22 22:01:20 +03:00
|
|
|
preferred_height: "fit"
|
2021-08-02 13:14:52 +03:00
|
|
|
layout: @GUI::HorizontalBoxLayout {
|
2021-08-30 02:27:08 +03:00
|
|
|
spacing: 8
|
2021-08-02 13:14:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::ComboBox {
|
|
|
|
name: "theme_name_box"
|
|
|
|
model_only: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::TableView {
|
|
|
|
name: "cursors_tableview"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|