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