Serenity Operating System
at master 52 lines 1.1 kB view raw
1@GUI::Widget { 2 fill_with_background_color: true 3 layout: @GUI::VerticalBoxLayout { 4 spacing: 2 5 } 6 7 @GUI::ToolbarContainer { 8 @GUI::Toolbar { 9 name: "toolbar" 10 } 11 } 12 13 @GUI::HorizontalSplitter { 14 layout: @GUI::HorizontalBoxLayout { 15 spacing: 4 16 } 17 18 @GUI::TabWidget { 19 name: "tab_widget" 20 preferred_width: 200 21 container_margins: [6] 22 23 @GUI::TreeView { 24 name: "browse_view" 25 title: "Browse" 26 } 27 28 @GUI::Widget { 29 name: "search_container" 30 title: "Search" 31 layout: @GUI::VerticalBoxLayout {} 32 33 @GUI::TextBox { 34 name: "search_box" 35 placeholder: "Search" 36 } 37 38 @GUI::ListView { 39 name: "search_view" 40 } 41 } 42 } 43 44 @WebView::OutOfProcessWebView { 45 name: "web_view" 46 } 47 } 48 49 @GUI::Statusbar { 50 name: "statusbar" 51 } 52}