Serenity Operating System
1@GUI::Widget {
2 fill_with_background_color: true
3 layout: @GUI::VerticalBoxLayout {
4 spacing: 2
5 }
6
7 @GUI::ToolbarContainer {
8 name: "toolbar_container"
9
10 @GUI::Toolbar {
11 name: "main_toolbar"
12 collapsible: true
13 grouped: true
14 }
15
16 @GUI::Toolbar {
17 name: "breadcrumb_toolbar"
18
19 @GUI::Label {
20 text: "Location: "
21 autosize: true
22 }
23
24 @GUI::PathBreadcrumbbar {
25 name: "breadcrumbbar"
26 }
27 }
28 }
29
30 @GUI::HorizontalSplitter {
31 name: "splitter"
32
33 @GUI::TreeView {
34 name: "tree_view"
35 preferred_width: 175
36 }
37 }
38
39 @GUI::Statusbar {
40 name: "statusbar"
41
42 @GUI::Progressbar {
43 name: "progressbar"
44 text: "Generating thumbnails: "
45 visible: false
46 }
47 }
48}