summaryrefslogtreecommitdiff
path: root/ui/symbolsview.h
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2019-07-19 14:43:39 -0400
committerPeter LaFosse <peter@vector35.com>2019-07-19 14:43:39 -0400
commit0736fc2a1f9590c110bf0add9c7651ac4e6e8919 (patch)
treecc282c0e16b9ad39a3dbe76dcfa56b1ec9da65fb /ui/symbolsview.h
parent71a11edd4f4bf05b35d9d845bf313f109f3db0be (diff)
Update SymbolView options to improve usability
Diffstat (limited to 'ui/symbolsview.h')
-rw-r--r--ui/symbolsview.h14
1 files changed, 8 insertions, 6 deletions
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;