AboutDialog.gml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. @GUI::Frame {
  2. fill_with_background_color: true
  3. layout: @GUI::VerticalBoxLayout {
  4. spacing: 0
  5. }
  6. @GUI::ImageWidget {
  7. name: "brand_banner"
  8. bitmap: "/res/graphics/brand-banner.png"
  9. }
  10. @GUI::Widget {
  11. name: "content_container"
  12. layout: @GUI::HorizontalBoxLayout {}
  13. @GUI::Widget {
  14. name: "left_container"
  15. fixed_width: 60
  16. layout: @GUI::VerticalBoxLayout {
  17. margins: [12, 0, 0]
  18. }
  19. @GUI::Widget {
  20. name: "icon_wrapper"
  21. fixed_size: [32, 48]
  22. layout: @GUI::VerticalBoxLayout {}
  23. @GUI::ImageWidget {
  24. name: "icon"
  25. }
  26. }
  27. }
  28. @GUI::Widget {
  29. name: "right_container"
  30. layout: @GUI::VerticalBoxLayout {
  31. margins: [12, 4, 4, 0]
  32. }
  33. @GUI::Label {
  34. name: "name"
  35. text_alignment: "CenterLeft"
  36. fixed_height: 14
  37. font_weight: "Bold"
  38. }
  39. @GUI::Label {
  40. name: "serenity_os"
  41. text_alignment: "CenterLeft"
  42. fixed_height: 14
  43. text: "SerenityOS"
  44. }
  45. @GUI::Label {
  46. name: "version"
  47. text_alignment: "CenterLeft"
  48. fixed_height: 14
  49. }
  50. @GUI::Label {
  51. name: "copyright"
  52. text_alignment: "CenterLeft"
  53. fixed_height: 14
  54. text: "Copyright © the SerenityOS developers, 2018-2023"
  55. }
  56. @GUI::Layout::Spacer {}
  57. @GUI::Widget {
  58. name: "button_container"
  59. fixed_height: 22
  60. layout: @GUI::HorizontalBoxLayout {}
  61. @GUI::Layout::Spacer {}
  62. @GUI::DialogButton {
  63. name: "ok_button"
  64. text: "OK"
  65. }
  66. }
  67. }
  68. }
  69. }