mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 10:22:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
	
		
			706 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
	
		
			706 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| @GUI::Widget {
 | |
|     fill_with_background_color: true
 | |
|     layout: @GUI::VerticalBoxLayout {
 | |
|         margins: [2]
 | |
|     }
 | |
| 
 | |
|     @GUI::Frame {
 | |
|         layout: @GUI::VerticalBoxLayout {
 | |
|             margins: [4]
 | |
|         }
 | |
|         shape: "Box"
 | |
|         shadow: "Sunken"
 | |
|         thickness: 2
 | |
| 
 | |
|         @GUI::Label {
 | |
|             name: "preview_label"
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     @GUI::Widget {
 | |
|         layout: @GUI::HorizontalBoxLayout {}
 | |
|         fixed_height: 22
 | |
| 
 | |
|         @GUI::TextBox {
 | |
|             name: "preview_textbox"
 | |
|             placeholder: "Preview text"
 | |
|         }
 | |
| 
 | |
|         @GUI::Button {
 | |
|             name: "reload_button"
 | |
|             icon: "/res/icons/16x16/reload.png"
 | |
|             fixed_width: 22
 | |
|         }
 | |
|     }
 | |
| }
 | 
