1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 09:54:57 +00:00
serenity/Userland/Applications/HexEditor/HexEditorWidget.gml
Sam Atkins 56eb45ccbc HexEditor: Add toolbar and context menus to the Annotations panel
The Annotations panel is the most obvious place to perform actions
related to annotations, so let's make that possible. :^)

The toolbar gets open/save/save-as actions for annotations, and one for
adding an annotation. The table itself gets a context menu for editing
or deleting the selected annotation.
2024-02-09 17:00:15 +00:00

82 lines
2.1 KiB
Text

@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::DynamicWidgetContainer {
name: "side_panel_container"
visible: false
section_label: "Panels"
config_domain: "HexEditor"
preferred_height: "grow"
show_controls: false
@GUI::DynamicWidgetContainer {
name: "search_results_container"
section_label: "Search Results"
config_domain: "HexEditor"
preferred_height: "grow"
visible: false
@GUI::TableView {
name: "search_results"
}
}
@GUI::DynamicWidgetContainer {
name: "value_inspector_container"
section_label: "Value Inspector"
config_domain: "HexEditor"
preferred_height: "grow"
visible: false
@GUI::TableView {
name: "value_inspector"
activates_on_selection: true
}
}
@GUI::DynamicWidgetContainer {
name: "annotations_container"
section_label: "Annotations"
config_domain: "HexEditor"
preferred_height: "grow"
visible: false
@GUI::ToolbarContainer {
name: "annotations_toolbar_container"
@GUI::Toolbar {
name: "annotations_toolbar"
}
}
@GUI::TableView {
name: "annotations"
}
}
}
}
@GUI::Statusbar {
name: "statusbar"
segment_count: 5
}
}