summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ui/typeview.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/ui/typeview.h b/ui/typeview.h
index c5631a23..ff34c8b8 100644
--- a/ui/typeview.h
+++ b/ui/typeview.h
@@ -328,6 +328,8 @@ class BINARYNINJAUIAPI TypeFilter: public QWidget
ClickableIcon* m_showSystemTypes;
TypeFilterEdit* m_textFilter;
+ std::set<std::string> m_textFilteredTypeNames;
+
bool MatchesAutoFilter(BinaryViewRef data, const BinaryNinja::QualifiedName& name);
bool MatchesTextFilter(const std::vector<TypeDefinitionLine>& lines);
@@ -347,6 +349,8 @@ public:
bool areAutoTypesVisible();
void setShowAutoTypes(bool showAutoTypes);
void clearTextFilter();
+
+ bool isTypeTextFiltered(const std::string& name) const;
};