summaryrefslogtreecommitdiff
path: root/view/kernelcache/ui/symboltable.h
diff options
context:
space:
mode:
authorJosh Ferrell <josh@vector35.com>2026-01-26 14:23:12 -0500
committerJosh Ferrell <josh@vector35.com>2026-02-06 17:53:45 -0500
commit70bbb18a9444824a8ec2b9a7ff57fc848e017b6e (patch)
treefe87c0976b75a7557986d1ac6bcc2409a839624c /view/kernelcache/ui/symboltable.h
parent9b7604d13e8bd98c6998facb9326926ed96281b5 (diff)
Add regex and case sensitivity options to FilterEdit
Diffstat (limited to 'view/kernelcache/ui/symboltable.h')
-rw-r--r--view/kernelcache/ui/symboltable.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/view/kernelcache/ui/symboltable.h b/view/kernelcache/ui/symboltable.h
index 28d07199..64a20010 100644
--- a/view/kernelcache/ui/symboltable.h
+++ b/view/kernelcache/ui/symboltable.h
@@ -19,6 +19,7 @@ Q_OBJECT
SymbolTableView* m_parent;
QFont m_font;
std::string m_filter;
+ FilterOptions m_filterOptions;
std::vector<KernelCacheAPI::CacheSymbol> m_preparedSymbols{};
// These are the symbols we actually use
std::vector<KernelCacheAPI::CacheSymbol> m_modelSymbols{};
@@ -32,7 +33,7 @@ public:
QVariant headerData(int section, Qt::Orientation orientation, int role) const override;
void sort(int column, Qt::SortOrder order) override;
void updateSymbols(std::vector<KernelCacheAPI::CacheSymbol>&& symbols);
- void setFilter(std::string text);
+ void setFilter(const std::string& text, FilterOptions options);
const KernelCacheAPI::CacheSymbol& symbolAt(int row) const;
};
@@ -94,7 +95,7 @@ public:
return m_model->symbolAt(row);
}
- void setFilter(const std::string& filter) override;
+ void setFilter(const std::string& filter, FilterOptions options) override;
};