mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 04:22:45 +00:00 
			
		
		
		
	 b480f02117
			
		
	
	
		b480f02117
		
	
	
	
	
		
			
			Since you must provide a file name before saving occurs, this button should have an ellipsis.
		
			
				
	
	
		
			107 lines
		
	
	
	
		
			2.2 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			107 lines
		
	
	
	
		
			2.2 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| @GUI::Widget {
 | |
|     fill_with_background_color: true
 | |
|     layout: @GUI::VerticalBoxLayout {
 | |
|         margins: [4]
 | |
|         spacing: 6
 | |
|     }
 | |
| 
 | |
|     @GUI::Widget {
 | |
|         preferred_height: "fit"
 | |
|         layout: @GUI::HorizontalBoxLayout {
 | |
|             spacing: 10
 | |
|         }
 | |
| 
 | |
|         @GUI::ImageWidget {
 | |
|             name: "icon"
 | |
|         }
 | |
| 
 | |
|         @GUI::Label {
 | |
|             name: "description"
 | |
|             text_alignment: "CenterLeft"
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     @GUI::Widget {
 | |
|         preferred_height: "fit"
 | |
|         layout: @GUI::HorizontalBoxLayout {}
 | |
| 
 | |
|         @GUI::Label {
 | |
|             text: "Executable path:"
 | |
|             text_alignment: "CenterLeft"
 | |
|             fixed_width: 90
 | |
|         }
 | |
| 
 | |
|         @GUI::LinkLabel {
 | |
|             name: "executable_link"
 | |
|             text_alignment: "CenterLeft"
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     @GUI::Widget {
 | |
|         preferred_height: "fit"
 | |
|         layout: @GUI::HorizontalBoxLayout {}
 | |
| 
 | |
|         @GUI::Label {
 | |
|             text: "Coredump path:"
 | |
|             text_alignment: "CenterLeft"
 | |
|             fixed_width: 90
 | |
|         }
 | |
| 
 | |
|         @GUI::LinkLabel {
 | |
|             name: "coredump_link"
 | |
|             text_alignment: "CenterLeft"
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     @GUI::Widget {
 | |
|         preferred_height: "fit"
 | |
|         layout: @GUI::HorizontalBoxLayout {}
 | |
| 
 | |
|         @GUI::Label {
 | |
|             text: "Arguments:"
 | |
|             text_alignment: "CenterLeft"
 | |
|             fixed_width: 90
 | |
|         }
 | |
| 
 | |
|         @GUI::Label {
 | |
|             name: "arguments_label"
 | |
|             text_alignment: "CenterLeft"
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     @GUI::Progressbar {
 | |
|         name: "progressbar"
 | |
|         text: "Generating crash report: "
 | |
|     }
 | |
| 
 | |
|     @GUI::TabWidget {
 | |
|         name: "tab_widget"
 | |
|         visible: false
 | |
|     }
 | |
| 
 | |
|     @GUI::Widget {
 | |
|         preferred_height: "fit"
 | |
|         layout: @GUI::HorizontalBoxLayout {
 | |
|             spacing: 6
 | |
|         }
 | |
| 
 | |
|         @GUI::DialogButton {
 | |
|             name: "debug_button"
 | |
|             text: "Debug in Hack Studio"
 | |
|             fixed_width: 160
 | |
|         }
 | |
| 
 | |
|         @GUI::DialogButton {
 | |
|             name: "save_backtrace_button"
 | |
|             text: "Save Backtrace..."
 | |
|             fixed_width: 160
 | |
|         }
 | |
| 
 | |
|         @GUI::Layout::Spacer {}
 | |
| 
 | |
|         @GUI::DialogButton {
 | |
|             name: "close_button"
 | |
|             text: "Close"
 | |
|         }
 | |
|     }
 | |
| }
 |