HelpWindow.gml 1.1 KB

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