mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-05 15:50:58 +00:00
34 lines
879 B
Text
34 lines
879 B
Text
|
|
@GUI::DynamicWidgetContainerControls {
|
||
|
|
layout: @GUI::HorizontalBoxLayout {}
|
||
|
|
preferred_height: "shrink"
|
||
|
|
|
||
|
|
@GUI::LabelWithEventDispatcher {
|
||
|
|
name: "section_label"
|
||
|
|
text_alignment: "CenterLeft"
|
||
|
|
}
|
||
|
|
|
||
|
|
@GUI::Button {
|
||
|
|
name: "detach_button"
|
||
|
|
button_style: "Coolbar"
|
||
|
|
preferred_width: "shrink"
|
||
|
|
preferred_height: "shrink"
|
||
|
|
icon_from_path: "/res/icons/16x16/detach.png"
|
||
|
|
}
|
||
|
|
|
||
|
|
@GUI::Button {
|
||
|
|
name: "collapse_button"
|
||
|
|
button_style: "Coolbar"
|
||
|
|
preferred_width: "shrink"
|
||
|
|
preferred_height: "shrink"
|
||
|
|
icon_from_path: "/res/icons/16x16/upward-triangle.png"
|
||
|
|
}
|
||
|
|
|
||
|
|
@GUI::Button {
|
||
|
|
name: "expand_button"
|
||
|
|
button_style: "Coolbar"
|
||
|
|
preferred_width: "shrink"
|
||
|
|
preferred_height: "shrink"
|
||
|
|
icon_from_path: "/res/icons/16x16/downward-triangle.png"
|
||
|
|
}
|
||
|
|
}
|