mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 02:22:43 +00:00 
			
		
		
		
	 6a4fdae575
			
		
	
	
		6a4fdae575
		
	
	
	
	
		
			
			This adds a value inspector window to the Hex Editor. This window shows the data at the current cursor position (or selection start if a range is selected) interpreted as a variety of data types. Currently supported values include 8, 16, 32, and 64 bit signed and unsigned values as well as float and double. The inspector can operate in both little endian and big endian modes. This is switched between by options in the View menu.
		
			
				
	
	
		
			52 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| @GUI::Widget {
 | |
|     name: "main"
 | |
|     fill_with_background_color: true
 | |
|     layout: @GUI::VerticalBoxLayout {
 | |
|         spacing: 2
 | |
|     }
 | |
| 
 | |
|     @GUI::ToolbarContainer {
 | |
|         name: "toolbar_container"
 | |
| 
 | |
|         @GUI::Toolbar {
 | |
|             name: "toolbar"
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     @GUI::HorizontalSplitter {
 | |
|         @HexEditor::HexEditor {
 | |
|             name: "editor"
 | |
|         }
 | |
| 
 | |
|         @GUI::VerticalSplitter {
 | |
|             name: "side_panel_container"
 | |
|             visible: false
 | |
| 
 | |
|             @GUI::Widget {
 | |
|                 name: "search_results_container"
 | |
|                 visible: false
 | |
|                 layout: @GUI::VerticalBoxLayout {}
 | |
| 
 | |
|                 @GUI::TableView {
 | |
|                     name: "search_results"
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             @GUI::Widget {
 | |
|                 name: "value_inspector_container"
 | |
|                 visible: false
 | |
|                 layout: @GUI::VerticalBoxLayout {}
 | |
| 
 | |
|                 @GUI::TableView {
 | |
|                     name: "value_inspector"
 | |
|                     activates_on_selection: true
 | |
|                 }
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     @GUI::Statusbar {
 | |
|         name: "statusbar"
 | |
|         segment_count: 5
 | |
|     }
 | |
| }
 |