largely completed virus total logic

began implementing sorting logic (just for top pane)
This commit is contained in:
Patrick Wardle
2015-06-21 21:37:52 -10:00
parent 014f70da94
commit ff77a49ed5
20 changed files with 1020 additions and 287 deletions
+9 -3
View File
@@ -23,12 +23,18 @@
//flag for first time init's
@property BOOL didInit;
//tasks
// ->updated by task enumerator
//@property(nonatomic, retain)OrderedDictionary* tasks;
//flag for ignoring automated row selections
@property BOOL ignoreSelection;
//flag for filtering
@property BOOL isFiltered;
//all table items
@property(nonatomic, retain)NSMutableArray* tableItems;
//filtered table items
@property(nonatomic, retain)NSMutableArray* filteredItems;
//category table view
@property(weak) IBOutlet NSTableView *itemView;