From 85a3a322e029cb28cc2cda913fd2ccccfe0b9d3b Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Sun, 14 Jul 2019 21:04:54 -0400 Subject: Pass through ability to show imports/exports/etc --- ui/symbollist.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'ui/symbollist.h') diff --git a/ui/symbollist.h b/ui/symbollist.h index e1edb6b5..dd3d9d3c 100644 --- a/ui/symbollist.h +++ b/ui/symbollist.h @@ -279,6 +279,16 @@ public: virtual bool canCopy(); void find(); + bool getShowExports() const { return m_list->getShowExports(); } + bool getShowImports() const { return m_list->getShowImports(); } + bool getShowFunctions() const { return m_list->getShowFunctions(); } + bool getShowDataVars() const { return m_list->getShowDataVars(); } + + void toggleExports() { m_list->toggleExports(); } + void toggleImports() { m_list->toggleImports(); } + void toggleFunctions() { m_list->toggleFunctions(); } + void toggleDataVars() { m_list->toggleDataVars(); } + protected: virtual void focusOutEvent(QFocusEvent* event) override; virtual void keyPressEvent(QKeyEvent* event) override; -- cgit v1.3.1