From 70bbb18a9444824a8ec2b9a7ff57fc848e017b6e Mon Sep 17 00:00:00 2001 From: Josh Ferrell Date: Mon, 26 Jan 2026 14:23:12 -0500 Subject: Add regex and case sensitivity options to FilterEdit --- view/sharedcache/ui/symboltable.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'view/sharedcache/ui/symboltable.h') diff --git a/view/sharedcache/ui/symboltable.h b/view/sharedcache/ui/symboltable.h index ab0174f9..bcaef294 100644 --- a/view/sharedcache/ui/symboltable.h +++ b/view/sharedcache/ui/symboltable.h @@ -19,6 +19,7 @@ Q_OBJECT SymbolTableView* m_parent; QFont m_font; std::string m_filter; + FilterOptions m_filterOptions; std::vector m_symbols; std::vector m_filteredSymbols; @@ -36,7 +37,7 @@ public: void sort(int column, Qt::SortOrder order) override; void updateSymbols(std::vector symbols); - void setFilter(std::string text); + void setFilter(const std::string& text, FilterOptions options); const SharedCacheAPI::CacheSymbol& symbolAt(int row) const; }; @@ -98,7 +99,7 @@ public: return m_model->symbolAt(row); } - void setFilter(const std::string& filter) override; + void setFilter(const std::string& filter, FilterOptions options) override; }; -- cgit v1.3.1