mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 09:24:57 +00:00
27 lines
491 B
Text
27 lines
491 B
Text
@GUI::Widget {
|
|
layout: @GUI::VerticalBoxLayout {}
|
|
fill_with_background_color: true
|
|
|
|
@GUI::ToolbarContainer {
|
|
@GUI::Toolbar {
|
|
name: "toolbar"
|
|
}
|
|
}
|
|
|
|
@GUI::HorizontalSplitter {
|
|
layout: @GUI::HorizontalBoxLayout {}
|
|
name: "splitter"
|
|
|
|
@GUI::TextEditor {
|
|
name: "text_editor"
|
|
}
|
|
|
|
@GUI::Frame {
|
|
name: "preview_frame"
|
|
}
|
|
}
|
|
|
|
@GUI::Statusbar {
|
|
name: "statusbar"
|
|
}
|
|
}
|