Skip to content

Commit

Permalink
poc
Browse files Browse the repository at this point in the history
  • Loading branch information
mborgerson committed Dec 17, 2024
1 parent 1056a26 commit 1360d3d
Show file tree
Hide file tree
Showing 6 changed files with 402 additions and 0 deletions.
1 change: 1 addition & 0 deletions angrmanagement/ui/icons.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"strings-view": "msc.symbol-string",
"traces-view": "mdi.go-kart-track",
"types-view": "msc.symbol-class",
"explorer-view": "msc.globe",
}


Expand Down
1 change: 1 addition & 0 deletions angrmanagement/ui/main_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -501,6 +501,7 @@ def _register_commands(self) -> None:
("View: Disassembly (Graph)", self.workspace.show_graph_disassembly_view),
("View: Disassembly (Linear)", self.workspace.show_linear_disassembly_view),
("View: Functions", self.workspace.show_functions_view),
("View: Explorer", self.workspace.show_explorer_view),
("View: Hex", self.workspace.show_hex_view),
("View: Interaction", self.workspace.show_interaction_view),
("View: Log", self.workspace.show_log_view),
Expand Down
1 change: 1 addition & 0 deletions angrmanagement/ui/menus/view_menu.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ def __init__(self, main_window: MainWindow) -> None:
MenuEntry("&Patches", main_window.workspace.show_patches_view, icon=icon("patches-view")),
MenuEntry("&Types", main_window.workspace.show_types_view, icon=icon("types-view")),
MenuEntry("&Functions", main_window.workspace.show_functions_view, icon=icon("functions-view")),
MenuEntry("&Explorer", main_window.workspace.show_explorer_view, icon=icon("explorer-view")),
MenuEntry("&Traces", main_window.workspace.show_traces_view, icon=icon("traces-view")),
MenuEntry("&Trace Map", main_window.workspace.show_trace_map_view),
MenuSeparator(),
Expand Down
2 changes: 2 additions & 0 deletions angrmanagement/ui/views/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
from .data_dep_view import DataDepView
from .dep_view import DependencyView
from .disassembly_view import DisassemblyView
from .explorer_view import ExplorerView
from .functions_view import FunctionsView
from .hex_view import HexView
from .interaction_view import InteractionView
Expand All @@ -32,6 +33,7 @@
"DataDepView",
"DependencyView",
"DisassemblyView",
"ExplorerView",
"FunctionsView",
"HexView",
"InteractionView",
Expand Down
Loading

0 comments on commit 1360d3d

Please sign in to comment.