Serenity Operating System
at master 103 lines 2.1 kB view raw
1@GUI::Widget { 2 fill_with_background_color: true 3 layout: @GUI::VerticalBoxLayout { 4 margins: [4] 5 } 6 7 @GUI::Label { 8 text: "Templates:" 9 text_alignment: "CenterLeft" 10 max_height: 20 11 } 12 13 @GUI::Widget { 14 layout: @GUI::VerticalBoxLayout {} 15 name: "icon_view_container" 16 } 17 18 @GUI::Label { 19 name: "description_label" 20 text_alignment: "CenterLeft" 21 thickness: 2 22 shadow: "Sunken" 23 shape: "Container" 24 max_height: 24 25 } 26 27 @GUI::Widget { 28 layout: @GUI::HorizontalBoxLayout {} 29 max_height: 24 30 31 @GUI::Label { 32 text: "Name:" 33 text_alignment: "CenterLeft" 34 max_width: 75 35 } 36 37 @GUI::TextBox { 38 name: "name_input" 39 } 40 } 41 42 @GUI::Widget { 43 layout: @GUI::HorizontalBoxLayout {} 44 max_height: 24 45 46 @GUI::Label { 47 text: "Create in:" 48 text_alignment: "CenterLeft" 49 max_width: 75 50 } 51 52 @GUI::TextBox { 53 name: "create_in_input" 54 text: "/home/anon/Source" 55 } 56 57 @GUI::Button { 58 name: "browse_button" 59 text: "Browse" 60 max_width: 75 61 } 62 } 63 64 @GUI::Widget { 65 layout: @GUI::HorizontalBoxLayout {} 66 max_height: 24 67 68 @GUI::Label { 69 text: "Full path:" 70 text_alignment: "CenterLeft" 71 max_width: 75 72 } 73 74 @GUI::Label { 75 name: "full_path_label" 76 text_alignment: "CenterLeft" 77 text: "" 78 thickness: 2 79 shadow: "Sunken" 80 shape: "Container" 81 max_height: 22 82 } 83 } 84 85 @GUI::Widget { 86 layout: @GUI::HorizontalBoxLayout {} 87 max_height: 24 88 89 @GUI::Layout::Spacer {} 90 91 @GUI::Button { 92 name: "ok_button" 93 text: "OK" 94 max_width: 75 95 } 96 97 @GUI::Button { 98 name: "cancel_button" 99 text: "Cancel" 100 max_width: 75 101 } 102 } 103}