mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 22:37:35 +00:00
HexEditor: Port HexEditor to GML compilation
This commit is contained in:
parent
bcec05a7cb
commit
935aaab757
15 changed files with 147 additions and 51 deletions
54
Userland/Applications/HexEditor/HexEditorWidget.gml
Normal file
54
Userland/Applications/HexEditor/HexEditorWidget.gml
Normal file
|
@ -0,0 +1,54 @@
|
|||
@HexEditor::HexEditorWidget {
|
||||
name: "main"
|
||||
fill_with_background_color: true
|
||||
layout: @GUI::VerticalBoxLayout {
|
||||
spacing: 2
|
||||
}
|
||||
|
||||
@GUI::ToolbarContainer {
|
||||
name: "toolbar_container"
|
||||
|
||||
@GUI::Toolbar {
|
||||
name: "toolbar"
|
||||
}
|
||||
}
|
||||
|
||||
@GUI::HorizontalSplitter {
|
||||
opportunistic_resizee: "First"
|
||||
|
||||
@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
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue