From 0736fc2a1f9590c110bf0add9c7651ac4e6e8919 Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Fri, 19 Jul 2019 14:43:39 -0400 Subject: Update SymbolView options to improve usability --- ui/symbolsview.h | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'ui/symbolsview.h') diff --git a/ui/symbolsview.h b/ui/symbolsview.h index 93e0dd51..4b6bef1a 100644 --- a/ui/symbolsview.h +++ b/ui/symbolsview.h @@ -33,15 +33,17 @@ public: virtual void OnBinaryDataInserted(BinaryNinja::BinaryView* data, uint64_t offset, size_t len) override; virtual void OnBinaryDataRemoved(BinaryNinja::BinaryView* data, uint64_t offset, uint64_t len) override; - bool getShowExports() const { return m_funcList->getShowExports(); } + bool getShowExportedFunctions() const { return m_funcList->getShowExportedFunctions(); } + bool getShowExportedDataVars() const { return m_funcList->getShowExportedDataVars(); } + bool getShowLocalFunctions() const { return m_funcList->getShowLocalFunctions(); } + bool getShowLocalDataVars() const { return m_funcList->getShowLocalDataVars(); } bool getShowImports() const { return m_funcList->getShowImports(); } - bool getShowFunctions() const { return m_funcList->getShowFunctions(); } - bool getShowDataVars() const { return m_funcList->getShowDataVars(); } - void toggleExports() { m_funcList->toggleExports(); } + void toggleExportedFunctions() { m_funcList->toggleExportedFunctions(); } + void toggleExportedDataVars() { m_funcList->toggleExportedDataVars(); } void toggleImports() { m_funcList->toggleImports(); } - void toggleFunctions() { m_funcList->toggleFunctions(); } - void toggleDataVars() { m_funcList->toggleDataVars(); } + void toggleLocalFunctions() { m_funcList->toggleLocalFunctions(); } + void toggleLocalDataVars() { m_funcList->toggleLocalDataVars(); } protected: virtual void contextMenuEvent(QContextMenuEvent* event) override; -- cgit v1.3.1