diff options
| author | Xusheng <xusheng@vector35.com> | 2023-11-07 14:09:38 +0800 |
|---|---|---|
| committer | Xusheng <xusheng@vector35.com> | 2023-11-07 14:09:38 +0800 |
| commit | b6ba318c569540286a0c296887f7d265f9b91602 (patch) | |
| tree | bb0234460bcce0b7e429510de50c337f3c5d50fa /ui/memorymap.h | |
| parent | 9664293566835578211572938174462967719297 (diff) | |
Support navigating to a raw address when the data offset is double-clicked
Diffstat (limited to 'ui/memorymap.h')
| -rw-r--r-- | ui/memorymap.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/memorymap.h b/ui/memorymap.h index 7b831c0c..f42edd11 100644 --- a/ui/memorymap.h +++ b/ui/memorymap.h @@ -133,6 +133,7 @@ public: Q_SIGNALS: void currentSegmentChanged(SegmentRef current); void addressDoubleClicked(uint64_t address); + void rawAddressDoubleClicked(uint64_t address); }; /*! @@ -194,6 +195,7 @@ class BINARYNINJAUIAPI MemoryMapSidebarWidget : public SidebarWidget ViewFrame* m_frame; void navigateToAddress(uint64_t address); + void navigateToRawAddress(uint64_t address); public: MemoryMapSidebarWidget(ViewFrame* view, BinaryViewRef data); |
