ladybird/Userland/Applications/FontEditor/FontPreviewWindow.gml

35 lines
706 B
Text

@GUI::Widget {
fill_with_background_color: true
layout: @GUI::VerticalBoxLayout {
margins: [2]
}
@GUI::Frame {
layout: @GUI::VerticalBoxLayout {
margins: [4]
}
shape: "Box"
shadow: "Sunken"
thickness: 2
@GUI::Label {
name: "preview_label"
}
}
@GUI::Widget {
layout: @GUI::HorizontalBoxLayout {}
fixed_height: 22
@GUI::TextBox {
name: "preview_textbox"
placeholder: "Preview text"
}
@GUI::Button {
name: "reload_button"
icon: "/res/icons/16x16/reload.png"
fixed_width: 22
}
}
}