From 8dbf0d70b04b7dbb995a74e1f5ee183228ab80ac Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Mon, 28 Apr 2025 12:42:33 -0400 Subject: add filter string buffers to compressor-select widget --- widget.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'widget.h') diff --git a/widget.h b/widget.h index 34e6edf..e1bbf2c 100644 --- a/widget.h +++ b/widget.h @@ -33,11 +33,15 @@ typedef struct { const Compressor *comps; int n; /* len(comps) */ + char **names; /* buffer to hold names of compressors. */ + + char brand_filter[NAME_SIZE]; + char series_filter[NAME_SIZE]; + char model_filter[NAME_SIZE]; + int *filtered; /* indices of compressors accepted by the filter. */ int nfiltered; /* len(filtered) */ - char **names; /* buffer to hold names of compressors. */ - int idx; /* index of selected in filtered. */ int oldidx; /* index of previously selected. */ -- cgit v1.2.3