mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 10:22:05 -05:00
74 lines
2.1 KiB
JSON
74 lines
2.1 KiB
JSON
{
|
|
"name": "main",
|
|
"fill_with_background_color": true,
|
|
|
|
"layout": {
|
|
"class": "GUI::VerticalBoxLayout",
|
|
"spacing": 2
|
|
},
|
|
|
|
"children": [
|
|
{
|
|
"class": "GUI::ToolBarContainer",
|
|
"children": [
|
|
{
|
|
"class": "GUI::ToolBar",
|
|
"name": "toolbar"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"class": "GUI::HorizontalSplitter",
|
|
"children": [
|
|
{
|
|
"class": "GUI::TextEditor",
|
|
"name": "editor"
|
|
},
|
|
{
|
|
"class": "Web::InProcessWebView",
|
|
"name": "webview"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"class": "GUI::Widget",
|
|
"name": "find_replace_widget",
|
|
"fill_with_background_color": true,
|
|
"horizontal_size_policy": "Fill",
|
|
"vertical_size_policy": "Fixed",
|
|
"preferred_height": 48,
|
|
"layout": {
|
|
"class": "GUI::VerticalBoxLayout",
|
|
"margins": [ 2, 2, 2, 4 ]
|
|
},
|
|
"children": [
|
|
{
|
|
"class": "GUI::Widget",
|
|
"name": "find_widget",
|
|
"fill_with_background_color": true,
|
|
"horizontal_size_policy": "Fill",
|
|
"vertical_size_policy": "Fixed",
|
|
"preferred_height": 22,
|
|
"layout": {
|
|
"class": "GUI::HorizontalBoxLayout"
|
|
}
|
|
},
|
|
{
|
|
"class": "GUI::Widget",
|
|
"name": "replace_widget",
|
|
"fill_with_background_color": true,
|
|
"horizontal_size_policy": "Fill",
|
|
"vertical_size_policy": "Fixed",
|
|
"preferred_height": 22,
|
|
"layout": {
|
|
"class": "GUI::HorizontalBoxLayout"
|
|
}
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"class": "GUI::StatusBar",
|
|
"name": "statusbar"
|
|
}
|
|
]
|
|
}
|