2022-02-28 19:05:35 +03:00
|
|
|
@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"
|
2022-08-05 13:30:47 +03:00
|
|
|
preferred_width: 200
|
2022-02-28 19:05:35 +03:00
|
|
|
container_margins: [6]
|
|
|
|
|
|
|
|
@GUI::TreeView {
|
|
|
|
name: "browse_view"
|
2022-03-19 00:57:05 +03:00
|
|
|
title: "Browse"
|
2022-02-28 19:05:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::Widget {
|
|
|
|
name: "search_container"
|
2022-03-19 00:57:05 +03:00
|
|
|
title: "Search"
|
2022-02-28 19:05:35 +03:00
|
|
|
layout: @GUI::VerticalBoxLayout {}
|
|
|
|
|
|
|
|
@GUI::TextBox {
|
|
|
|
name: "search_box"
|
|
|
|
placeholder: "Search"
|
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::ListView {
|
|
|
|
name: "search_view"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-30 11:46:33 +03:00
|
|
|
@WebView::OutOfProcessWebView {
|
2022-02-28 19:05:35 +03:00
|
|
|
name: "web_view"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@GUI::Statusbar {
|
|
|
|
name: "statusbar"
|
|
|
|
}
|
|
|
|
}
|