mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-05 02:33:03 +00:00
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
|
|
}
|
|
}
|