mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-01 14:18:15 +00:00
Also moves WebContentClient and the references to the generated IPC descriptions, since they are all components of OutOfProcessWebView. This patch has no functional changes.
53 lines
1.1 KiB
Plaintext
53 lines
1.1 KiB
Plaintext
@GUI::Widget {
|
|
fill_with_background_color: true
|
|
layout: @GUI::VerticalBoxLayout {
|
|
spacing: 2
|
|
}
|
|
|
|
@GUI::ToolbarContainer {
|
|
@GUI::Toolbar {
|
|
name: "toolbar"
|
|
}
|
|
}
|
|
|
|
@GUI::HorizontalSplitter {
|
|
layout: @GUI::HorizontalBoxLayout {
|
|
spacing: 4
|
|
}
|
|
|
|
@GUI::TabWidget {
|
|
name: "tab_widget"
|
|
fixed_width: 200
|
|
container_margins: [6]
|
|
|
|
@GUI::TreeView {
|
|
name: "browse_view"
|
|
title: "Browse"
|
|
}
|
|
|
|
@GUI::Widget {
|
|
name: "search_container"
|
|
title: "Search"
|
|
layout: @GUI::VerticalBoxLayout {}
|
|
|
|
@GUI::TextBox {
|
|
name: "search_box"
|
|
placeholder: "Search"
|
|
}
|
|
|
|
@GUI::ListView {
|
|
name: "search_view"
|
|
}
|
|
}
|
|
}
|
|
|
|
@WebView::OutOfProcessWebView {
|
|
name: "web_view"
|
|
}
|
|
}
|
|
|
|
@GUI::Statusbar {
|
|
name: "statusbar"
|
|
}
|
|
}
|