diff options
| author | Josh Ferrell <josh@vector35.com> | 2026-01-26 14:23:12 -0500 |
|---|---|---|
| committer | Josh Ferrell <josh@vector35.com> | 2026-02-06 17:53:45 -0500 |
| commit | 70bbb18a9444824a8ec2b9a7ff57fc848e017b6e (patch) | |
| tree | fe87c0976b75a7557986d1ac6bcc2409a839624c /ui/metadatachoicedialog.h | |
| parent | 9b7604d13e8bd98c6998facb9326926ed96281b5 (diff) | |
Add regex and case sensitivity options to FilterEdit
Diffstat (limited to 'ui/metadatachoicedialog.h')
| -rw-r--r-- | ui/metadatachoicedialog.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ui/metadatachoicedialog.h b/ui/metadatachoicedialog.h index 12de4a55..79cf662f 100644 --- a/ui/metadatachoicedialog.h +++ b/ui/metadatachoicedialog.h @@ -67,6 +67,7 @@ class BINARYNINJAUIAPI ManagedTableView : public QTableView, public FilterTarget ManagedTableModel* m_model; std::string m_filter; + FilterOptions m_filterOptions; ManagedTableDelegate* m_delegate; @@ -78,7 +79,7 @@ public: int getCurrentSelection(); void forceFilterUpdate() { - setFilter(m_filter); + setFilter(m_filter, m_filterOptions); }; void resetModel(); @@ -88,7 +89,7 @@ public: virtual void selectionChanged(const QItemSelection& selected, const QItemSelection& deselected) override; - virtual void setFilter(const std::string& filter) override; + virtual void setFilter(const std::string& filter, FilterOptions options) override; virtual void scrollToFirstItem() override; virtual void scrollToCurrentItem() override; virtual void ensureSelection() override; |
