ladybird/Userland/Applications/ThemeEditor/ThemeEditor.gml

53 lines
1.1 KiB
Plaintext
Raw Normal View History

2021-10-27 17:20:35 +03:00
@GUI::Widget {
2023-06-17 18:45:25 +03:00
layout: @GUI::VerticalBoxLayout {}
fill_with_background_color: true
@GUI::Widget {
2023-06-17 18:45:25 +03:00
layout: @GUI::VerticalBoxLayout {
margins: [0, 4, 4]
spacing: 6
}
2023-06-17 18:45:25 +03:00
@GUI::Widget {
layout: @GUI::HorizontalBoxLayout {
spacing: 4
}
2023-06-17 18:45:25 +03:00
@ThemeEditor::PreviewWidget {
name: "preview_widget"
}
2021-10-27 17:20:35 +03:00
2023-06-17 18:45:25 +03:00
@GUI::TabWidget {
name: "property_tabs"
container_margins: [5]
}
}
2023-06-17 18:45:25 +03:00
@GUI::Widget {
name: "theme_override_controls"
layout: @GUI::HorizontalBoxLayout {
spacing: 6
}
preferred_height: "shrink"
2023-06-17 18:45:25 +03:00
@GUI::Layout::Spacer {}
@GUI::DialogButton {
name: "reset_button"
text: "Reset"
enabled: false
}
2023-06-17 18:45:25 +03:00
@GUI::DialogButton {
name: "apply_button"
text: "Apply"
enabled: false
}
}
}
2023-06-17 18:45:25 +03:00
@GUI::Statusbar {
name: "statusbar"
}
2021-10-27 17:20:35 +03:00
}