mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 12:12:45 +00:00 
			
		
		
		
	 dcbbbf5b4a
			
		
	
	
		dcbbbf5b4a
		
	
	
	
	
		
			
			Also moves WebContentClient and the references to the generated IPC descriptions, since they are all components of OutOfProcessWebView. This patch has no functional changes.
		
			
				
	
	
		
			27 lines
		
	
	
	
		
			535 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
	
		
			535 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| @GUI::Widget {
 | |
|     fill_with_background_color: true
 | |
|     layout: @GUI::VerticalBoxLayout {
 | |
|         spacing: 2
 | |
|     }
 | |
| 
 | |
|     @GUI::HorizontalSplitter {
 | |
|         @GUI::TreeView {
 | |
|             name: "mailbox_list"
 | |
|             fixed_width: 250
 | |
|         }
 | |
| 
 | |
|         @GUI::VerticalSplitter {
 | |
|             @GUI::TableView {
 | |
|                 name: "individual_mailbox_view"
 | |
|             }
 | |
| 
 | |
|             @WebView::OutOfProcessWebView {
 | |
|                 name: "web_view"
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     @GUI::Statusbar {
 | |
|         name: "statusbar"
 | |
|     }
 | |
| }
 |