Add call to delegate when selecting item

This commit is contained in:
Gregory John Casamento 2022-09-20 02:18:22 -04:00
parent b7156def8f
commit bf3ddc8cad
2 changed files with 35 additions and 25 deletions

View file

@ -444,14 +444,15 @@ APPKIT_EXPORT_CLASS
NSMutableDictionary *_visibleSupplementaryViews;
NSMutableSet *_indexPathsForSupplementaryElementsOfKind;
NSMutableDictionary *_itemsToAttributes;
// Private
// Map items -> indexPath
NSMapTable *_itemsToIndexPaths;
NSMapTable *_indexPathsToItems;
// Registered class/nib for item identifier
NSMapTable *_registeredNibs;
NSMapTable *_registeredClasses;
// Registered class/nib for item kind & identifier
NSMapTable *_registeredNibForItemWithIdentifier;
NSMapTable *_registeredClassForItemWithIdentifier;
}
- (BOOL) allowsMultipleSelection;